diff --git a/README.md b/README.md index 5c457eca..9617fd00 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ The source code for extension is contained in the [`editors/code`](https://githu For Neovim users, v-analyzer is available via [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#v_analyzer) plugin. It is part of the [mason registry](https://mason-registry.dev/registry/list#v-analyzer) and could be installed with both Neovim plugins: -- [mason.nvim](https://github.com/williamboman/mason.nvim) with `:MasonInstall v_analyzer` command +- [mason.nvim](https://github.com/williamboman/mason.nvim) with `:MasonInstall v-analyzer` command - [mason-lspconfig.nvim](https://github.com/williamboman/mason-lspconfig.nvim) with `:LspInstall` command ## Authors diff --git a/tree_sitter_v/grammar.js b/tree_sitter_v/grammar.js index f1e0dd69..6c6152f2 100644 --- a/tree_sitter_v/grammar.js +++ b/tree_sitter_v/grammar.js @@ -561,9 +561,12 @@ module.exports = grammar({ short_element_list: ($) => repeat1(seq(alias($._expression, $.element), optional(list_separator))), + field_name: ($) => + $.reference_expression, + keyed_element: ($) => seq( - field('key', alias($.reference_expression, $.field_name)), + field('key', $.field_name), ':', field('value', $._expression), ), diff --git a/tree_sitter_v/package.json b/tree_sitter_v/package.json index 921c1149..2bf1dc04 100644 --- a/tree_sitter_v/package.json +++ b/tree_sitter_v/package.json @@ -1,59 +1,49 @@ { - "name": "tree-sitter-v", - "version": "0.0.4-beta.1", - "main": "bindings/node", - "types": "bindings/node", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/vlang/v-analyzer.git" - }, - "scripts": { - "test": "tree-sitter test", - "generate": "tree-sitter generate --no-bindings && v run bindings/generate_types.vsh", - "parse": "tree-sitter parse", - "parseg": "tree-sitter parse --debug-graph", - "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip", - "lint": "eslint \"**/*.js\"", - "format": "prettier --write \"**/*.js\"", - "format:check": "prettier --check \"**/*.js\"" - }, - "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" - }, - "peerDependencies": { - "tree-sitter": "^0.21.1" - }, - "peerDependenciesMeta": { - "tree_sitter": { - "optional": true - } - }, - "devDependencies": { - "eslint": "^8.57.0", - "eslint-config-google": "^0.14.0", - "eslint-config-prettier": "^9.1.0", - "prebuildify": "^6.0.0", - "prettier": "^3.2.5", - "tree-sitter-cli": "^0.22.2" - }, - "tree-sitter": [ - { - "scope": "source.v", - "file-types": [ - "v", - "vsh", - "v.mod" - ] - } - ], - "files": [ - "grammar.js", - "prebuilds/**", - "bindings/node/*", - "queries/*", - "src/**" - ] -} + "name": "tree-sitter-v", + "version": "0.0.4-beta.1", + "main": "bindings/node", + "types": "bindings/node", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/vlang/v-analyzer.git" + }, + "scripts": { + "test": "tree-sitter test", + "generate": "tree-sitter generate --no-bindings && v run bindings/generate_types.vsh", + "parse": "tree-sitter parse", + "parseg": "tree-sitter parse --debug-graph", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", + "lint": "eslint \"**/*.js\"", + "format": "prettier --write \"**/*.js\"", + "format:check": "prettier --check \"**/*.js\"" + }, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + }, + "devDependencies": { + "eslint": "^8.57.0", + "eslint-config-google": "^0.14.0", + "eslint-config-prettier": "^9.1.0", + "prebuildify": "^6.0.0", + "prettier": "^3.2.5", + "tree-sitter-cli": "^0.22.2" + }, + "files": [ + "grammar.js", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ] +} \ No newline at end of file diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 7edce97a..8f1b4758 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "v", "word": "identifier", "rules": { @@ -3043,6 +3044,10 @@ ] } }, + "field_name": { + "type": "SYMBOL", + "name": "reference_expression" + }, "keyed_element": { "type": "SEQ", "members": [ @@ -3050,13 +3055,8 @@ "type": "FIELD", "name": "key", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "reference_expression" - }, - "named": true, - "value": "field_name" + "type": "SYMBOL", + "name": "field_name" } }, { diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index fbdacc5b..f44d47a5 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -1278,7 +1278,7 @@ "required": true, "types": [ { - "type": "identifier", + "type": "reference_expression", "named": true } ] @@ -3557,6 +3557,7 @@ { "type": "source_file", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 4f137961..58db2f0d 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 4715 +#define STATE_COUNT 4717 #define LARGE_STATE_COUNT 1962 -#define SYMBOL_COUNT 360 -#define ALIAS_COUNT 4 +#define SYMBOL_COUNT 361 +#define ALIAS_COUNT 3 #define TOKEN_COUNT 146 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 45 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 155 +#define PRODUCTION_ID_COUNT 154 enum ts_symbol_identifiers { sym_identifier = 1, @@ -236,155 +236,155 @@ enum ts_symbol_identifiers { sym_type_initializer_body = 210, sym_element_list = 211, sym_short_element_list = 212, - sym_keyed_element = 213, - sym_function_literal = 214, - sym_capture_list = 215, - sym_capture = 216, - sym_reference_expression = 217, - sym_type_reference_expression = 218, - sym_unary_expression = 219, - sym_receive_expression = 220, - sym_binary_expression = 221, - sym_as_type_cast_expression = 222, - sym_or_block = 223, - sym__max_group = 224, - sym_literal = 225, - sym_spread_expression = 226, - sym_map_init_expression = 227, - sym_map_keyed_element = 228, - sym_array_creation = 229, - sym_fixed_array_creation = 230, - sym_selector_expression = 231, - sym_compile_time_selector_expression = 232, - sym_index_expression = 233, - sym_slice_expression = 234, - sym_if_expression = 235, - sym_else_branch = 236, - sym_compile_time_if_expression = 237, - sym_is_expression = 238, - sym_in_expression = 239, - sym_enum_fetch = 240, - sym_match_expression = 241, - sym_match_arms = 242, - sym_match_arm = 243, - sym_match_expression_list = 244, - sym_match_arm_type = 245, - sym_match_else_arm_clause = 246, - sym_select_expression = 247, - sym_select_arm = 248, - sym_select_arm_statement = 249, - sym__select_arm_assignment_statement = 250, - sym_select_var_declaration = 251, - sym_select_else_arn_clause = 252, - sym_lock_expression = 253, - sym_unsafe_expression = 254, - sym_sql_expression = 255, - sym_interpreted_string_literal = 256, - sym_c_string_literal = 257, - sym_raw_string_literal = 258, - sym_string_interpolation = 259, - sym_format_specifier = 260, - sym_visibility_modifiers = 261, - sym_mutability_modifiers = 262, - sym_mutable_identifier = 263, - sym_mutable_expression = 264, - sym_identifier_list = 265, - sym_expression_list = 266, - sym_expression_without_blocks_list = 267, - sym_sum_type = 268, - sym_plain_type = 269, - sym__plain_type_without_special = 270, - sym_anon_struct_type = 271, - sym_multi_return_type = 272, - sym_result_type = 273, - sym_option_type = 274, - sym_qualified_type = 275, - sym_fixed_array_type = 276, - sym_array_type = 277, - sym_pointer_type = 278, - sym_wrong_pointer_type = 279, - sym_map_type = 280, - sym_channel_type = 281, - sym_shared_type = 282, - sym_thread_type = 283, - sym_atomic_type = 284, - sym_generic_type = 285, - sym_function_type = 286, - sym__statement = 287, - sym_simple_statement = 288, - sym_assert_statement = 289, - sym_append_statement = 290, - sym_send_statement = 291, - sym_var_declaration = 292, - sym_var_definition_list = 293, - sym_var_definition = 294, - sym_assignment_statement = 295, - sym_block = 296, - sym_defer_statement = 297, - sym_label_reference = 298, - sym_goto_statement = 299, - sym_break_statement = 300, - sym_continue_statement = 301, - sym_return_statement = 302, - sym_label_definition = 303, - sym_labeled_statement = 304, - sym_compile_time_for_statement = 305, - sym_for_statement = 306, - sym_is_clause = 307, - sym_range_clause = 308, - sym_for_clause = 309, - sym__definite_range = 310, - sym_range = 311, - sym_hash_statement = 312, - sym_asm_statement = 313, - sym__content_block = 314, - sym_attributes = 315, - sym_attribute = 316, - sym_attribute_expression = 317, - sym_if_attribute = 318, - sym__plain_attribute = 319, - sym_literal_attribute = 320, - sym_value_attribute = 321, - sym_key_value_attribute = 322, - aux_sym_source_file_repeat1 = 323, - aux_sym_block_comment_repeat1 = 324, - aux_sym_import_list_repeat1 = 325, - aux_sym_import_path_repeat1 = 326, - aux_sym_selective_import_list_repeat1 = 327, - aux_sym_const_declaration_repeat1 = 328, - aux_sym_global_var_declaration_repeat1 = 329, - aux_sym_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_interpreted_string_literal_repeat1 = 348, - aux_sym_interpreted_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_sum_type_repeat1 = 355, - aux_sym_var_definition_list_repeat1 = 356, - aux_sym_block_repeat1 = 357, - aux_sym_attributes_repeat1 = 358, - aux_sym_attribute_repeat1 = 359, - alias_sym_element = 360, - alias_sym_field_name = 361, + sym_field_name = 213, + sym_keyed_element = 214, + sym_function_literal = 215, + sym_capture_list = 216, + sym_capture = 217, + sym_reference_expression = 218, + sym_type_reference_expression = 219, + sym_unary_expression = 220, + sym_receive_expression = 221, + sym_binary_expression = 222, + sym_as_type_cast_expression = 223, + sym_or_block = 224, + sym__max_group = 225, + sym_literal = 226, + sym_spread_expression = 227, + sym_map_init_expression = 228, + sym_map_keyed_element = 229, + sym_array_creation = 230, + sym_fixed_array_creation = 231, + sym_selector_expression = 232, + sym_compile_time_selector_expression = 233, + sym_index_expression = 234, + sym_slice_expression = 235, + sym_if_expression = 236, + sym_else_branch = 237, + sym_compile_time_if_expression = 238, + sym_is_expression = 239, + sym_in_expression = 240, + sym_enum_fetch = 241, + sym_match_expression = 242, + sym_match_arms = 243, + sym_match_arm = 244, + sym_match_expression_list = 245, + sym_match_arm_type = 246, + sym_match_else_arm_clause = 247, + sym_select_expression = 248, + sym_select_arm = 249, + sym_select_arm_statement = 250, + sym__select_arm_assignment_statement = 251, + sym_select_var_declaration = 252, + sym_select_else_arn_clause = 253, + sym_lock_expression = 254, + sym_unsafe_expression = 255, + sym_sql_expression = 256, + sym_interpreted_string_literal = 257, + sym_c_string_literal = 258, + sym_raw_string_literal = 259, + sym_string_interpolation = 260, + sym_format_specifier = 261, + sym_visibility_modifiers = 262, + sym_mutability_modifiers = 263, + sym_mutable_identifier = 264, + sym_mutable_expression = 265, + sym_identifier_list = 266, + sym_expression_list = 267, + sym_expression_without_blocks_list = 268, + sym_sum_type = 269, + sym_plain_type = 270, + sym__plain_type_without_special = 271, + sym_anon_struct_type = 272, + sym_multi_return_type = 273, + sym_result_type = 274, + sym_option_type = 275, + sym_qualified_type = 276, + sym_fixed_array_type = 277, + sym_array_type = 278, + sym_pointer_type = 279, + sym_wrong_pointer_type = 280, + sym_map_type = 281, + sym_channel_type = 282, + sym_shared_type = 283, + sym_thread_type = 284, + sym_atomic_type = 285, + sym_generic_type = 286, + sym_function_type = 287, + sym__statement = 288, + sym_simple_statement = 289, + sym_assert_statement = 290, + sym_append_statement = 291, + sym_send_statement = 292, + sym_var_declaration = 293, + sym_var_definition_list = 294, + sym_var_definition = 295, + sym_assignment_statement = 296, + sym_block = 297, + sym_defer_statement = 298, + sym_label_reference = 299, + sym_goto_statement = 300, + sym_break_statement = 301, + sym_continue_statement = 302, + sym_return_statement = 303, + sym_label_definition = 304, + sym_labeled_statement = 305, + sym_compile_time_for_statement = 306, + sym_for_statement = 307, + sym_is_clause = 308, + sym_range_clause = 309, + sym_for_clause = 310, + sym__definite_range = 311, + sym_range = 312, + sym_hash_statement = 313, + sym_asm_statement = 314, + sym__content_block = 315, + sym_attributes = 316, + sym_attribute = 317, + sym_attribute_expression = 318, + sym_if_attribute = 319, + sym__plain_attribute = 320, + sym_literal_attribute = 321, + sym_value_attribute = 322, + sym_key_value_attribute = 323, + aux_sym_source_file_repeat1 = 324, + aux_sym_block_comment_repeat1 = 325, + aux_sym_import_list_repeat1 = 326, + aux_sym_import_path_repeat1 = 327, + aux_sym_selective_import_list_repeat1 = 328, + aux_sym_const_declaration_repeat1 = 329, + aux_sym_global_var_declaration_repeat1 = 330, + aux_sym_parameter_list_repeat1 = 331, + aux_sym_type_parameter_list_repeat1 = 332, + aux_sym_generic_parameters_repeat1 = 333, + aux_sym__struct_body_repeat1 = 334, + aux_sym__enum_body_repeat1 = 335, + aux_sym__interface_body_repeat1 = 336, + aux_sym_strictly_expression_list_repeat1 = 337, + aux_sym_type_parameters_repeat1 = 338, + aux_sym_argument_list_repeat1 = 339, + aux_sym_short_lambda_repeat1 = 340, + aux_sym_element_list_repeat1 = 341, + aux_sym_short_element_list_repeat1 = 342, + aux_sym_capture_list_repeat1 = 343, + aux_sym_map_init_expression_repeat1 = 344, + aux_sym__array_repeat1 = 345, + aux_sym_match_arms_repeat1 = 346, + aux_sym_match_expression_list_repeat1 = 347, + aux_sym_select_expression_repeat1 = 348, + aux_sym_interpreted_string_literal_repeat1 = 349, + aux_sym_interpreted_string_literal_repeat2 = 350, + aux_sym_raw_string_literal_repeat1 = 351, + aux_sym_raw_string_literal_repeat2 = 352, + aux_sym_string_interpolation_repeat1 = 353, + aux_sym_identifier_list_repeat1 = 354, + aux_sym_expression_without_blocks_list_repeat1 = 355, + aux_sym_sum_type_repeat1 = 356, + aux_sym_var_definition_list_repeat1 = 357, + aux_sym_block_repeat1 = 358, + aux_sym_attributes_repeat1 = 359, + aux_sym_attribute_repeat1 = 360, + alias_sym_element = 361, alias_sym_interpolation_closing = 362, alias_sym_interpolation_expression = 363, }; @@ -603,6 +603,7 @@ static const char * const ts_symbol_names[] = { [sym_type_initializer_body] = "type_initializer_body", [sym_element_list] = "element_list", [sym_short_element_list] = "short_element_list", + [sym_field_name] = "field_name", [sym_keyed_element] = "keyed_element", [sym_function_literal] = "function_literal", [sym_capture_list] = "capture_list", @@ -751,7 +752,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_attributes_repeat1] = "attributes_repeat1", [aux_sym_attribute_repeat1] = "attribute_repeat1", [alias_sym_element] = "element", - [alias_sym_field_name] = "field_name", [alias_sym_interpolation_closing] = "interpolation_closing", [alias_sym_interpolation_expression] = "interpolation_expression", }; @@ -970,6 +970,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_initializer_body] = sym_type_initializer_body, [sym_element_list] = sym_element_list, [sym_short_element_list] = sym_short_element_list, + [sym_field_name] = sym_field_name, [sym_keyed_element] = sym_keyed_element, [sym_function_literal] = sym_function_literal, [sym_capture_list] = sym_capture_list, @@ -1118,7 +1119,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, [alias_sym_element] = alias_sym_element, - [alias_sym_field_name] = alias_sym_field_name, [alias_sym_interpolation_closing] = alias_sym_interpolation_closing, [alias_sym_interpolation_expression] = alias_sym_interpolation_expression, }; @@ -1978,6 +1978,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_field_name] = { + .visible = true, + .named = true, + }, [sym_keyed_element] = { .visible = true, .named = true, @@ -2571,10 +2575,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_field_name] = { - .visible = true, - .named = true, - }, [alias_sym_interpolation_closing] = { .visible = true, .named = true, @@ -2764,72 +2764,71 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [85] = {.index = 152, .length = 4}, [86] = {.index = 156, .length = 4}, [87] = {.index = 160, .length = 3}, - [88] = {.index = 57, .length = 2}, - [89] = {.index = 163, .length = 2}, - [90] = {.index = 165, .length = 2}, - [91] = {.index = 167, .length = 1}, - [92] = {.index = 168, .length = 3}, - [93] = {.index = 171, .length = 2}, - [95] = {.index = 173, .length = 2}, - [96] = {.index = 175, .length = 2}, - [97] = {.index = 177, .length = 2}, - [98] = {.index = 179, .length = 1}, - [99] = {.index = 180, .length = 3}, - [100] = {.index = 183, .length = 2}, - [101] = {.index = 185, .length = 3}, - [102] = {.index = 188, .length = 3}, - [103] = {.index = 191, .length = 3}, - [104] = {.index = 194, .length = 2}, - [105] = {.index = 196, .length = 4}, - [106] = {.index = 200, .length = 4}, - [107] = {.index = 204, .length = 4}, - [108] = {.index = 208, .length = 3}, - [109] = {.index = 211, .length = 3}, - [110] = {.index = 214, .length = 2}, - [111] = {.index = 216, .length = 4}, - [112] = {.index = 220, .length = 3}, - [113] = {.index = 223, .length = 4}, - [114] = {.index = 227, .length = 4}, - [115] = {.index = 231, .length = 5}, - [116] = {.index = 236, .length = 3}, - [117] = {.index = 239, .length = 3}, - [118] = {.index = 242, .length = 3}, - [119] = {.index = 245, .length = 4}, - [120] = {.index = 249, .length = 3}, - [121] = {.index = 252, .length = 3}, - [122] = {.index = 255, .length = 3}, - [123] = {.index = 258, .length = 3}, - [124] = {.index = 261, .length = 4}, - [125] = {.index = 265, .length = 4}, - [126] = {.index = 269, .length = 4}, - [127] = {.index = 273, .length = 4}, - [128] = {.index = 277, .length = 5}, - [129] = {.index = 282, .length = 5}, - [130] = {.index = 287, .length = 5}, - [131] = {.index = 292, .length = 4}, - [132] = {.index = 296, .length = 4}, - [133] = {.index = 300, .length = 4}, - [134] = {.index = 304, .length = 3}, - [135] = {.index = 307, .length = 5}, - [136] = {.index = 312, .length = 4}, - [137] = {.index = 316, .length = 3}, - [138] = {.index = 319, .length = 4}, - [139] = {.index = 323, .length = 4}, - [140] = {.index = 327, .length = 4}, - [141] = {.index = 331, .length = 5}, - [142] = {.index = 336, .length = 5}, - [143] = {.index = 341, .length = 5}, - [144] = {.index = 346, .length = 6}, - [145] = {.index = 352, .length = 4}, - [146] = {.index = 356, .length = 5}, - [147] = {.index = 361, .length = 5}, - [148] = {.index = 366, .length = 5}, - [149] = {.index = 371, .length = 5}, - [150] = {.index = 376, .length = 6}, - [151] = {.index = 382, .length = 5}, - [152] = {.index = 387, .length = 5}, - [153] = {.index = 392, .length = 6}, - [154] = {.index = 398, .length = 6}, + [88] = {.index = 163, .length = 2}, + [89] = {.index = 165, .length = 2}, + [90] = {.index = 167, .length = 1}, + [91] = {.index = 168, .length = 3}, + [92] = {.index = 171, .length = 2}, + [94] = {.index = 173, .length = 2}, + [95] = {.index = 175, .length = 2}, + [96] = {.index = 177, .length = 2}, + [97] = {.index = 179, .length = 1}, + [98] = {.index = 180, .length = 3}, + [99] = {.index = 183, .length = 2}, + [100] = {.index = 185, .length = 3}, + [101] = {.index = 188, .length = 3}, + [102] = {.index = 191, .length = 3}, + [103] = {.index = 194, .length = 2}, + [104] = {.index = 196, .length = 4}, + [105] = {.index = 200, .length = 4}, + [106] = {.index = 204, .length = 4}, + [107] = {.index = 208, .length = 3}, + [108] = {.index = 211, .length = 3}, + [109] = {.index = 214, .length = 2}, + [110] = {.index = 216, .length = 4}, + [111] = {.index = 220, .length = 3}, + [112] = {.index = 223, .length = 4}, + [113] = {.index = 227, .length = 4}, + [114] = {.index = 231, .length = 5}, + [115] = {.index = 236, .length = 3}, + [116] = {.index = 239, .length = 3}, + [117] = {.index = 242, .length = 3}, + [118] = {.index = 245, .length = 4}, + [119] = {.index = 249, .length = 3}, + [120] = {.index = 252, .length = 3}, + [121] = {.index = 255, .length = 3}, + [122] = {.index = 258, .length = 3}, + [123] = {.index = 261, .length = 4}, + [124] = {.index = 265, .length = 4}, + [125] = {.index = 269, .length = 4}, + [126] = {.index = 273, .length = 4}, + [127] = {.index = 277, .length = 5}, + [128] = {.index = 282, .length = 5}, + [129] = {.index = 287, .length = 5}, + [130] = {.index = 292, .length = 4}, + [131] = {.index = 296, .length = 4}, + [132] = {.index = 300, .length = 4}, + [133] = {.index = 304, .length = 3}, + [134] = {.index = 307, .length = 5}, + [135] = {.index = 312, .length = 4}, + [136] = {.index = 316, .length = 3}, + [137] = {.index = 319, .length = 4}, + [138] = {.index = 323, .length = 4}, + [139] = {.index = 327, .length = 4}, + [140] = {.index = 331, .length = 5}, + [141] = {.index = 336, .length = 5}, + [142] = {.index = 341, .length = 5}, + [143] = {.index = 346, .length = 6}, + [144] = {.index = 352, .length = 4}, + [145] = {.index = 356, .length = 5}, + [146] = {.index = 361, .length = 5}, + [147] = {.index = 366, .length = 5}, + [148] = {.index = 371, .length = 5}, + [149] = {.index = 376, .length = 6}, + [150] = {.index = 382, .length = 5}, + [151] = {.index = 387, .length = 5}, + [152] = {.index = 392, .length = 6}, + [153] = {.index = 398, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3410,14 +3409,11 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [79] = { [2] = sym_plain_type, }, - [88] = { - [0] = alias_sym_field_name, - }, - [94] = { + [93] = { [1] = alias_sym_interpolation_expression, [3] = alias_sym_interpolation_closing, }, - [112] = { + [111] = { [3] = sym_plain_type, }, }; @@ -3427,9 +3423,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym__expression, alias_sym_element, alias_sym_interpolation_expression, - sym_reference_expression, 2, - sym_reference_expression, - alias_sym_field_name, sym__plain_type_without_special, 2, sym__plain_type_without_special, sym_plain_type, @@ -3480,52 +3473,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [40] = 15, [41] = 15, [42] = 42, - [43] = 42, + [43] = 43, [44] = 42, - [45] = 42, - [46] = 46, - [47] = 46, - [48] = 46, - [49] = 46, - [50] = 46, + [45] = 43, + [46] = 43, + [47] = 42, + [48] = 43, + [49] = 43, + [50] = 43, [51] = 42, [52] = 42, - [53] = 42, - [54] = 46, - [55] = 42, - [56] = 42, - [57] = 46, - [58] = 46, + [53] = 43, + [54] = 43, + [55] = 43, + [56] = 43, + [57] = 42, + [58] = 42, [59] = 42, - [60] = 46, - [61] = 46, - [62] = 46, + [60] = 42, + [61] = 43, + [62] = 43, [63] = 42, [64] = 42, - [65] = 46, + [65] = 42, [66] = 42, [67] = 42, - [68] = 46, - [69] = 69, - [70] = 42, + [68] = 42, + [69] = 43, + [70] = 43, [71] = 42, - [72] = 46, - [73] = 46, + [72] = 43, + [73] = 42, [74] = 42, - [75] = 46, - [76] = 46, - [77] = 46, - [78] = 42, - [79] = 46, - [80] = 46, - [81] = 42, - [82] = 42, + [75] = 43, + [76] = 42, + [77] = 42, + [78] = 43, + [79] = 43, + [80] = 42, + [81] = 81, + [82] = 43, [83] = 42, - [84] = 42, - [85] = 46, + [84] = 43, + [85] = 43, [86] = 42, - [87] = 46, - [88] = 46, + [87] = 43, + [88] = 43, [89] = 89, [90] = 90, [91] = 91, @@ -3533,24 +3526,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 93, [94] = 94, [95] = 89, - [96] = 94, - [97] = 91, - [98] = 92, - [99] = 93, - [100] = 90, - [101] = 101, - [102] = 101, - [103] = 101, - [104] = 101, - [105] = 101, - [106] = 101, - [107] = 101, - [108] = 101, - [109] = 101, - [110] = 101, - [111] = 101, - [112] = 101, - [113] = 101, + [96] = 96, + [97] = 96, + [98] = 96, + [99] = 92, + [100] = 96, + [101] = 93, + [102] = 96, + [103] = 96, + [104] = 90, + [105] = 96, + [106] = 96, + [107] = 91, + [108] = 96, + [109] = 96, + [110] = 96, + [111] = 94, + [112] = 96, + [113] = 96, [114] = 114, [115] = 114, [116] = 114, @@ -3558,15 +3551,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 114, [119] = 114, [120] = 114, - [121] = 114, + [121] = 121, [122] = 114, [123] = 114, [124] = 114, [125] = 114, - [126] = 126, + [126] = 121, [127] = 114, [128] = 114, - [129] = 126, + [129] = 114, [130] = 114, [131] = 114, [132] = 114, @@ -3578,104 +3571,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [138] = 114, [139] = 139, [140] = 139, - [141] = 139, - [142] = 142, - [143] = 143, - [144] = 143, - [145] = 142, - [146] = 139, - [147] = 142, + [141] = 141, + [142] = 141, + [143] = 141, + [144] = 144, + [145] = 139, + [146] = 144, + [147] = 139, [148] = 139, - [149] = 142, - [150] = 139, - [151] = 139, - [152] = 142, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 139, - [157] = 142, - [158] = 142, - [159] = 143, - [160] = 143, + [149] = 141, + [150] = 141, + [151] = 141, + [152] = 144, + [153] = 139, + [154] = 141, + [155] = 144, + [156] = 144, + [157] = 144, + [158] = 141, + [159] = 141, + [160] = 141, [161] = 139, - [162] = 143, - [163] = 143, - [164] = 143, - [165] = 142, + [162] = 144, + [163] = 139, + [164] = 144, + [165] = 144, [166] = 139, - [167] = 142, - [168] = 139, + [167] = 144, + [168] = 144, [169] = 139, - [170] = 142, + [170] = 141, [171] = 139, - [172] = 143, - [173] = 142, - [174] = 143, - [175] = 142, - [176] = 143, - [177] = 142, + [172] = 139, + [173] = 144, + [174] = 141, + [175] = 141, + [176] = 139, + [177] = 144, [178] = 178, - [179] = 179, - [180] = 180, - [181] = 180, - [182] = 180, - [183] = 179, - [184] = 180, - [185] = 180, - [186] = 180, - [187] = 179, - [188] = 179, - [189] = 179, - [190] = 180, - [191] = 180, - [192] = 180, - [193] = 180, - [194] = 179, - [195] = 179, - [196] = 180, - [197] = 179, - [198] = 179, - [199] = 179, - [200] = 180, - [201] = 180, - [202] = 179, - [203] = 179, - [204] = 204, - [205] = 205, - [206] = 204, - [207] = 204, - [208] = 208, - [209] = 204, - [210] = 94, - [211] = 204, - [212] = 90, - [213] = 204, - [214] = 204, - [215] = 204, - [216] = 92, - [217] = 204, - [218] = 91, - [219] = 219, - [220] = 204, - [221] = 221, - [222] = 204, - [223] = 204, - [224] = 204, - [225] = 93, - [226] = 226, - [227] = 226, - [228] = 226, - [229] = 226, - [230] = 226, - [231] = 226, - [232] = 226, - [233] = 226, - [234] = 226, - [235] = 226, - [236] = 236, - [237] = 226, - [238] = 226, + [179] = 178, + [180] = 178, + [181] = 178, + [182] = 178, + [183] = 183, + [184] = 178, + [185] = 178, + [186] = 178, + [187] = 178, + [188] = 178, + [189] = 178, + [190] = 178, + [191] = 191, + [192] = 192, + [193] = 191, + [194] = 191, + [195] = 192, + [196] = 192, + [197] = 191, + [198] = 191, + [199] = 191, + [200] = 192, + [201] = 191, + [202] = 191, + [203] = 192, + [204] = 192, + [205] = 191, + [206] = 192, + [207] = 192, + [208] = 192, + [209] = 192, + [210] = 191, + [211] = 192, + [212] = 191, + [213] = 192, + [214] = 191, + [215] = 192, + [216] = 191, + [217] = 94, + [218] = 218, + [219] = 218, + [220] = 220, + [221] = 218, + [222] = 222, + [223] = 90, + [224] = 218, + [225] = 218, + [226] = 218, + [227] = 92, + [228] = 218, + [229] = 229, + [230] = 91, + [231] = 218, + [232] = 218, + [233] = 218, + [234] = 218, + [235] = 235, + [236] = 93, + [237] = 237, + [238] = 218, [239] = 239, [240] = 240, [241] = 241, @@ -3699,76 +3692,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [259] = 259, [260] = 260, [261] = 261, - [262] = 261, - [263] = 261, + [262] = 260, + [263] = 263, [264] = 264, [265] = 265, - [266] = 261, - [267] = 267, - [268] = 267, - [269] = 264, - [270] = 270, - [271] = 261, - [272] = 267, - [273] = 267, - [274] = 261, - [275] = 261, - [276] = 259, - [277] = 264, - [278] = 261, + [266] = 266, + [267] = 264, + [268] = 263, + [269] = 260, + [270] = 264, + [271] = 271, + [272] = 266, + [273] = 266, + [274] = 266, + [275] = 264, + [276] = 263, + [277] = 260, + [278] = 264, [279] = 264, - [280] = 261, - [281] = 261, - [282] = 267, + [280] = 266, + [281] = 271, + [282] = 263, [283] = 264, - [284] = 284, - [285] = 284, - [286] = 267, - [287] = 284, - [288] = 261, - [289] = 264, + [284] = 263, + [285] = 260, + [286] = 266, + [287] = 265, + [288] = 288, + [289] = 260, [290] = 290, - [291] = 267, - [292] = 292, - [293] = 284, - [294] = 261, - [295] = 264, - [296] = 284, - [297] = 284, - [298] = 267, - [299] = 267, - [300] = 261, - [301] = 261, - [302] = 284, - [303] = 267, - [304] = 265, - [305] = 261, - [306] = 284, - [307] = 284, - [308] = 261, - [309] = 284, + [291] = 291, + [292] = 264, + [293] = 266, + [294] = 264, + [295] = 263, + [296] = 264, + [297] = 264, + [298] = 266, + [299] = 266, + [300] = 264, + [301] = 266, + [302] = 260, + [303] = 264, + [304] = 260, + [305] = 260, + [306] = 263, + [307] = 263, + [308] = 264, + [309] = 264, [310] = 310, - [311] = 311, - [312] = 312, - [313] = 264, - [314] = 264, - [315] = 267, - [316] = 261, - [317] = 260, - [318] = 264, - [319] = 267, - [320] = 261, - [321] = 261, - [322] = 261, - [323] = 284, - [324] = 284, + [311] = 264, + [312] = 288, + [313] = 313, + [314] = 260, + [315] = 263, + [316] = 266, + [317] = 264, + [318] = 260, + [319] = 266, + [320] = 264, + [321] = 264, + [322] = 263, + [323] = 260, + [324] = 263, [325] = 264, - [326] = 261, - [327] = 261, - [328] = 284, - [329] = 261, + [326] = 263, + [327] = 264, + [328] = 260, + [329] = 263, [330] = 264, - [331] = 267, + [331] = 266, [332] = 264, [333] = 333, [334] = 334, @@ -3781,88 +3774,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 335, - [345] = 334, + [344] = 344, + [345] = 335, [346] = 346, [347] = 337, [348] = 348, - [349] = 349, + [349] = 344, [350] = 338, - [351] = 349, + [351] = 351, [352] = 335, - [353] = 349, + [353] = 344, [354] = 338, [355] = 337, - [356] = 356, + [356] = 344, [357] = 357, [358] = 358, [359] = 359, - [360] = 349, + [360] = 360, [361] = 335, [362] = 338, [363] = 337, [364] = 338, - [365] = 365, - [366] = 337, - [367] = 335, - [368] = 368, - [369] = 335, - [370] = 338, + [365] = 337, + [366] = 335, + [367] = 367, + [368] = 335, + [369] = 338, + [370] = 370, [371] = 371, [372] = 372, [373] = 373, [374] = 374, - [375] = 342, - [376] = 376, + [375] = 343, + [376] = 337, [377] = 337, [378] = 338, [379] = 379, - [380] = 337, + [380] = 380, [381] = 335, - [382] = 382, + [382] = 335, [383] = 383, [384] = 335, - [385] = 385, + [385] = 335, [386] = 386, [387] = 387, [388] = 357, - [389] = 335, - [390] = 335, - [391] = 391, + [389] = 389, + [390] = 390, + [391] = 335, [392] = 392, [393] = 335, [394] = 335, - [395] = 335, - [396] = 342, - [397] = 376, + [395] = 395, + [396] = 343, + [397] = 373, [398] = 337, [399] = 338, - [400] = 400, + [400] = 337, [401] = 401, [402] = 402, [403] = 403, - [404] = 337, + [404] = 404, [405] = 405, - [406] = 406, + [406] = 335, [407] = 407, [408] = 408, - [409] = 335, - [410] = 373, - [411] = 411, + [409] = 409, + [410] = 338, + [411] = 371, [412] = 412, - [413] = 338, + [413] = 413, [414] = 414, [415] = 335, - [416] = 349, + [416] = 344, [417] = 335, - [418] = 418, + [418] = 343, [419] = 335, [420] = 335, - [421] = 335, - [422] = 422, - [423] = 423, - [424] = 342, - [425] = 335, + [421] = 421, + [422] = 335, + [423] = 335, + [424] = 424, + [425] = 425, [426] = 426, [427] = 427, [428] = 428, @@ -3870,1326 +3863,1326 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [430] = 430, [431] = 431, [432] = 337, - [433] = 433, + [433] = 338, [434] = 434, - [435] = 338, + [435] = 435, [436] = 436, [437] = 335, [438] = 438, - [439] = 439, + [439] = 344, [440] = 440, [441] = 441, - [442] = 312, - [443] = 349, - [444] = 444, - [445] = 349, + [442] = 442, + [443] = 443, + [444] = 344, + [445] = 313, [446] = 446, [447] = 447, - [448] = 448, - [449] = 357, + [448] = 357, + [449] = 343, [450] = 450, - [451] = 342, - [452] = 429, + [451] = 430, + [452] = 452, [453] = 453, [454] = 454, [455] = 455, [456] = 456, [457] = 457, [458] = 338, - [459] = 459, + [459] = 346, [460] = 460, [461] = 461, [462] = 462, [463] = 463, - [464] = 342, - [465] = 349, + [464] = 343, + [465] = 344, [466] = 466, [467] = 467, [468] = 468, [469] = 469, [470] = 470, [471] = 471, - [472] = 472, + [472] = 343, [473] = 473, [474] = 474, [475] = 475, - [476] = 476, - [477] = 342, - [478] = 478, + [476] = 343, + [477] = 477, + [478] = 343, [479] = 479, - [480] = 342, + [480] = 480, [481] = 481, [482] = 482, - [483] = 342, + [483] = 483, [484] = 484, [485] = 485, - [486] = 335, + [486] = 344, [487] = 487, - [488] = 488, - [489] = 349, - [490] = 373, - [491] = 491, - [492] = 376, + [488] = 371, + [489] = 335, + [490] = 490, + [491] = 373, + [492] = 462, [493] = 493, - [494] = 463, - [495] = 495, - [496] = 496, + [494] = 494, + [495] = 344, + [496] = 338, [497] = 497, - [498] = 498, + [498] = 343, [499] = 499, - [500] = 338, - [501] = 337, + [500] = 337, + [501] = 501, [502] = 502, [503] = 503, - [504] = 349, - [505] = 342, - [506] = 506, - [507] = 349, - [508] = 402, - [509] = 349, + [504] = 344, + [505] = 505, + [506] = 403, + [507] = 344, + [508] = 508, + [509] = 343, [510] = 510, - [511] = 342, - [512] = 373, + [511] = 511, + [512] = 512, [513] = 513, [514] = 514, [515] = 515, - [516] = 349, + [516] = 344, [517] = 517, - [518] = 518, - [519] = 349, + [518] = 344, + [519] = 519, [520] = 520, - [521] = 521, + [521] = 371, [522] = 522, [523] = 523, - [524] = 376, - [525] = 525, - [526] = 342, - [527] = 527, + [524] = 524, + [525] = 373, + [526] = 526, + [527] = 343, [528] = 528, [529] = 529, - [530] = 530, - [531] = 349, + [530] = 344, + [531] = 531, [532] = 532, - [533] = 334, + [533] = 533, [534] = 532, - [535] = 532, - [536] = 536, + [535] = 346, + [536] = 532, [537] = 537, [538] = 532, [539] = 532, - [540] = 90, + [540] = 540, [541] = 541, - [542] = 542, + [542] = 92, [543] = 532, - [544] = 94, + [544] = 93, [545] = 532, - [546] = 93, - [547] = 532, - [548] = 92, + [546] = 532, + [547] = 94, + [548] = 90, [549] = 532, [550] = 537, [551] = 532, [552] = 552, - [553] = 532, + [553] = 553, [554] = 554, - [555] = 555, - [556] = 554, - [557] = 536, - [558] = 554, - [559] = 554, - [560] = 560, - [561] = 561, - [562] = 554, - [563] = 563, - [564] = 554, - [565] = 532, - [566] = 537, - [567] = 91, - [568] = 554, - [569] = 554, - [570] = 532, - [571] = 554, - [572] = 554, - [573] = 536, + [555] = 532, + [556] = 553, + [557] = 553, + [558] = 553, + [559] = 559, + [560] = 533, + [561] = 553, + [562] = 562, + [563] = 553, + [564] = 564, + [565] = 537, + [566] = 91, + [567] = 532, + [568] = 553, + [569] = 553, + [570] = 553, + [571] = 553, + [572] = 532, + [573] = 533, [574] = 537, - [575] = 554, + [575] = 553, [576] = 537, [577] = 537, [578] = 532, [579] = 532, [580] = 532, [581] = 532, - [582] = 536, - [583] = 554, - [584] = 554, - [585] = 334, + [582] = 533, + [583] = 553, + [584] = 553, + [585] = 346, [586] = 586, [587] = 587, [588] = 588, - [589] = 589, - [590] = 586, - [591] = 591, - [592] = 588, - [593] = 334, - [594] = 594, + [589] = 586, + [590] = 590, + [591] = 346, + [592] = 592, + [593] = 587, + [594] = 346, [595] = 595, - [596] = 596, + [596] = 590, [597] = 597, [598] = 598, - [599] = 594, - [600] = 600, - [601] = 334, - [602] = 588, + [599] = 599, + [600] = 346, + [601] = 601, + [602] = 587, [603] = 603, [604] = 604, - [605] = 603, - [606] = 594, - [607] = 607, + [605] = 599, + [606] = 606, + [607] = 590, [608] = 608, [609] = 609, - [610] = 597, - [611] = 598, - [612] = 586, - [613] = 595, - [614] = 594, - [615] = 615, - [616] = 587, + [610] = 598, + [611] = 595, + [612] = 612, + [613] = 590, + [614] = 586, + [615] = 603, + [616] = 616, [617] = 604, - [618] = 618, - [619] = 588, - [620] = 597, - [621] = 618, - [622] = 615, - [623] = 594, - [624] = 618, - [625] = 591, - [626] = 615, - [627] = 627, - [628] = 594, - [629] = 600, - [630] = 588, - [631] = 600, - [632] = 596, - [633] = 334, - [634] = 596, - [635] = 334, - [636] = 588, - [637] = 596, - [638] = 600, - [639] = 591, - [640] = 588, - [641] = 591, - [642] = 594, - [643] = 615, - [644] = 591, - [645] = 588, - [646] = 334, - [647] = 596, - [648] = 600, - [649] = 594, - [650] = 615, - [651] = 591, - [652] = 598, - [653] = 586, - [654] = 615, - [655] = 595, - [656] = 587, - [657] = 594, - [658] = 596, - [659] = 600, - [660] = 596, - [661] = 604, - [662] = 662, - [663] = 600, - [664] = 603, + [618] = 587, + [619] = 619, + [620] = 598, + [621] = 619, + [622] = 616, + [623] = 590, + [624] = 619, + [625] = 601, + [626] = 616, + [627] = 590, + [628] = 628, + [629] = 601, + [630] = 592, + [631] = 597, + [632] = 597, + [633] = 587, + [634] = 346, + [635] = 346, + [636] = 587, + [637] = 592, + [638] = 597, + [639] = 587, + [640] = 592, + [641] = 601, + [642] = 590, + [643] = 616, + [644] = 592, + [645] = 587, + [646] = 346, + [647] = 597, + [648] = 601, + [649] = 590, + [650] = 616, + [651] = 595, + [652] = 612, + [653] = 616, + [654] = 586, + [655] = 590, + [656] = 603, + [657] = 592, + [658] = 601, + [659] = 604, + [660] = 597, + [661] = 597, + [662] = 599, + [663] = 663, + [664] = 587, [665] = 609, - [666] = 615, - [667] = 588, - [668] = 588, - [669] = 591, - [670] = 334, - [671] = 594, - [672] = 607, - [673] = 595, - [674] = 608, - [675] = 675, + [666] = 601, + [667] = 592, + [668] = 616, + [669] = 587, + [670] = 346, + [671] = 590, + [672] = 612, + [673] = 606, + [674] = 674, + [675] = 608, [676] = 609, - [677] = 597, + [677] = 598, [678] = 678, - [679] = 615, - [680] = 607, - [681] = 594, - [682] = 600, - [683] = 596, - [684] = 608, - [685] = 334, - [686] = 609, - [687] = 588, - [688] = 688, + [679] = 616, + [680] = 590, + [681] = 606, + [682] = 601, + [683] = 597, + [684] = 346, + [685] = 608, + [686] = 587, + [687] = 687, + [688] = 592, [689] = 609, - [690] = 607, - [691] = 598, - [692] = 586, - [693] = 591, - [694] = 603, - [695] = 595, - [696] = 608, - [697] = 604, - [698] = 587, - [699] = 604, - [700] = 603, - [701] = 587, - [702] = 609, - [703] = 595, - [704] = 597, - [705] = 586, - [706] = 607, - [707] = 598, + [690] = 598, + [691] = 606, + [692] = 595, + [693] = 599, + [694] = 612, + [695] = 604, + [696] = 586, + [697] = 603, + [698] = 603, + [699] = 608, + [700] = 604, + [701] = 599, + [702] = 586, + [703] = 609, + [704] = 612, + [705] = 598, + [706] = 595, + [707] = 606, [708] = 608, [709] = 609, - [710] = 597, - [711] = 607, + [710] = 598, + [711] = 606, [712] = 712, [713] = 608, - [714] = 618, - [715] = 615, - [716] = 594, - [717] = 609, - [718] = 600, - [719] = 596, - [720] = 597, - [721] = 607, - [722] = 608, - [723] = 334, - [724] = 588, - [725] = 591, + [714] = 619, + [715] = 616, + [716] = 590, + [717] = 601, + [718] = 609, + [719] = 597, + [720] = 346, + [721] = 598, + [722] = 606, + [723] = 608, + [724] = 587, + [725] = 592, [726] = 609, - [727] = 597, - [728] = 591, - [729] = 607, + [727] = 598, + [728] = 592, + [729] = 606, [730] = 608, - [731] = 615, - [732] = 594, + [731] = 616, + [732] = 590, [733] = 733, [734] = 609, - [735] = 597, - [736] = 600, - [737] = 588, - [738] = 334, - [739] = 607, + [735] = 601, + [736] = 598, + [737] = 587, + [738] = 606, + [739] = 597, [740] = 740, [741] = 608, - [742] = 596, - [743] = 588, - [744] = 591, - [745] = 745, - [746] = 603, - [747] = 615, - [748] = 597, - [749] = 607, + [742] = 587, + [743] = 592, + [744] = 744, + [745] = 609, + [746] = 616, + [747] = 599, + [748] = 590, + [749] = 606, [750] = 608, - [751] = 598, - [752] = 594, - [753] = 753, - [754] = 600, - [755] = 586, - [756] = 756, - [757] = 596, - [758] = 334, - [759] = 596, - [760] = 588, - [761] = 591, + [751] = 595, + [752] = 612, + [753] = 601, + [754] = 754, + [755] = 597, + [756] = 346, + [757] = 757, + [758] = 346, + [759] = 587, + [760] = 597, + [761] = 592, [762] = 609, - [763] = 597, - [764] = 600, - [765] = 594, - [766] = 607, + [763] = 598, + [764] = 601, + [765] = 606, + [766] = 590, [767] = 608, - [768] = 595, - [769] = 587, + [768] = 586, + [769] = 603, [770] = 609, - [771] = 597, - [772] = 615, - [773] = 773, - [774] = 608, + [771] = 598, + [772] = 608, + [773] = 595, + [774] = 774, [775] = 604, - [776] = 586, - [777] = 586, - [778] = 604, - [779] = 587, + [776] = 612, + [777] = 604, + [778] = 616, + [779] = 603, [780] = 780, - [781] = 688, - [782] = 595, - [783] = 586, - [784] = 598, - [785] = 603, - [786] = 603, - [787] = 618, - [788] = 788, - [789] = 603, - [790] = 773, - [791] = 604, - [792] = 587, - [793] = 595, - [794] = 334, - [795] = 615, - [796] = 594, - [797] = 598, - [798] = 598, - [799] = 600, - [800] = 596, - [801] = 801, - [802] = 334, - [803] = 588, - [804] = 604, - [805] = 587, - [806] = 595, - [807] = 586, - [808] = 591, - [809] = 586, - [810] = 595, - [811] = 598, - [812] = 618, - [813] = 603, + [781] = 687, + [782] = 586, + [783] = 612, + [784] = 599, + [785] = 604, + [786] = 595, + [787] = 599, + [788] = 619, + [789] = 789, + [790] = 599, + [791] = 774, + [792] = 604, + [793] = 603, + [794] = 612, + [795] = 616, + [796] = 590, + [797] = 601, + [798] = 612, + [799] = 595, + [800] = 597, + [801] = 346, + [802] = 802, + [803] = 587, + [804] = 592, + [805] = 603, + [806] = 586, + [807] = 612, + [808] = 595, + [809] = 595, + [810] = 612, + [811] = 586, + [812] = 599, + [813] = 619, [814] = 604, - [815] = 587, - [816] = 595, - [817] = 586, - [818] = 598, - [819] = 627, - [820] = 598, - [821] = 589, - [822] = 587, - [823] = 675, + [815] = 603, + [816] = 586, + [817] = 612, + [818] = 595, + [819] = 628, + [820] = 599, + [821] = 588, + [822] = 603, + [823] = 674, [824] = 604, - [825] = 603, - [826] = 598, - [827] = 586, - [828] = 595, - [829] = 587, - [830] = 598, + [825] = 599, + [826] = 595, + [827] = 612, + [828] = 586, + [829] = 595, + [830] = 612, [831] = 586, - [832] = 595, - [833] = 587, - [834] = 604, + [832] = 603, + [833] = 604, + [834] = 599, [835] = 603, [836] = 604, - [837] = 603, - [838] = 603, - [839] = 604, - [840] = 598, - [841] = 586, - [842] = 595, - [843] = 587, + [837] = 599, + [838] = 604, + [839] = 595, + [840] = 603, + [841] = 612, + [842] = 586, + [843] = 603, [844] = 604, - [845] = 603, + [845] = 599, [846] = 712, [847] = 733, [848] = 740, - [849] = 615, - [850] = 594, - [851] = 600, - [852] = 596, - [853] = 688, - [854] = 598, - [855] = 586, - [856] = 595, - [857] = 587, - [858] = 334, - [859] = 588, - [860] = 591, + [849] = 616, + [850] = 590, + [851] = 601, + [852] = 597, + [853] = 346, + [854] = 687, + [855] = 595, + [856] = 612, + [857] = 586, + [858] = 603, + [859] = 587, + [860] = 592, [861] = 604, - [862] = 603, - [863] = 598, - [864] = 598, - [865] = 595, - [866] = 587, + [862] = 599, + [863] = 595, + [864] = 603, + [865] = 586, + [866] = 603, [867] = 604, - [868] = 603, - [869] = 618, + [868] = 599, + [869] = 619, [870] = 870, - [871] = 598, - [872] = 586, - [873] = 595, - [874] = 604, - [875] = 587, + [871] = 595, + [872] = 612, + [873] = 586, + [874] = 616, + [875] = 586, [876] = 604, - [877] = 877, - [878] = 591, - [879] = 588, - [880] = 334, - [881] = 603, - [882] = 587, - [883] = 788, - [884] = 596, - [885] = 618, - [886] = 586, - [887] = 600, - [888] = 595, - [889] = 591, - [890] = 588, - [891] = 615, - [892] = 594, - [893] = 594, - [894] = 615, - [895] = 895, - [896] = 334, - [897] = 596, - [898] = 600, - [899] = 594, - [900] = 615, - [901] = 591, - [902] = 618, - [903] = 600, - [904] = 596, - [905] = 588, - [906] = 615, - [907] = 594, - [908] = 600, - [909] = 596, - [910] = 334, - [911] = 603, + [877] = 592, + [878] = 878, + [879] = 599, + [880] = 587, + [881] = 780, + [882] = 789, + [883] = 346, + [884] = 619, + [885] = 595, + [886] = 612, + [887] = 597, + [888] = 592, + [889] = 587, + [890] = 586, + [891] = 590, + [892] = 601, + [893] = 590, + [894] = 894, + [895] = 346, + [896] = 597, + [897] = 601, + [898] = 590, + [899] = 616, + [900] = 592, + [901] = 616, + [902] = 601, + [903] = 599, + [904] = 597, + [905] = 587, + [906] = 616, + [907] = 590, + [908] = 601, + [909] = 597, + [910] = 346, + [911] = 587, [912] = 604, - [913] = 587, - [914] = 595, - [915] = 586, - [916] = 598, - [917] = 334, - [918] = 588, - [919] = 596, - [920] = 600, - [921] = 594, - [922] = 591, - [923] = 587, - [924] = 615, - [925] = 591, - [926] = 604, - [927] = 603, - [928] = 334, - [929] = 596, - [930] = 600, - [931] = 615, - [932] = 618, - [933] = 588, - [934] = 334, - [935] = 588, - [936] = 591, - [937] = 594, - [938] = 618, - [939] = 788, - [940] = 598, - [941] = 618, + [913] = 603, + [914] = 586, + [915] = 612, + [916] = 595, + [917] = 346, + [918] = 619, + [919] = 592, + [920] = 597, + [921] = 601, + [922] = 590, + [923] = 346, + [924] = 616, + [925] = 592, + [926] = 603, + [927] = 604, + [928] = 599, + [929] = 597, + [930] = 601, + [931] = 616, + [932] = 619, + [933] = 587, + [934] = 346, + [935] = 587, + [936] = 592, + [937] = 590, + [938] = 619, + [939] = 789, + [940] = 595, + [941] = 619, [942] = 870, - [943] = 788, - [944] = 780, - [945] = 788, - [946] = 586, - [947] = 788, - [948] = 788, - [949] = 788, - [950] = 788, - [951] = 618, - [952] = 608, - [953] = 615, - [954] = 594, - [955] = 788, - [956] = 600, - [957] = 596, - [958] = 334, - [959] = 788, - [960] = 595, - [961] = 587, - [962] = 595, - [963] = 788, - [964] = 788, - [965] = 588, - [966] = 603, - [967] = 586, - [968] = 618, - [969] = 598, - [970] = 615, - [971] = 594, - [972] = 600, - [973] = 591, - [974] = 587, - [975] = 604, - [976] = 603, - [977] = 607, - [978] = 596, - [979] = 334, - [980] = 588, - [981] = 591, - [982] = 246, - [983] = 252, - [984] = 243, - [985] = 250, - [986] = 256, - [987] = 255, - [988] = 245, - [989] = 254, - [990] = 251, - [991] = 247, - [992] = 249, - [993] = 244, - [994] = 248, + [943] = 789, + [944] = 789, + [945] = 603, + [946] = 612, + [947] = 789, + [948] = 789, + [949] = 789, + [950] = 789, + [951] = 608, + [952] = 619, + [953] = 616, + [954] = 590, + [955] = 789, + [956] = 601, + [957] = 597, + [958] = 346, + [959] = 789, + [960] = 586, + [961] = 586, + [962] = 599, + [963] = 604, + [964] = 789, + [965] = 789, + [966] = 619, + [967] = 612, + [968] = 616, + [969] = 587, + [970] = 590, + [971] = 601, + [972] = 597, + [973] = 595, + [974] = 592, + [975] = 603, + [976] = 604, + [977] = 599, + [978] = 346, + [979] = 587, + [980] = 592, + [981] = 606, + [982] = 255, + [983] = 254, + [984] = 244, + [985] = 248, + [986] = 245, + [987] = 249, + [988] = 250, + [989] = 247, + [990] = 256, + [991] = 253, + [992] = 246, + [993] = 242, + [994] = 251, [995] = 258, [996] = 257, - [997] = 253, - [998] = 311, - [999] = 270, - [1000] = 259, - [1001] = 259, - [1002] = 260, - [1003] = 292, - [1004] = 260, - [1005] = 428, - [1006] = 333, - [1007] = 412, - [1008] = 356, - [1009] = 450, - [1010] = 343, - [1011] = 411, - [1012] = 407, - [1013] = 406, + [997] = 252, + [998] = 259, + [999] = 261, + [1000] = 271, + [1001] = 271, + [1002] = 288, + [1003] = 291, + [1004] = 288, + [1005] = 429, + [1006] = 313, + [1007] = 421, + [1008] = 342, + [1009] = 446, + [1010] = 358, + [1011] = 360, + [1012] = 408, + [1013] = 407, [1014] = 405, - [1015] = 392, - [1016] = 391, - [1017] = 358, - [1018] = 446, - [1019] = 470, - [1020] = 372, - [1021] = 528, - [1022] = 346, - [1023] = 472, - [1024] = 341, - [1025] = 359, - [1026] = 368, - [1027] = 476, + [1015] = 404, + [1016] = 390, + [1017] = 389, + [1018] = 471, + [1019] = 523, + [1020] = 474, + [1021] = 370, + [1022] = 481, + [1023] = 351, + [1024] = 359, + [1025] = 341, + [1026] = 333, + [1027] = 483, [1028] = 290, - [1029] = 348, - [1030] = 357, - [1031] = 290, - [1032] = 525, - [1033] = 312, - [1034] = 510, - [1035] = 457, - [1036] = 499, - [1037] = 418, - [1038] = 444, - [1039] = 440, - [1040] = 436, - [1041] = 427, - [1042] = 402, - [1043] = 336, - [1044] = 400, - [1045] = 383, - [1046] = 382, + [1029] = 290, + [1030] = 348, + [1031] = 357, + [1032] = 520, + [1033] = 508, + [1034] = 334, + [1035] = 505, + [1036] = 443, + [1037] = 412, + [1038] = 313, + [1039] = 436, + [1040] = 426, + [1041] = 403, + [1042] = 336, + [1043] = 383, + [1044] = 380, + [1045] = 401, + [1046] = 379, [1047] = 453, - [1048] = 408, - [1049] = 461, - [1050] = 423, - [1051] = 403, - [1052] = 426, - [1053] = 466, - [1054] = 430, - [1055] = 433, + [1048] = 454, + [1049] = 409, + [1050] = 463, + [1051] = 424, + [1052] = 455, + [1053] = 427, + [1054] = 466, + [1055] = 431, [1056] = 434, - [1057] = 467, - [1058] = 460, - [1059] = 379, - [1060] = 312, - [1061] = 455, + [1057] = 435, + [1058] = 467, + [1059] = 442, + [1060] = 367, + [1061] = 395, [1062] = 456, - [1063] = 468, - [1064] = 462, - [1065] = 459, - [1066] = 469, - [1067] = 448, - [1068] = 471, - [1069] = 473, - [1070] = 491, - [1071] = 402, - [1072] = 474, - [1073] = 478, + [1063] = 457, + [1064] = 468, + [1065] = 461, + [1066] = 460, + [1067] = 450, + [1068] = 386, + [1069] = 490, + [1070] = 469, + [1071] = 470, + [1072] = 473, + [1073] = 475, [1074] = 479, - [1075] = 475, - [1076] = 481, - [1077] = 484, - [1078] = 487, - [1079] = 513, - [1080] = 385, - [1081] = 514, - [1082] = 498, - [1083] = 386, - [1084] = 515, - [1085] = 517, - [1086] = 518, - [1087] = 521, - [1088] = 438, - [1089] = 431, - [1090] = 523, - [1091] = 422, + [1075] = 480, + [1076] = 477, + [1077] = 482, + [1078] = 485, + [1079] = 512, + [1080] = 387, + [1081] = 513, + [1082] = 357, + [1083] = 499, + [1084] = 514, + [1085] = 515, + [1086] = 517, + [1087] = 519, + [1088] = 528, + [1089] = 428, + [1090] = 425, + [1091] = 529, [1092] = 414, - [1093] = 529, - [1094] = 365, - [1095] = 530, - [1096] = 482, - [1097] = 357, - [1098] = 439, - [1099] = 520, - [1100] = 527, - [1101] = 506, - [1102] = 522, - [1103] = 503, - [1104] = 497, - [1105] = 495, - [1106] = 502, - [1107] = 496, - [1108] = 493, - [1109] = 485, - [1110] = 454, - [1111] = 447, + [1093] = 413, + [1094] = 531, + [1095] = 441, + [1096] = 438, + [1097] = 484, + [1098] = 403, + [1099] = 511, + [1100] = 526, + [1101] = 524, + [1102] = 510, + [1103] = 522, + [1104] = 503, + [1105] = 497, + [1106] = 494, + [1107] = 502, + [1108] = 501, + [1109] = 447, + [1110] = 493, + [1111] = 452, [1112] = 1112, [1113] = 357, - [1114] = 90, + [1114] = 93, [1115] = 91, - [1116] = 92, - [1117] = 93, - [1118] = 94, + [1116] = 94, + [1117] = 92, + [1118] = 90, [1119] = 1119, - [1120] = 250, - [1121] = 249, - [1122] = 1122, - [1123] = 253, - [1124] = 256, - [1125] = 1125, + [1120] = 248, + [1121] = 246, + [1122] = 252, + [1123] = 1123, + [1124] = 245, + [1125] = 247, [1126] = 254, - [1127] = 247, - [1128] = 252, - [1129] = 245, - [1130] = 251, - [1131] = 248, - [1132] = 255, + [1127] = 256, + [1128] = 251, + [1129] = 249, + [1130] = 253, + [1131] = 250, + [1132] = 1132, [1133] = 1133, - [1134] = 251, + [1134] = 254, [1135] = 257, [1136] = 1136, - [1137] = 254, - [1138] = 252, - [1139] = 247, - [1140] = 258, + [1137] = 251, + [1138] = 245, + [1139] = 258, + [1140] = 1140, [1141] = 1141, - [1142] = 1142, - [1143] = 256, - [1144] = 249, - [1145] = 248, - [1146] = 91, - [1147] = 270, - [1148] = 90, - [1149] = 92, - [1150] = 259, - [1151] = 292, - [1152] = 260, - [1153] = 93, - [1154] = 311, - [1155] = 94, - [1156] = 259, - [1157] = 260, + [1142] = 246, + [1143] = 253, + [1144] = 247, + [1145] = 256, + [1146] = 90, + [1147] = 92, + [1148] = 291, + [1149] = 94, + [1150] = 271, + [1151] = 271, + [1152] = 93, + [1153] = 288, + [1154] = 288, + [1155] = 259, + [1156] = 91, + [1157] = 261, [1158] = 515, - [1159] = 408, - [1160] = 528, - [1161] = 510, - [1162] = 457, - [1163] = 499, - [1164] = 444, + [1159] = 514, + [1160] = 523, + [1161] = 508, + [1162] = 334, + [1163] = 505, + [1164] = 443, [1165] = 436, - [1166] = 427, - [1167] = 476, - [1168] = 336, - [1169] = 383, - [1170] = 403, - [1171] = 460, - [1172] = 382, - [1173] = 379, - [1174] = 333, - [1175] = 418, - [1176] = 402, - [1177] = 385, - [1178] = 386, - [1179] = 475, - [1180] = 484, - [1181] = 439, - [1182] = 447, - [1183] = 454, - [1184] = 491, - [1185] = 530, - [1186] = 469, - [1187] = 523, - [1188] = 368, - [1189] = 495, - [1190] = 497, - [1191] = 503, - [1192] = 522, - [1193] = 527, - [1194] = 520, - [1195] = 482, + [1166] = 426, + [1167] = 336, + [1168] = 383, + [1169] = 380, + [1170] = 455, + [1171] = 395, + [1172] = 379, + [1173] = 367, + [1174] = 403, + [1175] = 483, + [1176] = 386, + [1177] = 387, + [1178] = 475, + [1179] = 477, + [1180] = 438, + [1181] = 447, + [1182] = 452, + [1183] = 494, + [1184] = 497, + [1185] = 503, + [1186] = 522, + [1187] = 524, + [1188] = 526, + [1189] = 484, + [1190] = 441, + [1191] = 413, + [1192] = 414, + [1193] = 425, + [1194] = 428, + [1195] = 499, [1196] = 529, - [1197] = 365, - [1198] = 414, - [1199] = 422, - [1200] = 431, - [1201] = 438, - [1202] = 357, - [1203] = 498, - [1204] = 312, - [1205] = 481, - [1206] = 359, - [1207] = 312, - [1208] = 479, - [1209] = 478, - [1210] = 468, - [1211] = 487, - [1212] = 459, - [1213] = 456, - [1214] = 455, - [1215] = 467, - [1216] = 466, - [1217] = 434, - [1218] = 433, - [1219] = 430, - [1220] = 426, - [1221] = 474, - [1222] = 423, - [1223] = 461, - [1224] = 453, - [1225] = 473, - [1226] = 400, - [1227] = 506, - [1228] = 472, - [1229] = 471, - [1230] = 525, - [1231] = 428, - [1232] = 470, - [1233] = 358, - [1234] = 440, - [1235] = 450, - [1236] = 521, - [1237] = 518, - [1238] = 448, - [1239] = 517, - [1240] = 485, - [1241] = 502, - [1242] = 348, - [1243] = 446, - [1244] = 496, - [1245] = 412, - [1246] = 341, - [1247] = 357, - [1248] = 493, - [1249] = 408, - [1250] = 343, - [1251] = 462, - [1252] = 346, - [1253] = 411, - [1254] = 372, - [1255] = 356, - [1256] = 402, - [1257] = 391, - [1258] = 392, + [1197] = 482, + [1198] = 480, + [1199] = 479, + [1200] = 460, + [1201] = 457, + [1202] = 456, + [1203] = 357, + [1204] = 435, + [1205] = 434, + [1206] = 431, + [1207] = 313, + [1208] = 427, + [1209] = 403, + [1210] = 342, + [1211] = 424, + [1212] = 461, + [1213] = 401, + [1214] = 429, + [1215] = 442, + [1216] = 360, + [1217] = 357, + [1218] = 450, + [1219] = 358, + [1220] = 348, + [1221] = 493, + [1222] = 469, + [1223] = 341, + [1224] = 470, + [1225] = 351, + [1226] = 473, + [1227] = 370, + [1228] = 389, + [1229] = 390, + [1230] = 404, + [1231] = 405, + [1232] = 407, + [1233] = 408, + [1234] = 501, + [1235] = 502, + [1236] = 510, + [1237] = 511, + [1238] = 453, + [1239] = 454, + [1240] = 463, + [1241] = 466, + [1242] = 467, + [1243] = 468, + [1244] = 490, + [1245] = 409, + [1246] = 412, + [1247] = 313, + [1248] = 520, + [1249] = 531, + [1250] = 481, + [1251] = 474, + [1252] = 471, + [1253] = 528, + [1254] = 519, + [1255] = 517, + [1256] = 446, + [1257] = 421, + [1258] = 485, [1259] = 513, - [1260] = 514, - [1261] = 407, - [1262] = 405, - [1263] = 406, + [1260] = 512, + [1261] = 359, + [1262] = 333, + [1263] = 409, [1264] = 1119, - [1265] = 248, - [1266] = 249, - [1267] = 251, - [1268] = 252, + [1265] = 254, + [1266] = 246, + [1267] = 253, + [1268] = 256, [1269] = 247, - [1270] = 253, - [1271] = 254, - [1272] = 256, - [1273] = 250, - [1274] = 255, - [1275] = 1125, - [1276] = 245, - [1277] = 1122, - [1278] = 94, - [1279] = 249, - [1280] = 1133, - [1281] = 256, - [1282] = 1136, - [1283] = 93, - [1284] = 90, - [1285] = 254, - [1286] = 251, - [1287] = 257, - [1288] = 252, - [1289] = 258, - [1290] = 247, - [1291] = 248, - [1292] = 311, - [1293] = 260, - [1294] = 259, - [1295] = 260, - [1296] = 270, - [1297] = 259, - [1298] = 292, - [1299] = 407, - [1300] = 385, - [1301] = 372, - [1302] = 346, - [1303] = 529, - [1304] = 343, - [1305] = 478, - [1306] = 479, - [1307] = 481, - [1308] = 496, - [1309] = 90, - [1310] = 485, - [1311] = 493, - [1312] = 392, - [1313] = 391, - [1314] = 94, - [1315] = 506, - [1316] = 448, - [1317] = 528, - [1318] = 341, - [1319] = 402, - [1320] = 93, - [1321] = 405, - [1322] = 312, - [1323] = 406, - [1324] = 348, - [1325] = 411, - [1326] = 440, - [1327] = 418, - [1328] = 428, - [1329] = 530, - [1330] = 523, - [1331] = 521, - [1332] = 518, - [1333] = 517, - [1334] = 515, - [1335] = 514, - [1336] = 513, - [1337] = 408, - [1338] = 453, - [1339] = 476, - [1340] = 402, - [1341] = 461, - [1342] = 466, - [1343] = 467, - [1344] = 510, - [1345] = 457, - [1346] = 499, - [1347] = 468, - [1348] = 444, + [1270] = 1132, + [1271] = 245, + [1272] = 251, + [1273] = 252, + [1274] = 1123, + [1275] = 248, + [1276] = 249, + [1277] = 250, + [1278] = 257, + [1279] = 258, + [1280] = 92, + [1281] = 93, + [1282] = 251, + [1283] = 256, + [1284] = 246, + [1285] = 90, + [1286] = 245, + [1287] = 247, + [1288] = 1136, + [1289] = 1133, + [1290] = 253, + [1291] = 254, + [1292] = 288, + [1293] = 288, + [1294] = 261, + [1295] = 259, + [1296] = 271, + [1297] = 271, + [1298] = 291, + [1299] = 387, + [1300] = 380, + [1301] = 460, + [1302] = 456, + [1303] = 485, + [1304] = 435, + [1305] = 434, + [1306] = 512, + [1307] = 357, + [1308] = 403, + [1309] = 431, + [1310] = 479, + [1311] = 421, + [1312] = 493, + [1313] = 446, + [1314] = 471, + [1315] = 450, + [1316] = 480, + [1317] = 474, + [1318] = 409, + [1319] = 481, + [1320] = 342, + [1321] = 520, + [1322] = 461, + [1323] = 490, + [1324] = 442, + [1325] = 358, + [1326] = 468, + [1327] = 429, + [1328] = 529, + [1329] = 467, + [1330] = 466, + [1331] = 463, + [1332] = 469, + [1333] = 494, + [1334] = 454, + [1335] = 453, + [1336] = 470, + [1337] = 473, + [1338] = 408, + [1339] = 407, + [1340] = 93, + [1341] = 403, + [1342] = 313, + [1343] = 405, + [1344] = 508, + [1345] = 334, + [1346] = 505, + [1347] = 412, + [1348] = 443, [1349] = 436, - [1350] = 427, + [1350] = 426, [1351] = 336, [1352] = 383, - [1353] = 382, - [1354] = 357, - [1355] = 379, - [1356] = 333, - [1357] = 469, - [1358] = 502, - [1359] = 368, - [1360] = 386, - [1361] = 400, - [1362] = 359, - [1363] = 487, - [1364] = 491, - [1365] = 474, - [1366] = 439, - [1367] = 484, - [1368] = 475, - [1369] = 473, - [1370] = 525, - [1371] = 312, - [1372] = 495, - [1373] = 357, - [1374] = 447, - [1375] = 454, - [1376] = 471, - [1377] = 423, - [1378] = 426, - [1379] = 472, + [1353] = 510, + [1354] = 379, + [1355] = 404, + [1356] = 367, + [1357] = 513, + [1358] = 386, + [1359] = 457, + [1360] = 390, + [1361] = 389, + [1362] = 455, + [1363] = 483, + [1364] = 438, + [1365] = 482, + [1366] = 92, + [1367] = 370, + [1368] = 511, + [1369] = 477, + [1370] = 475, + [1371] = 447, + [1372] = 313, + [1373] = 90, + [1374] = 409, + [1375] = 452, + [1376] = 531, + [1377] = 351, + [1378] = 359, + [1379] = 523, [1380] = 497, [1381] = 503, [1382] = 522, - [1383] = 430, - [1384] = 408, - [1385] = 433, - [1386] = 358, - [1387] = 527, - [1388] = 520, - [1389] = 482, - [1390] = 434, - [1391] = 455, - [1392] = 456, - [1393] = 459, - [1394] = 470, - [1395] = 450, - [1396] = 365, - [1397] = 462, - [1398] = 446, - [1399] = 414, - [1400] = 422, - [1401] = 431, - [1402] = 412, - [1403] = 460, - [1404] = 403, - [1405] = 438, - [1406] = 356, - [1407] = 498, + [1383] = 501, + [1384] = 360, + [1385] = 341, + [1386] = 333, + [1387] = 524, + [1388] = 526, + [1389] = 484, + [1390] = 348, + [1391] = 514, + [1392] = 515, + [1393] = 401, + [1394] = 502, + [1395] = 424, + [1396] = 441, + [1397] = 528, + [1398] = 427, + [1399] = 413, + [1400] = 414, + [1401] = 425, + [1402] = 428, + [1403] = 357, + [1404] = 519, + [1405] = 395, + [1406] = 517, + [1407] = 499, [1408] = 1408, - [1409] = 255, - [1410] = 250, - [1411] = 247, - [1412] = 249, - [1413] = 252, - [1414] = 248, - [1415] = 251, - [1416] = 245, - [1417] = 254, - [1418] = 256, - [1419] = 258, + [1409] = 250, + [1410] = 256, + [1411] = 248, + [1412] = 254, + [1413] = 251, + [1414] = 249, + [1415] = 246, + [1416] = 253, + [1417] = 247, + [1418] = 245, + [1419] = 252, [1420] = 1420, - [1421] = 253, + [1421] = 1421, [1422] = 1422, - [1423] = 257, - [1424] = 1424, - [1425] = 1425, - [1426] = 402, - [1427] = 259, - [1428] = 311, - [1429] = 292, - [1430] = 260, - [1431] = 259, - [1432] = 1432, - [1433] = 270, - [1434] = 260, - [1435] = 498, - [1436] = 493, - [1437] = 92, - [1438] = 528, - [1439] = 90, - [1440] = 94, - [1441] = 93, - [1442] = 356, - [1443] = 462, - [1444] = 358, - [1445] = 471, - [1446] = 473, - [1447] = 408, - [1448] = 91, - [1449] = 412, - [1450] = 446, - [1451] = 402, - [1452] = 474, - [1453] = 487, - [1454] = 90, - [1455] = 450, - [1456] = 470, - [1457] = 472, - [1458] = 359, - [1459] = 94, - [1460] = 368, - [1461] = 513, - [1462] = 525, - [1463] = 514, - [1464] = 515, - [1465] = 491, - [1466] = 405, - [1467] = 468, - [1468] = 467, - [1469] = 517, - [1470] = 466, - [1471] = 461, - [1472] = 453, - [1473] = 518, - [1474] = 411, - [1475] = 407, - [1476] = 406, - [1477] = 312, - [1478] = 521, - [1479] = 392, - [1480] = 391, - [1481] = 372, - [1482] = 346, - [1483] = 523, - [1484] = 343, - [1485] = 1485, - [1486] = 341, - [1487] = 348, - [1488] = 91, - [1489] = 400, - [1490] = 423, - [1491] = 1491, - [1492] = 426, - [1493] = 430, - [1494] = 433, - [1495] = 434, - [1496] = 1491, - [1497] = 455, - [1498] = 529, - [1499] = 456, - [1500] = 459, - [1501] = 478, - [1502] = 479, - [1503] = 481, - [1504] = 469, - [1505] = 438, - [1506] = 431, - [1507] = 422, - [1508] = 414, - [1509] = 365, - [1510] = 482, - [1511] = 382, - [1512] = 530, - [1513] = 93, - [1514] = 522, - [1515] = 503, - [1516] = 497, - [1517] = 454, - [1518] = 447, - [1519] = 439, - [1520] = 386, - [1521] = 91, - [1522] = 527, - [1523] = 385, - [1524] = 333, - [1525] = 379, - [1526] = 520, - [1527] = 383, - [1528] = 336, - [1529] = 427, - [1530] = 436, - [1531] = 444, - [1532] = 499, - [1533] = 457, - [1534] = 510, - [1535] = 484, - [1536] = 475, - [1537] = 418, - [1538] = 357, - [1539] = 495, - [1540] = 476, - [1541] = 428, - [1542] = 506, - [1543] = 440, - [1544] = 460, - [1545] = 448, - [1546] = 485, - [1547] = 92, - [1548] = 502, - [1549] = 403, - [1550] = 496, - [1551] = 250, - [1552] = 255, - [1553] = 357, - [1554] = 92, - [1555] = 245, - [1556] = 257, - [1557] = 258, - [1558] = 1558, - [1559] = 1558, - [1560] = 461, - [1561] = 453, - [1562] = 247, - [1563] = 412, - [1564] = 402, - [1565] = 256, - [1566] = 247, - [1567] = 252, - [1568] = 292, - [1569] = 252, - [1570] = 254, - [1571] = 1571, - [1572] = 466, - [1573] = 260, - [1574] = 311, - [1575] = 256, - [1576] = 260, - [1577] = 259, - [1578] = 270, - [1579] = 430, - [1580] = 433, - [1581] = 1408, - [1582] = 434, - [1583] = 249, - [1584] = 259, - [1585] = 249, - [1586] = 248, - [1587] = 251, - [1588] = 254, - [1589] = 248, - [1590] = 251, + [1423] = 258, + [1424] = 257, + [1425] = 288, + [1426] = 291, + [1427] = 1427, + [1428] = 403, + [1429] = 271, + [1430] = 261, + [1431] = 288, + [1432] = 259, + [1433] = 271, + [1434] = 1434, + [1435] = 379, + [1436] = 529, + [1437] = 91, + [1438] = 523, + [1439] = 424, + [1440] = 92, + [1441] = 1441, + [1442] = 427, + [1443] = 93, + [1444] = 431, + [1445] = 91, + [1446] = 434, + [1447] = 454, + [1448] = 435, + [1449] = 90, + [1450] = 456, + [1451] = 457, + [1452] = 460, + [1453] = 342, + [1454] = 479, + [1455] = 480, + [1456] = 482, + [1457] = 461, + [1458] = 453, + [1459] = 358, + [1460] = 469, + [1461] = 470, + [1462] = 94, + [1463] = 463, + [1464] = 473, + [1465] = 341, + [1466] = 485, + [1467] = 409, + [1468] = 360, + [1469] = 494, + [1470] = 351, + [1471] = 370, + [1472] = 428, + [1473] = 499, + [1474] = 425, + [1475] = 421, + [1476] = 403, + [1477] = 1477, + [1478] = 92, + [1479] = 414, + [1480] = 413, + [1481] = 441, + [1482] = 359, + [1483] = 484, + [1484] = 333, + [1485] = 526, + [1486] = 524, + [1487] = 522, + [1488] = 93, + [1489] = 466, + [1490] = 503, + [1491] = 497, + [1492] = 446, + [1493] = 471, + [1494] = 474, + [1495] = 467, + [1496] = 481, + [1497] = 452, + [1498] = 447, + [1499] = 468, + [1500] = 313, + [1501] = 404, + [1502] = 438, + [1503] = 387, + [1504] = 512, + [1505] = 386, + [1506] = 520, + [1507] = 367, + [1508] = 348, + [1509] = 380, + [1510] = 383, + [1511] = 508, + [1512] = 513, + [1513] = 511, + [1514] = 390, + [1515] = 443, + [1516] = 389, + [1517] = 90, + [1518] = 514, + [1519] = 515, + [1520] = 408, + [1521] = 505, + [1522] = 426, + [1523] = 91, + [1524] = 334, + [1525] = 407, + [1526] = 336, + [1527] = 483, + [1528] = 429, + [1529] = 442, + [1530] = 405, + [1531] = 450, + [1532] = 493, + [1533] = 94, + [1534] = 501, + [1535] = 502, + [1536] = 517, + [1537] = 1441, + [1538] = 477, + [1539] = 475, + [1540] = 357, + [1541] = 510, + [1542] = 436, + [1543] = 490, + [1544] = 412, + [1545] = 519, + [1546] = 395, + [1547] = 531, + [1548] = 401, + [1549] = 528, + [1550] = 455, + [1551] = 357, + [1552] = 250, + [1553] = 248, + [1554] = 94, + [1555] = 249, + [1556] = 1556, + [1557] = 257, + [1558] = 1556, + [1559] = 258, + [1560] = 288, + [1561] = 261, + [1562] = 251, + [1563] = 291, + [1564] = 421, + [1565] = 463, + [1566] = 454, + [1567] = 251, + [1568] = 453, + [1569] = 254, + [1570] = 271, + [1571] = 245, + [1572] = 288, + [1573] = 259, + [1574] = 1574, + [1575] = 254, + [1576] = 431, + [1577] = 434, + [1578] = 435, + [1579] = 246, + [1580] = 403, + [1581] = 253, + [1582] = 1408, + [1583] = 256, + [1584] = 247, + [1585] = 271, + [1586] = 246, + [1587] = 253, + [1588] = 256, + [1589] = 247, + [1590] = 245, [1591] = 414, - [1592] = 497, - [1593] = 510, - [1594] = 457, - [1595] = 343, - [1596] = 499, - [1597] = 444, - [1598] = 436, - [1599] = 427, - [1600] = 336, - [1601] = 383, - [1602] = 382, - [1603] = 1603, - [1604] = 379, - [1605] = 403, - [1606] = 333, - [1607] = 385, - [1608] = 460, - [1609] = 356, - [1610] = 476, - [1611] = 478, - [1612] = 475, - [1613] = 462, - [1614] = 484, - [1615] = 386, - [1616] = 439, - [1617] = 447, + [1592] = 522, + [1593] = 508, + [1594] = 505, + [1595] = 360, + [1596] = 443, + [1597] = 436, + [1598] = 426, + [1599] = 336, + [1600] = 383, + [1601] = 380, + [1602] = 379, + [1603] = 367, + [1604] = 1604, + [1605] = 386, + [1606] = 387, + [1607] = 483, + [1608] = 342, + [1609] = 455, + [1610] = 395, + [1611] = 438, + [1612] = 479, + [1613] = 461, + [1614] = 475, + [1615] = 477, + [1616] = 447, + [1617] = 452, [1618] = 358, - [1619] = 471, - [1620] = 454, - [1621] = 495, + [1619] = 469, + [1620] = 494, + [1621] = 497, [1622] = 503, - [1623] = 473, - [1624] = 402, - [1625] = 474, - [1626] = 522, - [1627] = 529, - [1628] = 527, - [1629] = 520, - [1630] = 528, - [1631] = 482, - [1632] = 365, - [1633] = 446, - [1634] = 487, - [1635] = 422, - [1636] = 359, - [1637] = 368, - [1638] = 431, - [1639] = 438, - [1640] = 498, - [1641] = 481, - [1642] = 513, - [1643] = 428, - [1644] = 450, - [1645] = 440, - [1646] = 514, - [1647] = 479, - [1648] = 459, - [1649] = 515, + [1623] = 334, + [1624] = 524, + [1625] = 470, + [1626] = 473, + [1627] = 526, + [1628] = 403, + [1629] = 484, + [1630] = 529, + [1631] = 441, + [1632] = 413, + [1633] = 485, + [1634] = 523, + [1635] = 359, + [1636] = 333, + [1637] = 425, + [1638] = 428, + [1639] = 499, + [1640] = 482, + [1641] = 480, + [1642] = 446, + [1643] = 512, + [1644] = 427, + [1645] = 460, + [1646] = 513, + [1647] = 514, + [1648] = 515, + [1649] = 357, [1650] = 517, - [1651] = 470, - [1652] = 518, - [1653] = 521, - [1654] = 472, - [1655] = 357, - [1656] = 456, - [1657] = 525, - [1658] = 455, - [1659] = 491, - [1660] = 523, - [1661] = 448, - [1662] = 426, - [1663] = 530, - [1664] = 423, - [1665] = 469, - [1666] = 468, - [1667] = 467, - [1668] = 485, - [1669] = 418, - [1670] = 400, - [1671] = 411, - [1672] = 407, - [1673] = 406, + [1651] = 457, + [1652] = 519, + [1653] = 528, + [1654] = 471, + [1655] = 429, + [1656] = 474, + [1657] = 442, + [1658] = 456, + [1659] = 481, + [1660] = 520, + [1661] = 531, + [1662] = 424, + [1663] = 450, + [1664] = 490, + [1665] = 401, + [1666] = 348, + [1667] = 468, + [1668] = 467, + [1669] = 412, + [1670] = 466, + [1671] = 493, + [1672] = 408, + [1673] = 407, [1674] = 405, - [1675] = 392, - [1676] = 348, - [1677] = 341, - [1678] = 506, - [1679] = 391, - [1680] = 1680, - [1681] = 372, - [1682] = 493, - [1683] = 346, - [1684] = 502, - [1685] = 496, + [1675] = 341, + [1676] = 351, + [1677] = 511, + [1678] = 510, + [1679] = 502, + [1680] = 404, + [1681] = 1681, + [1682] = 390, + [1683] = 389, + [1684] = 370, + [1685] = 501, [1686] = 1686, - [1687] = 1687, - [1688] = 312, - [1689] = 408, + [1687] = 313, + [1688] = 1688, + [1689] = 409, [1690] = 91, - [1691] = 408, - [1692] = 312, + [1691] = 409, + [1692] = 1692, [1693] = 1693, - [1694] = 1694, + [1694] = 90, [1695] = 93, [1696] = 92, [1697] = 94, - [1698] = 90, - [1699] = 292, - [1700] = 1700, - [1701] = 1701, + [1698] = 313, + [1699] = 291, + [1700] = 93, + [1701] = 333, [1702] = 1702, [1703] = 1703, - [1704] = 368, - [1705] = 94, - [1706] = 93, + [1704] = 1704, + [1705] = 1705, + [1706] = 92, [1707] = 1707, - [1708] = 402, - [1709] = 90, - [1710] = 359, - [1711] = 1711, - [1712] = 440, - [1713] = 403, - [1714] = 1714, + [1708] = 1708, + [1709] = 403, + [1710] = 90, + [1711] = 359, + [1712] = 512, + [1713] = 91, + [1714] = 395, [1715] = 1715, - [1716] = 460, - [1717] = 358, - [1718] = 475, - [1719] = 484, - [1720] = 1720, - [1721] = 418, - [1722] = 292, - [1723] = 448, - [1724] = 493, - [1725] = 496, - [1726] = 502, - [1727] = 487, - [1728] = 356, - [1729] = 506, - [1730] = 462, - [1731] = 485, - [1732] = 1732, - [1733] = 471, + [1716] = 529, + [1717] = 1717, + [1718] = 358, + [1719] = 429, + [1720] = 485, + [1721] = 442, + [1722] = 450, + [1723] = 475, + [1724] = 477, + [1725] = 473, + [1726] = 493, + [1727] = 501, + [1728] = 502, + [1729] = 342, + [1730] = 291, + [1731] = 461, + [1732] = 510, + [1733] = 455, [1734] = 1734, - [1735] = 1735, - [1736] = 473, - [1737] = 513, - [1738] = 529, - [1739] = 514, - [1740] = 428, - [1741] = 474, - [1742] = 91, - [1743] = 515, - [1744] = 517, - [1745] = 518, - [1746] = 521, - [1747] = 523, - [1748] = 530, + [1735] = 511, + [1736] = 1736, + [1737] = 1737, + [1738] = 531, + [1739] = 528, + [1740] = 1740, + [1741] = 519, + [1742] = 469, + [1743] = 470, + [1744] = 513, + [1745] = 517, + [1746] = 412, + [1747] = 514, + [1748] = 515, [1749] = 1749, [1750] = 1750, [1751] = 1751, - [1752] = 1752, + [1752] = 403, [1753] = 1753, [1754] = 1754, [1755] = 1755, @@ -5197,7 +5190,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1757] = 1757, [1758] = 1758, [1759] = 1759, - [1760] = 402, + [1760] = 1760, [1761] = 1761, [1762] = 1762, [1763] = 1763, @@ -5207,20 +5200,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 359, - [1771] = 368, + [1770] = 1770, + [1771] = 1771, [1772] = 1772, [1773] = 1773, - [1774] = 1774, - [1775] = 1775, + [1774] = 359, + [1775] = 333, [1776] = 1776, [1777] = 1777, [1778] = 1778, - [1779] = 1779, + [1779] = 501, [1780] = 1780, [1781] = 1781, [1782] = 1782, - [1783] = 513, + [1783] = 1783, [1784] = 1784, [1785] = 1785, [1786] = 1786, @@ -5229,7 +5222,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1789] = 1789, [1790] = 1790, [1791] = 1791, - [1792] = 260, + [1792] = 1792, [1793] = 1793, [1794] = 1794, [1795] = 1795, @@ -5237,18 +5230,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 460, - [1801] = 403, - [1802] = 1802, + [1800] = 1800, + [1801] = 395, + [1802] = 455, [1803] = 1803, [1804] = 1804, - [1805] = 358, - [1806] = 1806, - [1807] = 1807, + [1805] = 1805, + [1806] = 485, + [1807] = 513, [1808] = 1808, - [1809] = 418, - [1810] = 471, - [1811] = 448, + [1809] = 358, + [1810] = 1810, + [1811] = 469, [1812] = 1812, [1813] = 1813, [1814] = 1814, @@ -5256,50 +5249,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1816] = 1816, [1817] = 1817, [1818] = 1818, - [1819] = 1819, - [1820] = 91, + [1819] = 511, + [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, - [1824] = 1824, - [1825] = 530, + [1824] = 91, + [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 1828, + [1828] = 288, [1829] = 1829, - [1830] = 473, - [1831] = 474, - [1832] = 475, - [1833] = 484, - [1834] = 529, + [1830] = 470, + [1831] = 1831, + [1832] = 1832, + [1833] = 473, + [1834] = 475, [1835] = 1835, - [1836] = 487, + [1836] = 477, [1837] = 1837, - [1838] = 523, - [1839] = 1839, - [1840] = 485, - [1841] = 521, - [1842] = 1842, + [1838] = 91, + [1839] = 412, + [1840] = 1840, + [1841] = 1841, + [1842] = 342, [1843] = 1843, - [1844] = 1844, - [1845] = 356, + [1844] = 493, + [1845] = 1845, [1846] = 1846, [1847] = 1847, - [1848] = 259, - [1849] = 462, + [1848] = 531, + [1849] = 1849, [1850] = 1850, - [1851] = 1851, - [1852] = 495, - [1853] = 493, + [1851] = 450, + [1852] = 271, + [1853] = 494, [1854] = 1854, [1855] = 1855, - [1856] = 1856, + [1856] = 461, [1857] = 1857, - [1858] = 1858, - [1859] = 496, + [1858] = 512, + [1859] = 517, [1860] = 1860, - [1861] = 1861, - [1862] = 1862, + [1861] = 529, + [1862] = 502, [1863] = 1863, [1864] = 1864, [1865] = 1865, @@ -5307,1236 +5300,1236 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1867] = 1867, [1868] = 1868, [1869] = 1869, - [1870] = 1870, + [1870] = 528, [1871] = 1871, [1872] = 1872, [1873] = 1873, [1874] = 1874, - [1875] = 502, + [1875] = 429, [1876] = 1876, [1877] = 1877, - [1878] = 1878, + [1878] = 519, [1879] = 1879, [1880] = 1880, - [1881] = 440, + [1881] = 442, [1882] = 1882, - [1883] = 514, + [1883] = 510, [1884] = 1884, [1885] = 1885, - [1886] = 92, + [1886] = 1886, [1887] = 1887, - [1888] = 506, + [1888] = 1888, [1889] = 1889, - [1890] = 91, - [1891] = 1891, + [1890] = 1890, + [1891] = 514, [1892] = 1892, [1893] = 1893, [1894] = 1894, [1895] = 1895, [1896] = 1896, [1897] = 1897, - [1898] = 518, - [1899] = 1899, - [1900] = 517, - [1901] = 515, + [1898] = 1898, + [1899] = 94, + [1900] = 1900, + [1901] = 1901, [1902] = 1902, - [1903] = 1903, + [1903] = 515, [1904] = 1904, - [1905] = 428, - [1906] = 91, - [1907] = 92, - [1908] = 94, - [1909] = 92, - [1910] = 93, - [1911] = 1911, - [1912] = 90, - [1913] = 94, - [1914] = 93, - [1915] = 90, + [1905] = 1905, + [1906] = 90, + [1907] = 93, + [1908] = 92, + [1909] = 94, + [1910] = 92, + [1911] = 93, + [1912] = 91, + [1913] = 90, + [1914] = 94, + [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 92, - [1919] = 1919, + [1918] = 94, + [1919] = 94, [1920] = 1920, [1921] = 1921, - [1922] = 92, + [1922] = 1922, [1923] = 1923, - [1924] = 1715, - [1925] = 1734, - [1926] = 1720, - [1927] = 1714, - [1928] = 1778, - [1929] = 1761, - [1930] = 1749, - [1931] = 1850, - [1932] = 1812, - [1933] = 1874, - [1934] = 1796, - [1935] = 1803, - [1936] = 1851, - [1937] = 1799, - [1938] = 1885, - [1939] = 1781, - [1940] = 495, - [1941] = 1870, - [1942] = 260, - [1943] = 1791, - [1944] = 1879, - [1945] = 1878, - [1946] = 1813, - [1947] = 1896, - [1948] = 259, - [1949] = 1884, - [1950] = 1950, - [1951] = 1790, - [1952] = 475, - [1953] = 403, - [1954] = 484, - [1955] = 403, - [1956] = 529, - [1957] = 484, - [1958] = 460, + [1924] = 1740, + [1925] = 1717, + [1926] = 1715, + [1927] = 1737, + [1928] = 1773, + [1929] = 1777, + [1930] = 1766, + [1931] = 1790, + [1932] = 1932, + [1933] = 1796, + [1934] = 1813, + [1935] = 1782, + [1936] = 288, + [1937] = 1800, + [1938] = 1900, + [1939] = 1892, + [1940] = 1876, + [1941] = 494, + [1942] = 1901, + [1943] = 271, + [1944] = 1820, + [1945] = 1793, + [1946] = 1810, + [1947] = 1815, + [1948] = 1792, + [1949] = 1874, + [1950] = 1804, + [1951] = 1814, + [1952] = 395, + [1953] = 475, + [1954] = 529, + [1955] = 455, + [1956] = 475, + [1957] = 455, + [1958] = 477, [1959] = 529, - [1960] = 475, - [1961] = 460, + [1960] = 395, + [1961] = 477, [1962] = 1962, [1963] = 1963, - [1964] = 1962, - [1965] = 249, - [1966] = 1966, - [1967] = 248, - [1968] = 245, - [1969] = 251, - [1970] = 254, - [1971] = 245, - [1972] = 256, - [1973] = 252, - [1974] = 247, - [1975] = 250, - [1976] = 249, - [1977] = 252, - [1978] = 255, - [1979] = 247, - [1980] = 244, - [1981] = 255, - [1982] = 248, - [1983] = 244, - [1984] = 251, - [1985] = 254, - [1986] = 256, - [1987] = 250, - [1988] = 257, - [1989] = 259, - [1990] = 254, + [1964] = 1963, + [1965] = 246, + [1966] = 254, + [1967] = 249, + [1968] = 253, + [1969] = 256, + [1970] = 248, + [1971] = 250, + [1972] = 254, + [1973] = 251, + [1974] = 245, + [1975] = 253, + [1976] = 1976, + [1977] = 247, + [1978] = 242, + [1979] = 242, + [1980] = 251, + [1981] = 246, + [1982] = 249, + [1983] = 250, + [1984] = 245, + [1985] = 248, + [1986] = 247, + [1987] = 256, + [1988] = 395, + [1989] = 251, + [1990] = 455, [1991] = 529, - [1992] = 252, - [1993] = 260, - [1994] = 251, - [1995] = 258, - [1996] = 253, - [1997] = 260, - [1998] = 460, - [1999] = 403, - [2000] = 247, - [2001] = 475, - [2002] = 248, - [2003] = 484, - [2004] = 253, - [2005] = 259, - [2006] = 2006, - [2007] = 256, - [2008] = 257, - [2009] = 258, - [2010] = 249, - [2011] = 292, - [2012] = 1125, - [2013] = 311, - [2014] = 270, - [2015] = 2015, - [2016] = 311, - [2017] = 253, - [2018] = 253, - [2019] = 292, - [2020] = 270, - [2021] = 2021, + [1992] = 245, + [1993] = 252, + [1994] = 288, + [1995] = 256, + [1996] = 258, + [1997] = 253, + [1998] = 246, + [1999] = 257, + [2000] = 254, + [2001] = 258, + [2002] = 475, + [2003] = 288, + [2004] = 271, + [2005] = 247, + [2006] = 271, + [2007] = 257, + [2008] = 2008, + [2009] = 477, + [2010] = 252, + [2011] = 1132, + [2012] = 261, + [2013] = 2013, + [2014] = 261, + [2015] = 259, + [2016] = 259, + [2017] = 291, + [2018] = 2018, + [2019] = 291, + [2020] = 252, + [2021] = 252, [2022] = 2022, - [2023] = 253, - [2024] = 456, - [2025] = 487, - [2026] = 470, - [2027] = 418, - [2028] = 412, - [2029] = 446, - [2030] = 506, - [2031] = 502, - [2032] = 357, - [2033] = 525, - [2034] = 496, - [2035] = 493, - [2036] = 473, - [2037] = 485, - [2038] = 450, - [2039] = 448, - [2040] = 470, - [2041] = 472, - [2042] = 528, - [2043] = 450, - [2044] = 440, - [2045] = 428, - [2046] = 491, - [2047] = 487, - [2048] = 513, - [2049] = 525, - [2050] = 514, - [2051] = 474, - [2052] = 515, - [2053] = 517, - [2054] = 466, - [2055] = 461, - [2056] = 453, - [2057] = 518, - [2058] = 521, - [2059] = 523, - [2060] = 472, - [2061] = 530, - [2062] = 412, - [2063] = 446, - [2064] = 411, - [2065] = 407, - [2066] = 406, + [2023] = 252, + [2024] = 457, + [2025] = 447, + [2026] = 414, + [2027] = 474, + [2028] = 483, + [2029] = 522, + [2030] = 412, + [2031] = 421, + [2032] = 511, + [2033] = 510, + [2034] = 520, + [2035] = 357, + [2036] = 502, + [2037] = 501, + [2038] = 336, + [2039] = 426, + [2040] = 473, + [2041] = 493, + [2042] = 494, + [2043] = 446, + [2044] = 499, + [2045] = 450, + [2046] = 471, + [2047] = 490, + [2048] = 523, + [2049] = 436, + [2050] = 357, + [2051] = 442, + [2052] = 429, + [2053] = 313, + [2054] = 474, + [2055] = 463, + [2056] = 454, + [2057] = 453, + [2058] = 481, + [2059] = 520, + [2060] = 512, + [2061] = 513, + [2062] = 485, + [2063] = 514, + [2064] = 421, + [2065] = 408, + [2066] = 407, [2067] = 405, - [2068] = 359, - [2069] = 528, - [2070] = 312, - [2071] = 392, - [2072] = 391, - [2073] = 491, - [2074] = 368, - [2075] = 469, - [2076] = 495, - [2077] = 471, - [2078] = 469, - [2079] = 341, - [2080] = 358, - [2081] = 462, - [2082] = 348, - [2083] = 468, - [2084] = 467, - [2085] = 356, - [2086] = 466, - [2087] = 461, - [2088] = 453, - [2089] = 468, - [2090] = 428, - [2091] = 440, - [2092] = 411, - [2093] = 400, - [2094] = 407, - [2095] = 406, - [2096] = 405, - [2097] = 408, - [2098] = 2098, - [2099] = 448, - [2100] = 408, - [2101] = 430, - [2102] = 433, + [2068] = 404, + [2069] = 446, + [2070] = 524, + [2071] = 515, + [2072] = 390, + [2073] = 389, + [2074] = 517, + [2075] = 519, + [2076] = 409, + [2077] = 526, + [2078] = 528, + [2079] = 497, + [2080] = 341, + [2081] = 531, + [2082] = 471, + [2083] = 348, + [2084] = 470, + [2085] = 490, + [2086] = 359, + [2087] = 333, + [2088] = 468, + [2089] = 443, + [2090] = 469, + [2091] = 358, + [2092] = 467, + [2093] = 461, + [2094] = 401, + [2095] = 466, + [2096] = 463, + [2097] = 2097, + [2098] = 409, + [2099] = 454, + [2100] = 342, + [2101] = 2101, + [2102] = 431, [2103] = 434, - [2104] = 2104, - [2105] = 455, - [2106] = 467, - [2107] = 459, - [2108] = 485, - [2109] = 493, - [2110] = 496, - [2111] = 502, - [2112] = 506, - [2113] = 478, + [2104] = 435, + [2105] = 453, + [2106] = 456, + [2107] = 505, + [2108] = 460, + [2109] = 494, + [2110] = 429, + [2111] = 442, + [2112] = 334, + [2113] = 427, [2114] = 479, - [2115] = 418, - [2116] = 481, - [2117] = 530, - [2118] = 392, - [2119] = 523, - [2120] = 391, - [2121] = 521, - [2122] = 518, - [2123] = 438, - [2124] = 431, - [2125] = 517, - [2126] = 515, - [2127] = 372, - [2128] = 365, - [2129] = 346, - [2130] = 482, - [2131] = 341, - [2132] = 514, - [2133] = 348, - [2134] = 400, - [2135] = 513, - [2136] = 423, - [2137] = 368, - [2138] = 359, - [2139] = 454, - [2140] = 447, - [2141] = 476, - [2142] = 439, - [2143] = 357, - [2144] = 426, - [2145] = 430, - [2146] = 433, - [2147] = 434, - [2148] = 476, - [2149] = 333, - [2150] = 474, - [2151] = 473, - [2152] = 471, - [2153] = 358, - [2154] = 455, - [2155] = 456, - [2156] = 444, - [2157] = 459, - [2158] = 499, - [2159] = 478, - [2160] = 479, + [2115] = 480, + [2116] = 408, + [2117] = 482, + [2118] = 407, + [2119] = 405, + [2120] = 404, + [2121] = 450, + [2122] = 508, + [2123] = 493, + [2124] = 428, + [2125] = 425, + [2126] = 501, + [2127] = 502, + [2128] = 510, + [2129] = 441, + [2130] = 511, + [2131] = 484, + [2132] = 412, + [2133] = 531, + [2134] = 390, + [2135] = 389, + [2136] = 528, + [2137] = 519, + [2138] = 517, + [2139] = 515, + [2140] = 452, + [2141] = 503, + [2142] = 370, + [2143] = 438, + [2144] = 357, + [2145] = 424, + [2146] = 351, + [2147] = 514, + [2148] = 341, + [2149] = 348, + [2150] = 367, + [2151] = 513, + [2152] = 512, + [2153] = 403, + [2154] = 401, + [2155] = 333, + [2156] = 359, + [2157] = 443, + [2158] = 424, + [2159] = 505, + [2160] = 485, [2161] = 481, - [2162] = 498, - [2163] = 357, - [2164] = 462, - [2165] = 2165, - [2166] = 438, - [2167] = 356, - [2168] = 431, - [2169] = 422, - [2170] = 414, - [2171] = 365, - [2172] = 372, - [2173] = 482, - [2174] = 520, - [2175] = 527, - [2176] = 312, - [2177] = 402, - [2178] = 522, - [2179] = 346, - [2180] = 503, - [2181] = 379, - [2182] = 497, - [2183] = 495, - [2184] = 343, - [2185] = 454, - [2186] = 447, - [2187] = 439, - [2188] = 510, - [2189] = 457, - [2190] = 402, - [2191] = 436, - [2192] = 343, - [2193] = 427, - [2194] = 336, - [2195] = 383, - [2196] = 382, - [2197] = 379, - [2198] = 386, - [2199] = 385, - [2200] = 385, - [2201] = 386, - [2202] = 333, - [2203] = 382, - [2204] = 402, - [2205] = 497, - [2206] = 503, - [2207] = 522, - [2208] = 383, - [2209] = 527, - [2210] = 520, - [2211] = 408, - [2212] = 402, - [2213] = 414, - [2214] = 422, - [2215] = 423, - [2216] = 336, - [2217] = 427, - [2218] = 436, - [2219] = 498, - [2220] = 444, - [2221] = 357, - [2222] = 312, - [2223] = 499, - [2224] = 457, - [2225] = 510, - [2226] = 402, - [2227] = 426, - [2228] = 529, - [2229] = 460, - [2230] = 403, + [2162] = 427, + [2163] = 403, + [2164] = 508, + [2165] = 431, + [2166] = 484, + [2167] = 473, + [2168] = 523, + [2169] = 403, + [2170] = 360, + [2171] = 403, + [2172] = 470, + [2173] = 403, + [2174] = 360, + [2175] = 469, + [2176] = 367, + [2177] = 313, + [2178] = 435, + [2179] = 456, + [2180] = 334, + [2181] = 351, + [2182] = 457, + [2183] = 460, + [2184] = 479, + [2185] = 480, + [2186] = 370, + [2187] = 441, + [2188] = 409, + [2189] = 313, + [2190] = 358, + [2191] = 357, + [2192] = 461, + [2193] = 452, + [2194] = 526, + [2195] = 524, + [2196] = 383, + [2197] = 522, + [2198] = 503, + [2199] = 2199, + [2200] = 483, + [2201] = 497, + [2202] = 380, + [2203] = 379, + [2204] = 482, + [2205] = 434, + [2206] = 499, + [2207] = 386, + [2208] = 387, + [2209] = 413, + [2210] = 386, + [2211] = 342, + [2212] = 447, + [2213] = 428, + [2214] = 466, + [2215] = 467, + [2216] = 468, + [2217] = 387, + [2218] = 425, + [2219] = 438, + [2220] = 414, + [2221] = 379, + [2222] = 380, + [2223] = 383, + [2224] = 413, + [2225] = 336, + [2226] = 426, + [2227] = 436, + [2228] = 395, + [2229] = 455, + [2230] = 529, [2231] = 475, - [2232] = 484, - [2233] = 250, - [2234] = 245, + [2232] = 477, + [2233] = 249, + [2234] = 250, [2235] = 2235, - [2236] = 255, + [2236] = 248, [2237] = 2237, [2238] = 258, [2239] = 257, - [2240] = 259, - [2241] = 259, - [2242] = 402, - [2243] = 260, - [2244] = 259, - [2245] = 260, - [2246] = 260, - [2247] = 292, + [2240] = 2240, + [2241] = 261, + [2242] = 288, + [2243] = 2243, + [2244] = 291, + [2245] = 2245, + [2246] = 2246, + [2247] = 271, [2248] = 2248, [2249] = 2249, - [2250] = 270, + [2250] = 271, [2251] = 2251, - [2252] = 2252, - [2253] = 2253, + [2252] = 271, + [2253] = 288, [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 311, - [2258] = 525, - [2259] = 248, - [2260] = 368, + [2255] = 288, + [2256] = 403, + [2257] = 259, + [2258] = 405, + [2259] = 528, + [2260] = 333, [2261] = 359, - [2262] = 498, - [2263] = 487, - [2264] = 521, - [2265] = 528, - [2266] = 438, - [2267] = 431, - [2268] = 422, - [2269] = 414, - [2270] = 474, - [2271] = 365, - [2272] = 473, - [2273] = 482, - [2274] = 520, - [2275] = 527, - [2276] = 522, - [2277] = 503, - [2278] = 497, - [2279] = 252, - [2280] = 471, - [2281] = 454, - [2282] = 447, - [2283] = 358, - [2284] = 439, - [2285] = 423, - [2286] = 386, - [2287] = 385, - [2288] = 462, - [2289] = 247, - [2290] = 341, - [2291] = 333, - [2292] = 379, - [2293] = 382, - [2294] = 383, - [2295] = 336, - [2296] = 427, - [2297] = 436, - [2298] = 444, - [2299] = 356, - [2300] = 499, - [2301] = 457, - [2302] = 510, - [2303] = 530, - [2304] = 346, - [2305] = 2305, - [2306] = 495, - [2307] = 2307, - [2308] = 518, - [2309] = 479, - [2310] = 478, - [2311] = 2311, - [2312] = 517, - [2313] = 515, - [2314] = 348, - [2315] = 412, - [2316] = 446, - [2317] = 450, - [2318] = 470, - [2319] = 523, - [2320] = 472, - [2321] = 476, - [2322] = 428, - [2323] = 440, - [2324] = 249, - [2325] = 481, - [2326] = 529, - [2327] = 448, - [2328] = 484, - [2329] = 475, - [2330] = 514, - [2331] = 485, - [2332] = 2332, - [2333] = 460, - [2334] = 403, - [2335] = 459, - [2336] = 456, - [2337] = 455, - [2338] = 251, - [2339] = 254, - [2340] = 513, - [2341] = 343, - [2342] = 491, - [2343] = 469, - [2344] = 468, - [2345] = 467, - [2346] = 466, - [2347] = 461, - [2348] = 2348, - [2349] = 453, - [2350] = 434, - [2351] = 493, - [2352] = 496, - [2353] = 502, - [2354] = 506, - [2355] = 411, - [2356] = 407, - [2357] = 406, - [2358] = 433, - [2359] = 405, - [2360] = 430, - [2361] = 426, - [2362] = 256, - [2363] = 372, - [2364] = 402, - [2365] = 400, - [2366] = 392, - [2367] = 357, - [2368] = 391, - [2369] = 418, - [2370] = 245, - [2371] = 250, - [2372] = 249, - [2373] = 252, - [2374] = 248, - [2375] = 251, - [2376] = 247, - [2377] = 254, - [2378] = 2378, - [2379] = 1422, - [2380] = 260, - [2381] = 256, - [2382] = 2382, - [2383] = 259, - [2384] = 1424, - [2385] = 312, - [2386] = 255, - [2387] = 408, + [2262] = 499, + [2263] = 485, + [2264] = 2264, + [2265] = 523, + [2266] = 428, + [2267] = 425, + [2268] = 414, + [2269] = 413, + [2270] = 473, + [2271] = 441, + [2272] = 470, + [2273] = 484, + [2274] = 526, + [2275] = 524, + [2276] = 421, + [2277] = 522, + [2278] = 503, + [2279] = 497, + [2280] = 480, + [2281] = 469, + [2282] = 452, + [2283] = 447, + [2284] = 358, + [2285] = 438, + [2286] = 479, + [2287] = 387, + [2288] = 386, + [2289] = 461, + [2290] = 477, + [2291] = 460, + [2292] = 367, + [2293] = 379, + [2294] = 380, + [2295] = 383, + [2296] = 336, + [2297] = 426, + [2298] = 436, + [2299] = 443, + [2300] = 342, + [2301] = 505, + [2302] = 334, + [2303] = 508, + [2304] = 475, + [2305] = 457, + [2306] = 395, + [2307] = 456, + [2308] = 455, + [2309] = 529, + [2310] = 435, + [2311] = 434, + [2312] = 431, + [2313] = 427, + [2314] = 245, + [2315] = 424, + [2316] = 401, + [2317] = 512, + [2318] = 513, + [2319] = 254, + [2320] = 2320, + [2321] = 514, + [2322] = 515, + [2323] = 517, + [2324] = 246, + [2325] = 253, + [2326] = 519, + [2327] = 482, + [2328] = 494, + [2329] = 348, + [2330] = 531, + [2331] = 2331, + [2332] = 341, + [2333] = 360, + [2334] = 256, + [2335] = 351, + [2336] = 370, + [2337] = 412, + [2338] = 389, + [2339] = 247, + [2340] = 390, + [2341] = 404, + [2342] = 407, + [2343] = 2343, + [2344] = 408, + [2345] = 2345, + [2346] = 511, + [2347] = 510, + [2348] = 502, + [2349] = 251, + [2350] = 501, + [2351] = 453, + [2352] = 454, + [2353] = 463, + [2354] = 466, + [2355] = 467, + [2356] = 468, + [2357] = 490, + [2358] = 446, + [2359] = 471, + [2360] = 357, + [2361] = 493, + [2362] = 450, + [2363] = 520, + [2364] = 403, + [2365] = 442, + [2366] = 429, + [2367] = 483, + [2368] = 481, + [2369] = 474, + [2370] = 253, + [2371] = 1422, + [2372] = 288, + [2373] = 271, + [2374] = 2374, + [2375] = 249, + [2376] = 1420, + [2377] = 313, + [2378] = 248, + [2379] = 409, + [2380] = 256, + [2381] = 246, + [2382] = 251, + [2383] = 250, + [2384] = 254, + [2385] = 247, + [2386] = 2386, + [2387] = 245, [2388] = 2388, - [2389] = 258, - [2390] = 257, - [2391] = 292, - [2392] = 312, - [2393] = 311, - [2394] = 408, - [2395] = 270, - [2396] = 427, - [2397] = 423, - [2398] = 407, - [2399] = 472, - [2400] = 358, - [2401] = 430, - [2402] = 476, - [2403] = 426, - [2404] = 348, - [2405] = 2405, - [2406] = 431, - [2407] = 510, - [2408] = 411, - [2409] = 457, - [2410] = 422, - [2411] = 528, - [2412] = 474, - [2413] = 368, - [2414] = 341, - [2415] = 412, - [2416] = 525, - [2417] = 499, - [2418] = 518, - [2419] = 2405, - [2420] = 530, - [2421] = 462, - [2422] = 414, - [2423] = 343, - [2424] = 444, - [2425] = 2405, - [2426] = 2405, - [2427] = 482, - [2428] = 440, - [2429] = 2405, - [2430] = 400, - [2431] = 2405, - [2432] = 356, - [2433] = 481, - [2434] = 446, - [2435] = 470, - [2436] = 2405, - [2437] = 365, - [2438] = 459, - [2439] = 471, - [2440] = 2405, - [2441] = 2405, - [2442] = 514, - [2443] = 493, - [2444] = 436, - [2445] = 479, - [2446] = 346, - [2447] = 402, - [2448] = 456, - [2449] = 372, - [2450] = 455, - [2451] = 527, - [2452] = 448, - [2453] = 418, - [2454] = 359, - [2455] = 478, - [2456] = 496, - [2457] = 521, - [2458] = 2405, - [2459] = 502, - [2460] = 522, - [2461] = 517, - [2462] = 520, - [2463] = 503, - [2464] = 523, - [2465] = 2405, - [2466] = 438, - [2467] = 497, - [2468] = 515, - [2469] = 433, - [2470] = 428, - [2471] = 2405, - [2472] = 336, - [2473] = 473, - [2474] = 498, - [2475] = 495, - [2476] = 453, - [2477] = 485, - [2478] = 461, - [2479] = 506, - [2480] = 391, - [2481] = 466, - [2482] = 392, + [2389] = 257, + [2390] = 258, + [2391] = 409, + [2392] = 259, + [2393] = 261, + [2394] = 313, + [2395] = 291, + [2396] = 2396, + [2397] = 387, + [2398] = 359, + [2399] = 434, + [2400] = 431, + [2401] = 427, + [2402] = 348, + [2403] = 424, + [2404] = 341, + [2405] = 531, + [2406] = 360, + [2407] = 401, + [2408] = 2396, + [2409] = 351, + [2410] = 333, + [2411] = 2396, + [2412] = 460, + [2413] = 480, + [2414] = 457, + [2415] = 2396, + [2416] = 429, + [2417] = 442, + [2418] = 461, + [2419] = 370, + [2420] = 456, + [2421] = 479, + [2422] = 469, + [2423] = 412, + [2424] = 389, + [2425] = 519, + [2426] = 390, + [2427] = 499, + [2428] = 404, + [2429] = 405, + [2430] = 470, + [2431] = 407, + [2432] = 408, + [2433] = 428, + [2434] = 2396, + [2435] = 450, + [2436] = 425, + [2437] = 414, + [2438] = 413, + [2439] = 2396, + [2440] = 482, + [2441] = 528, + [2442] = 441, + [2443] = 2396, + [2444] = 508, + [2445] = 493, + [2446] = 484, + [2447] = 403, + [2448] = 421, + [2449] = 526, + [2450] = 524, + [2451] = 446, + [2452] = 2396, + [2453] = 342, + [2454] = 2396, + [2455] = 515, + [2456] = 336, + [2457] = 522, + [2458] = 512, + [2459] = 473, + [2460] = 2396, + [2461] = 503, + [2462] = 471, + [2463] = 497, + [2464] = 494, + [2465] = 523, + [2466] = 474, + [2467] = 453, + [2468] = 454, + [2469] = 334, + [2470] = 481, + [2471] = 463, + [2472] = 466, + [2473] = 483, + [2474] = 467, + [2475] = 468, + [2476] = 452, + [2477] = 520, + [2478] = 505, + [2479] = 2396, + [2480] = 443, + [2481] = 447, + [2482] = 436, [2483] = 513, - [2484] = 491, - [2485] = 467, - [2486] = 383, - [2487] = 382, - [2488] = 386, - [2489] = 379, - [2490] = 333, - [2491] = 2405, - [2492] = 385, - [2493] = 468, - [2494] = 434, - [2495] = 357, - [2496] = 439, - [2497] = 450, - [2498] = 487, - [2499] = 406, - [2500] = 447, - [2501] = 469, - [2502] = 454, - [2503] = 405, - [2504] = 249, - [2505] = 247, - [2506] = 251, - [2507] = 93, - [2508] = 94, - [2509] = 248, - [2510] = 252, - [2511] = 90, - [2512] = 255, - [2513] = 254, - [2514] = 250, - [2515] = 245, - [2516] = 252, - [2517] = 256, - [2518] = 250, - [2519] = 247, - [2520] = 252, - [2521] = 249, - [2522] = 248, - [2523] = 245, - [2524] = 1112, - [2525] = 251, - [2526] = 254, - [2527] = 402, - [2528] = 254, - [2529] = 256, - [2530] = 312, - [2531] = 402, - [2532] = 1142, - [2533] = 1141, - [2534] = 247, - [2535] = 249, - [2536] = 248, - [2537] = 251, - [2538] = 408, - [2539] = 255, - [2540] = 256, - [2541] = 251, - [2542] = 248, - [2543] = 357, + [2484] = 501, + [2485] = 502, + [2486] = 2396, + [2487] = 438, + [2488] = 358, + [2489] = 514, + [2490] = 357, + [2491] = 426, + [2492] = 367, + [2493] = 510, + [2494] = 386, + [2495] = 511, + [2496] = 383, + [2497] = 380, + [2498] = 485, + [2499] = 435, + [2500] = 490, + [2501] = 379, + [2502] = 2396, + [2503] = 517, + [2504] = 246, + [2505] = 251, + [2506] = 254, + [2507] = 245, + [2508] = 247, + [2509] = 256, + [2510] = 253, + [2511] = 245, + [2512] = 246, + [2513] = 249, + [2514] = 251, + [2515] = 1141, + [2516] = 409, + [2517] = 254, + [2518] = 249, + [2519] = 403, + [2520] = 248, + [2521] = 313, + [2522] = 247, + [2523] = 256, + [2524] = 403, + [2525] = 1112, + [2526] = 250, + [2527] = 1140, + [2528] = 248, + [2529] = 90, + [2530] = 253, + [2531] = 251, + [2532] = 93, + [2533] = 92, + [2534] = 246, + [2535] = 250, + [2536] = 253, + [2537] = 256, + [2538] = 247, + [2539] = 254, + [2540] = 245, + [2541] = 245, + [2542] = 251, + [2543] = 245, [2544] = 247, - [2545] = 259, + [2545] = 271, [2546] = 256, - [2547] = 252, - [2548] = 260, - [2549] = 247, - [2550] = 312, - [2551] = 1119, - [2552] = 254, - [2553] = 258, - [2554] = 408, - [2555] = 260, - [2556] = 248, - [2557] = 1119, - [2558] = 259, - [2559] = 249, - [2560] = 252, - [2561] = 252, - [2562] = 254, - [2563] = 251, - [2564] = 2564, - [2565] = 257, - [2566] = 258, - [2567] = 256, - [2568] = 1125, - [2569] = 249, - [2570] = 254, - [2571] = 251, - [2572] = 256, - [2573] = 257, - [2574] = 247, - [2575] = 249, - [2576] = 248, + [2547] = 253, + [2548] = 357, + [2549] = 257, + [2550] = 258, + [2551] = 2551, + [2552] = 246, + [2553] = 257, + [2554] = 254, + [2555] = 256, + [2556] = 258, + [2557] = 254, + [2558] = 1119, + [2559] = 1132, + [2560] = 253, + [2561] = 409, + [2562] = 251, + [2563] = 246, + [2564] = 313, + [2565] = 1119, + [2566] = 246, + [2567] = 253, + [2568] = 256, + [2569] = 288, + [2570] = 247, + [2571] = 288, + [2572] = 271, + [2573] = 247, + [2574] = 251, + [2575] = 254, + [2576] = 245, [2577] = 2577, - [2578] = 253, - [2579] = 292, - [2580] = 2580, - [2581] = 402, + [2578] = 2578, + [2579] = 2579, + [2580] = 252, + [2581] = 2577, [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2577, + [2583] = 2577, + [2584] = 2582, + [2585] = 259, [2586] = 2577, - [2587] = 253, - [2588] = 2580, - [2589] = 292, + [2587] = 252, + [2588] = 2582, + [2589] = 291, [2590] = 2577, - [2591] = 270, - [2592] = 2580, - [2593] = 2580, - [2594] = 2580, - [2595] = 2580, - [2596] = 2577, - [2597] = 2580, - [2598] = 253, - [2599] = 2577, + [2591] = 261, + [2592] = 2582, + [2593] = 2582, + [2594] = 2577, + [2595] = 2595, + [2596] = 2596, + [2597] = 2577, + [2598] = 252, + [2599] = 409, [2600] = 2577, - [2601] = 2580, + [2601] = 259, [2602] = 2577, - [2603] = 2577, - [2604] = 2577, - [2605] = 2580, - [2606] = 311, - [2607] = 402, - [2608] = 311, - [2609] = 2580, + [2603] = 2582, + [2604] = 2582, + [2605] = 2582, + [2606] = 313, + [2607] = 2582, + [2608] = 2577, + [2609] = 291, [2610] = 2577, - [2611] = 2577, - [2612] = 2580, - [2613] = 1125, + [2611] = 261, + [2612] = 2577, + [2613] = 2582, [2614] = 2577, [2615] = 2615, - [2616] = 408, - [2617] = 312, - [2618] = 2618, - [2619] = 2580, - [2620] = 270, - [2621] = 391, - [2622] = 506, - [2623] = 386, - [2624] = 385, - [2625] = 333, - [2626] = 379, - [2627] = 382, - [2628] = 383, - [2629] = 336, - [2630] = 427, - [2631] = 436, - [2632] = 444, - [2633] = 499, - [2634] = 457, - [2635] = 510, - [2636] = 2636, - [2637] = 312, - [2638] = 2638, - [2639] = 450, - [2640] = 472, - [2641] = 2641, - [2642] = 2636, + [2616] = 2582, + [2617] = 403, + [2618] = 403, + [2619] = 2582, + [2620] = 1132, + [2621] = 389, + [2622] = 408, + [2623] = 447, + [2624] = 438, + [2625] = 387, + [2626] = 386, + [2627] = 367, + [2628] = 379, + [2629] = 380, + [2630] = 383, + [2631] = 336, + [2632] = 426, + [2633] = 436, + [2634] = 443, + [2635] = 505, + [2636] = 334, + [2637] = 508, + [2638] = 313, + [2639] = 2639, + [2640] = 2640, + [2641] = 471, + [2642] = 481, [2643] = 2643, [2644] = 2644, - [2645] = 2636, - [2646] = 469, - [2647] = 468, - [2648] = 467, - [2649] = 372, - [2650] = 2636, - [2651] = 346, - [2652] = 343, - [2653] = 2638, - [2654] = 2641, - [2655] = 408, - [2656] = 423, - [2657] = 426, - [2658] = 2658, - [2659] = 498, - [2660] = 422, - [2661] = 414, - [2662] = 520, - [2663] = 527, - [2664] = 522, - [2665] = 503, - [2666] = 497, - [2667] = 454, - [2668] = 447, - [2669] = 439, - [2670] = 497, - [2671] = 386, - [2672] = 385, - [2673] = 503, + [2645] = 2639, + [2646] = 2640, + [2647] = 2640, + [2648] = 468, + [2649] = 467, + [2650] = 466, + [2651] = 370, + [2652] = 2640, + [2653] = 351, + [2654] = 360, + [2655] = 2655, + [2656] = 2643, + [2657] = 409, + [2658] = 424, + [2659] = 427, + [2660] = 2660, + [2661] = 499, + [2662] = 414, + [2663] = 413, + [2664] = 526, + [2665] = 524, + [2666] = 522, + [2667] = 503, + [2668] = 497, + [2669] = 497, + [2670] = 2639, + [2671] = 503, + [2672] = 387, + [2673] = 386, [2674] = 522, - [2675] = 527, - [2676] = 379, - [2677] = 382, - [2678] = 383, - [2679] = 336, - [2680] = 427, - [2681] = 436, - [2682] = 520, - [2683] = 457, - [2684] = 510, - [2685] = 482, - [2686] = 2686, - [2687] = 2636, - [2688] = 2643, - [2689] = 365, - [2690] = 414, - [2691] = 422, - [2692] = 528, - [2693] = 312, - [2694] = 431, - [2695] = 438, - [2696] = 498, - [2697] = 2641, - [2698] = 481, - [2699] = 2636, - [2700] = 2643, - [2701] = 479, - [2702] = 2643, - [2703] = 408, - [2704] = 478, - [2705] = 459, - [2706] = 456, - [2707] = 455, - [2708] = 2638, - [2709] = 2636, - [2710] = 260, - [2711] = 434, - [2712] = 433, - [2713] = 430, - [2714] = 426, - [2715] = 423, - [2716] = 408, - [2717] = 400, - [2718] = 2638, - [2719] = 2636, - [2720] = 2636, + [2675] = 524, + [2676] = 526, + [2677] = 379, + [2678] = 380, + [2679] = 383, + [2680] = 336, + [2681] = 426, + [2682] = 436, + [2683] = 484, + [2684] = 334, + [2685] = 508, + [2686] = 441, + [2687] = 2687, + [2688] = 2640, + [2689] = 2644, + [2690] = 413, + [2691] = 414, + [2692] = 425, + [2693] = 523, + [2694] = 313, + [2695] = 428, + [2696] = 499, + [2697] = 482, + [2698] = 2643, + [2699] = 480, + [2700] = 2640, + [2701] = 2644, + [2702] = 479, + [2703] = 2644, + [2704] = 2640, + [2705] = 460, + [2706] = 457, + [2707] = 456, + [2708] = 409, + [2709] = 435, + [2710] = 2640, + [2711] = 288, + [2712] = 434, + [2713] = 431, + [2714] = 427, + [2715] = 424, + [2716] = 409, + [2717] = 401, + [2718] = 2639, + [2719] = 2639, + [2720] = 2640, [2721] = 348, - [2722] = 528, - [2723] = 341, - [2724] = 259, - [2725] = 2641, - [2726] = 343, - [2727] = 346, - [2728] = 2636, - [2729] = 372, - [2730] = 391, - [2731] = 392, - [2732] = 405, - [2733] = 495, - [2734] = 406, + [2722] = 341, + [2723] = 523, + [2724] = 360, + [2725] = 271, + [2726] = 2640, + [2727] = 351, + [2728] = 2643, + [2729] = 370, + [2730] = 389, + [2731] = 390, + [2732] = 404, + [2733] = 405, + [2734] = 494, [2735] = 407, - [2736] = 411, + [2736] = 408, [2737] = 453, - [2738] = 461, - [2739] = 466, - [2740] = 467, - [2741] = 468, - [2742] = 2643, - [2743] = 2636, - [2744] = 2744, - [2745] = 469, - [2746] = 428, - [2747] = 440, - [2748] = 312, - [2749] = 258, - [2750] = 257, - [2751] = 448, - [2752] = 2641, - [2753] = 491, - [2754] = 2638, + [2738] = 454, + [2739] = 463, + [2740] = 466, + [2741] = 467, + [2742] = 468, + [2743] = 2644, + [2744] = 2640, + [2745] = 2745, + [2746] = 258, + [2747] = 429, + [2748] = 442, + [2749] = 313, + [2750] = 2639, + [2751] = 490, + [2752] = 450, + [2753] = 2643, + [2754] = 257, [2755] = 2755, - [2756] = 485, - [2757] = 253, - [2758] = 2638, - [2759] = 493, - [2760] = 496, + [2756] = 252, + [2757] = 493, + [2758] = 2640, + [2759] = 2643, + [2760] = 501, [2761] = 502, - [2762] = 525, - [2763] = 418, - [2764] = 2636, - [2765] = 2641, - [2766] = 530, - [2767] = 2641, - [2768] = 523, - [2769] = 521, - [2770] = 518, + [2762] = 510, + [2763] = 511, + [2764] = 412, + [2765] = 2643, + [2766] = 2640, + [2767] = 531, + [2768] = 2639, + [2769] = 528, + [2770] = 519, [2771] = 517, [2772] = 515, - [2773] = 2638, - [2774] = 514, + [2773] = 514, + [2774] = 2644, [2775] = 513, - [2776] = 2643, - [2777] = 2636, - [2778] = 525, - [2779] = 2643, - [2780] = 368, - [2781] = 359, - [2782] = 487, - [2783] = 251, - [2784] = 476, - [2785] = 474, + [2776] = 512, + [2777] = 2644, + [2778] = 520, + [2779] = 1133, + [2780] = 2639, + [2781] = 333, + [2782] = 359, + [2783] = 485, + [2784] = 483, + [2785] = 481, [2786] = 473, - [2787] = 495, - [2788] = 471, - [2789] = 358, - [2790] = 472, - [2791] = 462, - [2792] = 470, - [2793] = 450, - [2794] = 356, - [2795] = 444, - [2796] = 2638, - [2797] = 2638, - [2798] = 2798, - [2799] = 256, - [2800] = 254, - [2801] = 446, - [2802] = 412, - [2803] = 499, - [2804] = 356, - [2805] = 476, - [2806] = 2643, - [2807] = 333, - [2808] = 462, - [2809] = 439, + [2787] = 470, + [2788] = 494, + [2789] = 469, + [2790] = 358, + [2791] = 474, + [2792] = 461, + [2793] = 471, + [2794] = 2644, + [2795] = 342, + [2796] = 2639, + [2797] = 367, + [2798] = 446, + [2799] = 452, + [2800] = 2800, + [2801] = 245, + [2802] = 421, + [2803] = 505, + [2804] = 342, + [2805] = 443, + [2806] = 247, + [2807] = 256, + [2808] = 461, + [2809] = 438, [2810] = 358, [2811] = 447, - [2812] = 454, - [2813] = 471, - [2814] = 2638, - [2815] = 482, - [2816] = 473, - [2817] = 365, - [2818] = 474, - [2819] = 431, - [2820] = 438, - [2821] = 487, + [2812] = 452, + [2813] = 469, + [2814] = 2639, + [2815] = 484, + [2816] = 470, + [2817] = 441, + [2818] = 473, + [2819] = 425, + [2820] = 428, + [2821] = 485, [2822] = 359, - [2823] = 368, - [2824] = 481, - [2825] = 479, - [2826] = 478, - [2827] = 459, - [2828] = 357, - [2829] = 456, - [2830] = 402, - [2831] = 455, - [2832] = 408, - [2833] = 2833, - [2834] = 2834, - [2835] = 434, - [2836] = 433, - [2837] = 430, - [2838] = 400, - [2839] = 412, - [2840] = 312, - [2841] = 513, - [2842] = 514, - [2843] = 2641, - [2844] = 515, - [2845] = 517, - [2846] = 518, - [2847] = 521, - [2848] = 523, + [2823] = 333, + [2824] = 482, + [2825] = 480, + [2826] = 479, + [2827] = 460, + [2828] = 457, + [2829] = 357, + [2830] = 456, + [2831] = 403, + [2832] = 2832, + [2833] = 409, + [2834] = 435, + [2835] = 2835, + [2836] = 434, + [2837] = 431, + [2838] = 401, + [2839] = 2643, + [2840] = 512, + [2841] = 313, + [2842] = 513, + [2843] = 2843, + [2844] = 514, + [2845] = 515, + [2846] = 517, + [2847] = 519, + [2848] = 528, [2849] = 348, - [2850] = 402, - [2851] = 402, - [2852] = 402, - [2853] = 2853, - [2854] = 530, + [2850] = 531, + [2851] = 403, + [2852] = 403, + [2853] = 403, + [2854] = 421, [2855] = 341, - [2856] = 446, - [2857] = 418, - [2858] = 392, - [2859] = 405, - [2860] = 249, - [2861] = 406, + [2856] = 246, + [2857] = 412, + [2858] = 390, + [2859] = 404, + [2860] = 405, + [2861] = 253, [2862] = 407, - [2863] = 411, - [2864] = 2583, - [2865] = 248, - [2866] = 251, - [2867] = 254, - [2868] = 2641, - [2869] = 2869, - [2870] = 256, - [2871] = 2641, - [2872] = 506, - [2873] = 2641, - [2874] = 2643, - [2875] = 502, - [2876] = 2643, - [2877] = 496, - [2878] = 2638, - [2879] = 2638, - [2880] = 493, + [2863] = 256, + [2864] = 511, + [2865] = 2615, + [2866] = 247, + [2867] = 2643, + [2868] = 2868, + [2869] = 2643, + [2870] = 245, + [2871] = 2644, + [2872] = 2643, + [2873] = 510, + [2874] = 2639, + [2875] = 2644, + [2876] = 502, + [2877] = 446, + [2878] = 501, + [2879] = 2639, + [2880] = 474, [2881] = 453, - [2882] = 461, - [2883] = 466, - [2884] = 2643, - [2885] = 470, - [2886] = 2638, - [2887] = 428, - [2888] = 1133, - [2889] = 248, - [2890] = 249, - [2891] = 440, - [2892] = 252, - [2893] = 491, - [2894] = 247, - [2895] = 485, - [2896] = 2638, - [2897] = 2641, - [2898] = 247, - [2899] = 252, - [2900] = 2638, + [2882] = 454, + [2883] = 463, + [2884] = 483, + [2885] = 2644, + [2886] = 2639, + [2887] = 253, + [2888] = 429, + [2889] = 442, + [2890] = 246, + [2891] = 520, + [2892] = 251, + [2893] = 2644, + [2894] = 2639, + [2895] = 490, + [2896] = 251, + [2897] = 493, + [2898] = 254, + [2899] = 2639, + [2900] = 254, [2901] = 2643, - [2902] = 448, + [2902] = 450, [2903] = 2903, - [2904] = 1687, - [2905] = 2903, - [2906] = 2903, - [2907] = 2903, - [2908] = 2908, - [2909] = 2903, - [2910] = 2903, - [2911] = 2911, - [2912] = 2903, - [2913] = 2903, - [2914] = 2903, - [2915] = 2903, - [2916] = 2908, - [2917] = 2903, - [2918] = 2918, - [2919] = 2908, - [2920] = 2903, - [2921] = 2903, - [2922] = 270, - [2923] = 2923, - [2924] = 2908, - [2925] = 357, - [2926] = 311, - [2927] = 2015, - [2928] = 2928, + [2904] = 2904, + [2905] = 2905, + [2906] = 2904, + [2907] = 2904, + [2908] = 1688, + [2909] = 2909, + [2910] = 2910, + [2911] = 2904, + [2912] = 259, + [2913] = 2904, + [2914] = 2904, + [2915] = 2904, + [2916] = 2916, + [2917] = 2910, + [2918] = 261, + [2919] = 357, + [2920] = 2904, + [2921] = 2910, + [2922] = 2904, + [2923] = 2904, + [2924] = 2904, + [2925] = 2910, + [2926] = 2013, + [2927] = 2904, + [2928] = 2904, [2929] = 2929, - [2930] = 472, - [2931] = 527, - [2932] = 2932, - [2933] = 2932, - [2934] = 2932, - [2935] = 93, - [2936] = 450, - [2937] = 2932, - [2938] = 2932, - [2939] = 468, + [2930] = 2930, + [2931] = 2931, + [2932] = 468, + [2933] = 2930, + [2934] = 2930, + [2935] = 481, + [2936] = 2235, + [2937] = 467, + [2938] = 92, + [2939] = 466, [2940] = 93, - [2941] = 2235, - [2942] = 2932, - [2943] = 2932, - [2944] = 467, - [2945] = 2932, - [2946] = 372, - [2947] = 90, - [2948] = 94, - [2949] = 2932, - [2950] = 346, - [2951] = 2932, - [2952] = 343, - [2953] = 2953, - [2954] = 2932, - [2955] = 520, - [2956] = 426, - [2957] = 423, - [2958] = 510, - [2959] = 94, - [2960] = 495, - [2961] = 457, - [2962] = 436, - [2963] = 427, - [2964] = 336, - [2965] = 2932, - [2966] = 90, - [2967] = 383, - [2968] = 382, - [2969] = 379, - [2970] = 385, - [2971] = 386, - [2972] = 469, - [2973] = 2932, - [2974] = 497, - [2975] = 2975, - [2976] = 503, - [2977] = 522, - [2978] = 414, - [2979] = 422, - [2980] = 498, + [2941] = 93, + [2942] = 360, + [2943] = 2930, + [2944] = 2930, + [2945] = 2930, + [2946] = 2930, + [2947] = 370, + [2948] = 2948, + [2949] = 494, + [2950] = 2930, + [2951] = 2930, + [2952] = 424, + [2953] = 90, + [2954] = 471, + [2955] = 427, + [2956] = 508, + [2957] = 413, + [2958] = 2930, + [2959] = 90, + [2960] = 2930, + [2961] = 526, + [2962] = 351, + [2963] = 92, + [2964] = 524, + [2965] = 414, + [2966] = 334, + [2967] = 2930, + [2968] = 436, + [2969] = 426, + [2970] = 336, + [2971] = 383, + [2972] = 499, + [2973] = 380, + [2974] = 2930, + [2975] = 379, + [2976] = 386, + [2977] = 387, + [2978] = 497, + [2979] = 503, + [2980] = 522, [2981] = 1693, - [2982] = 1694, - [2983] = 1693, - [2984] = 1694, - [2985] = 1686, - [2986] = 2986, - [2987] = 1694, + [2982] = 1693, + [2983] = 2983, + [2984] = 1692, + [2985] = 1692, + [2986] = 1686, + [2987] = 1686, [2988] = 2988, - [2989] = 1693, - [2990] = 2986, - [2991] = 1693, - [2992] = 1686, - [2993] = 2988, - [2994] = 1693, - [2995] = 1686, - [2996] = 1694, - [2997] = 2986, - [2998] = 2988, - [2999] = 1694, - [3000] = 2988, - [3001] = 3001, - [3002] = 2988, - [3003] = 2986, - [3004] = 3004, - [3005] = 2986, - [3006] = 1693, - [3007] = 1694, - [3008] = 1686, - [3009] = 1693, - [3010] = 1686, - [3011] = 1693, - [3012] = 1694, - [3013] = 1686, - [3014] = 1694, + [2989] = 1692, + [2990] = 1693, + [2991] = 2991, + [2992] = 2983, + [2993] = 1693, + [2994] = 1692, + [2995] = 2983, + [2996] = 2991, + [2997] = 1686, + [2998] = 2991, + [2999] = 2999, + [3000] = 2983, + [3001] = 1686, + [3002] = 1686, + [3003] = 1692, + [3004] = 1686, + [3005] = 1692, + [3006] = 1686, + [3007] = 1692, + [3008] = 1693, + [3009] = 2983, + [3010] = 1693, + [3011] = 2991, + [3012] = 1693, + [3013] = 1692, + [3014] = 1686, [3015] = 1686, - [3016] = 3016, - [3017] = 1693, - [3018] = 1686, + [3016] = 1692, + [3017] = 1686, + [3018] = 1692, [3019] = 3019, - [3020] = 1693, - [3021] = 1686, + [3020] = 1692, + [3021] = 1693, [3022] = 1686, - [3023] = 1693, - [3024] = 1694, - [3025] = 2988, - [3026] = 2986, - [3027] = 1694, - [3028] = 2986, - [3029] = 2988, - [3030] = 1693, - [3031] = 1686, - [3032] = 1694, - [3033] = 1686, - [3034] = 1686, + [3023] = 1686, + [3024] = 1692, + [3025] = 1693, + [3026] = 2983, + [3027] = 1693, + [3028] = 2991, + [3029] = 2991, + [3030] = 1692, + [3031] = 1693, + [3032] = 2983, + [3033] = 3033, + [3034] = 2991, [3035] = 1693, - [3036] = 1694, - [3037] = 2986, - [3038] = 2988, - [3039] = 1686, - [3040] = 1693, - [3041] = 1694, - [3042] = 1694, - [3043] = 2986, - [3044] = 2988, - [3045] = 1693, + [3036] = 1686, + [3037] = 1692, + [3038] = 1686, + [3039] = 1693, + [3040] = 1686, + [3041] = 1692, + [3042] = 1693, + [3043] = 1693, + [3044] = 2983, + [3045] = 2983, [3046] = 1686, - [3047] = 2988, - [3048] = 2986, - [3049] = 2986, - [3050] = 1686, - [3051] = 1694, - [3052] = 1693, - [3053] = 1694, - [3054] = 1694, - [3055] = 1693, - [3056] = 2988, - [3057] = 1686, - [3058] = 2988, - [3059] = 2986, + [3047] = 2983, + [3048] = 2991, + [3049] = 2991, + [3050] = 2983, + [3051] = 2983, + [3052] = 2991, + [3053] = 1693, + [3054] = 2991, + [3055] = 1686, + [3056] = 1692, + [3057] = 2991, + [3058] = 1692, + [3059] = 1693, [3060] = 3060, [3061] = 3060, [3062] = 3062, [3063] = 3062, [3064] = 3064, - [3065] = 3064, - [3066] = 3062, - [3067] = 1921, - [3068] = 3064, - [3069] = 3069, - [3070] = 3064, - [3071] = 3071, - [3072] = 3062, - [3073] = 3064, + [3065] = 3062, + [3066] = 3066, + [3067] = 3066, + [3068] = 3068, + [3069] = 3066, + [3070] = 3062, + [3071] = 1916, + [3072] = 3066, + [3073] = 3073, [3074] = 3074, - [3075] = 3064, - [3076] = 3076, - [3077] = 3064, - [3078] = 3078, - [3079] = 3064, - [3080] = 3080, - [3081] = 3064, - [3082] = 3082, - [3083] = 3064, - [3084] = 3064, - [3085] = 3085, - [3086] = 3064, - [3087] = 3062, - [3088] = 3062, - [3089] = 3064, - [3090] = 3062, + [3075] = 3066, + [3076] = 3066, + [3077] = 3066, + [3078] = 3066, + [3079] = 3066, + [3080] = 3062, + [3081] = 3062, + [3082] = 3066, + [3083] = 3062, + [3084] = 3084, + [3085] = 3062, + [3086] = 3062, + [3087] = 3066, + [3088] = 3066, + [3089] = 3066, + [3090] = 3090, [3091] = 3062, - [3092] = 3062, - [3093] = 3062, + [3092] = 3092, + [3093] = 3066, [3094] = 3062, [3095] = 3062, - [3096] = 3064, - [3097] = 3097, + [3096] = 3096, + [3097] = 3066, [3098] = 3062, - [3099] = 3064, + [3099] = 3099, [3100] = 3062, [3101] = 3062, [3102] = 3102, @@ -6544,399 +6537,399 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3104] = 3104, [3105] = 3105, [3106] = 3106, - [3107] = 3105, - [3108] = 3104, - [3109] = 3102, - [3110] = 3106, - [3111] = 3111, - [3112] = 3103, - [3113] = 3102, + [3107] = 3107, + [3108] = 3108, + [3109] = 3106, + [3110] = 3110, + [3111] = 3107, + [3112] = 3112, + [3113] = 3112, [3114] = 3114, - [3115] = 3115, + [3115] = 3107, [3116] = 3116, - [3117] = 3103, - [3118] = 3104, - [3119] = 3106, - [3120] = 3115, - [3121] = 3121, - [3122] = 3111, - [3123] = 3102, - [3124] = 3124, - [3125] = 3116, - [3126] = 3103, + [3117] = 3112, + [3118] = 3105, + [3119] = 3107, + [3120] = 3102, + [3121] = 3106, + [3122] = 3105, + [3123] = 3105, + [3124] = 3110, + [3125] = 3104, + [3126] = 3108, [3127] = 3127, - [3128] = 3114, - [3129] = 3111, - [3130] = 3106, - [3131] = 3115, - [3132] = 3104, - [3133] = 3105, - [3134] = 3134, + [3128] = 3102, + [3129] = 3129, + [3130] = 3116, + [3131] = 3102, + [3132] = 3129, + [3133] = 3108, + [3134] = 3103, [3135] = 3135, - [3136] = 3136, - [3137] = 3127, - [3138] = 3121, - [3139] = 3124, - [3140] = 3111, - [3141] = 3116, - [3142] = 3103, - [3143] = 3114, + [3136] = 3127, + [3137] = 3137, + [3138] = 3127, + [3139] = 3110, + [3140] = 3129, + [3141] = 3112, + [3142] = 3129, + [3143] = 3104, [3144] = 3116, - [3145] = 3121, - [3146] = 3115, - [3147] = 3114, - [3148] = 3148, - [3149] = 3135, - [3150] = 3127, - [3151] = 3116, - [3152] = 3103, - [3153] = 3111, - [3154] = 3124, - [3155] = 3102, - [3156] = 3136, - [3157] = 3104, - [3158] = 3105, - [3159] = 3121, - [3160] = 3114, - [3161] = 3121, - [3162] = 3136, - [3163] = 3124, - [3164] = 3135, - [3165] = 3102, - [3166] = 3114, - [3167] = 3121, - [3168] = 3115, - [3169] = 3124, - [3170] = 3135, - [3171] = 3136, - [3172] = 3127, - [3173] = 3121, - [3174] = 3136, + [3145] = 3127, + [3146] = 3137, + [3147] = 3137, + [3148] = 3116, + [3149] = 3149, + [3150] = 3137, + [3151] = 3108, + [3152] = 3105, + [3153] = 3107, + [3154] = 3135, + [3155] = 3110, + [3156] = 3104, + [3157] = 3116, + [3158] = 3103, + [3159] = 3110, + [3160] = 3106, + [3161] = 3102, + [3162] = 3102, + [3163] = 3135, + [3164] = 3103, + [3165] = 3103, + [3166] = 3104, + [3167] = 3103, + [3168] = 3103, + [3169] = 3104, + [3170] = 3107, + [3171] = 3116, + [3172] = 3103, + [3173] = 3129, + [3174] = 3174, [3175] = 3135, - [3176] = 3114, - [3177] = 3106, - [3178] = 3121, - [3179] = 3105, - [3180] = 3105, - [3181] = 3127, - [3182] = 3105, - [3183] = 3102, - [3184] = 3104, - [3185] = 3111, - [3186] = 3104, - [3187] = 3135, - [3188] = 3104, - [3189] = 3116, - [3190] = 3136, - [3191] = 3114, - [3192] = 3124, + [3176] = 3104, + [3177] = 3137, + [3178] = 3110, + [3179] = 3102, + [3180] = 3180, + [3181] = 3106, + [3182] = 3135, + [3183] = 3127, + [3184] = 3102, + [3185] = 3107, + [3186] = 3135, + [3187] = 3116, + [3188] = 3103, + [3189] = 3137, + [3190] = 3116, + [3191] = 3106, + [3192] = 3105, [3193] = 3102, - [3194] = 3194, - [3195] = 3111, - [3196] = 3196, - [3197] = 3135, - [3198] = 3136, - [3199] = 3115, - [3200] = 3127, - [3201] = 3102, - [3202] = 3106, - [3203] = 3203, - [3204] = 3124, - [3205] = 3121, + [3194] = 3108, + [3195] = 3135, + [3196] = 3112, + [3197] = 3106, + [3198] = 3112, + [3199] = 3104, + [3200] = 3112, + [3201] = 3129, + [3202] = 3202, + [3203] = 3106, + [3204] = 3108, + [3205] = 3105, [3206] = 3127, - [3207] = 3116, - [3208] = 3124, - [3209] = 3203, - [3210] = 3114, - [3211] = 3124, - [3212] = 3124, - [3213] = 3121, - [3214] = 3127, - [3215] = 3114, - [3216] = 3121, - [3217] = 3111, - [3218] = 3103, - [3219] = 3103, - [3220] = 3124, - [3221] = 3124, - [3222] = 3116, - [3223] = 3223, - [3224] = 3135, - [3225] = 3116, - [3226] = 3124, - [3227] = 3227, - [3228] = 3115, - [3229] = 3106, - [3230] = 3136, - [3231] = 3115, - [3232] = 3106, - [3233] = 3124, - [3234] = 3124, - [3235] = 3127, - [3236] = 3114, - [3237] = 3135, - [3238] = 3114, - [3239] = 3127, - [3240] = 3105, - [3241] = 3136, + [3207] = 3129, + [3208] = 3129, + [3209] = 3110, + [3210] = 3202, + [3211] = 3137, + [3212] = 3127, + [3213] = 3129, + [3214] = 3116, + [3215] = 3215, + [3216] = 3102, + [3217] = 3107, + [3218] = 3102, + [3219] = 3129, + [3220] = 3116, + [3221] = 3127, + [3222] = 3105, + [3223] = 3129, + [3224] = 3129, + [3225] = 3108, + [3226] = 3135, + [3227] = 3106, + [3228] = 3228, + [3229] = 3129, + [3230] = 3137, + [3231] = 3112, + [3232] = 3127, + [3233] = 3129, + [3234] = 3129, + [3235] = 3137, + [3236] = 3127, + [3237] = 3129, + [3238] = 3116, + [3239] = 3103, + [3240] = 3116, + [3241] = 3137, [3242] = 3105, - [3243] = 3124, - [3244] = 3111, - [3245] = 3104, - [3246] = 3114, - [3247] = 3103, - [3248] = 3102, - [3249] = 3116, - [3250] = 3114, - [3251] = 3135, - [3252] = 3111, - [3253] = 3136, - [3254] = 3124, - [3255] = 3136, - [3256] = 3121, - [3257] = 3121, - [3258] = 3124, - [3259] = 3106, - [3260] = 3127, - [3261] = 3115, + [3243] = 3104, + [3244] = 3110, + [3245] = 3129, + [3246] = 3116, + [3247] = 3107, + [3248] = 3105, + [3249] = 3108, + [3250] = 3116, + [3251] = 3102, + [3252] = 3135, + [3253] = 3135, + [3254] = 3129, + [3255] = 3137, + [3256] = 3110, + [3257] = 3107, + [3258] = 3105, + [3259] = 3108, + [3260] = 3137, + [3261] = 3127, [3262] = 3116, - [3263] = 3103, - [3264] = 3116, - [3265] = 3114, - [3266] = 3116, - [3267] = 3127, - [3268] = 3104, - [3269] = 3135, - [3270] = 3124, - [3271] = 3136, - [3272] = 3124, - [3273] = 3103, - [3274] = 3103, - [3275] = 3111, - [3276] = 3111, - [3277] = 3102, - [3278] = 3102, + [3263] = 3129, + [3264] = 3108, + [3265] = 3105, + [3266] = 3135, + [3267] = 3103, + [3268] = 3129, + [3269] = 3104, + [3270] = 3103, + [3271] = 3104, + [3272] = 3108, + [3273] = 3129, + [3274] = 3105, + [3275] = 3202, + [3276] = 3107, + [3277] = 3110, + [3278] = 3107, [3279] = 3104, - [3280] = 3135, - [3281] = 3203, - [3282] = 3121, - [3283] = 3127, - [3284] = 3105, - [3285] = 3285, - [3286] = 3116, - [3287] = 3103, - [3288] = 3135, - [3289] = 3111, - [3290] = 3124, - [3291] = 3102, + [3280] = 3110, + [3281] = 3110, + [3282] = 3127, + [3283] = 3102, + [3284] = 3104, + [3285] = 3104, + [3286] = 3286, + [3287] = 3127, + [3288] = 3106, + [3289] = 3137, + [3290] = 3110, + [3291] = 3135, [3292] = 3104, - [3293] = 3121, - [3294] = 3105, - [3295] = 3114, - [3296] = 3105, - [3297] = 3105, - [3298] = 3104, - [3299] = 3102, - [3300] = 3114, - [3301] = 3106, - [3302] = 3135, - [3303] = 3115, - [3304] = 3135, - [3305] = 3136, - [3306] = 3106, - [3307] = 3104, - [3308] = 3127, - [3309] = 3105, - [3310] = 3102, - [3311] = 3136, - [3312] = 3136, - [3313] = 3111, - [3314] = 3135, - [3315] = 3111, - [3316] = 3124, - [3317] = 3103, - [3318] = 3104, - [3319] = 3102, - [3320] = 3111, - [3321] = 3103, - [3322] = 3136, + [3293] = 3103, + [3294] = 3116, + [3295] = 3137, + [3296] = 3135, + [3297] = 3110, + [3298] = 3107, + [3299] = 3108, + [3300] = 3105, + [3301] = 3108, + [3302] = 3137, + [3303] = 3127, + [3304] = 3112, + [3305] = 3135, + [3306] = 3108, + [3307] = 3106, + [3308] = 3104, + [3309] = 3103, + [3310] = 3103, + [3311] = 3107, + [3312] = 3135, + [3313] = 3110, + [3314] = 3127, + [3315] = 3110, + [3316] = 3129, + [3317] = 3106, + [3318] = 3107, + [3319] = 3116, + [3320] = 3102, + [3321] = 3112, + [3322] = 3112, [3323] = 3127, - [3324] = 3127, - [3325] = 3116, - [3326] = 3115, - [3327] = 3135, - [3328] = 3105, - [3329] = 3103, - [3330] = 3116, - [3331] = 3103, - [3332] = 3106, - [3333] = 3127, - [3334] = 3124, - [3335] = 3115, - [3336] = 3111, - [3337] = 3102, + [3324] = 3137, + [3325] = 3137, + [3326] = 3102, + [3327] = 3127, + [3328] = 3135, + [3329] = 3135, + [3330] = 3108, + [3331] = 3108, + [3332] = 3108, + [3333] = 3105, + [3334] = 3105, + [3335] = 3129, + [3336] = 3107, + [3337] = 3110, [3338] = 3104, - [3339] = 3105, - [3340] = 3136, - [3341] = 3105, - [3342] = 3104, + [3339] = 3103, + [3340] = 3107, + [3341] = 3103, + [3342] = 3202, [3343] = 3343, - [3344] = 3203, - [3345] = 3116, + [3344] = 3112, + [3345] = 3105, [3346] = 3346, [3347] = 3347, - [3348] = 3347, - [3349] = 3347, - [3350] = 3347, - [3351] = 3351, - [3352] = 3347, - [3353] = 3353, - [3354] = 3347, - [3355] = 3347, - [3356] = 3347, - [3357] = 3357, - [3358] = 3347, - [3359] = 3347, - [3360] = 3347, - [3361] = 3347, + [3348] = 3348, + [3349] = 3348, + [3350] = 3348, + [3351] = 3348, + [3352] = 3352, + [3353] = 3348, + [3354] = 3348, + [3355] = 3355, + [3356] = 3348, + [3357] = 3348, + [3358] = 3348, + [3359] = 3348, + [3360] = 3348, + [3361] = 3348, [3362] = 3362, - [3363] = 460, + [3363] = 477, [3364] = 475, - [3365] = 403, - [3366] = 529, - [3367] = 484, - [3368] = 3368, - [3369] = 475, - [3370] = 3370, + [3365] = 529, + [3366] = 395, + [3367] = 455, + [3368] = 475, + [3369] = 455, + [3370] = 395, [3371] = 3371, - [3372] = 460, - [3373] = 403, - [3374] = 3374, - [3375] = 484, - [3376] = 529, - [3377] = 1408, - [3378] = 2251, - [3379] = 1749, + [3372] = 3372, + [3373] = 3373, + [3374] = 529, + [3375] = 477, + [3376] = 3376, + [3377] = 1766, + [3378] = 3378, + [3379] = 1408, [3380] = 1408, [3381] = 3381, - [3382] = 3382, + [3382] = 2248, [3383] = 3383, - [3384] = 2332, - [3385] = 3385, + [3384] = 2331, + [3385] = 1717, [3386] = 3383, [3387] = 3383, [3388] = 3388, - [3389] = 1714, - [3390] = 1734, - [3391] = 3383, + [3389] = 1737, + [3390] = 3383, + [3391] = 3391, [3392] = 3392, - [3393] = 2382, - [3394] = 3394, + [3393] = 2386, + [3394] = 2374, [3395] = 3395, [3396] = 3396, - [3397] = 2378, + [3397] = 3397, [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3398, - [3403] = 3403, - [3404] = 3399, + [3399] = 333, + [3400] = 3398, + [3401] = 3398, + [3402] = 3402, + [3403] = 3398, + [3404] = 3404, [3405] = 3398, - [3406] = 402, - [3407] = 3399, - [3408] = 3399, - [3409] = 3409, - [3410] = 3410, - [3411] = 3398, - [3412] = 3401, + [3406] = 403, + [3407] = 3407, + [3408] = 3408, + [3409] = 3398, + [3410] = 3398, + [3411] = 3408, + [3412] = 3408, [3413] = 3398, - [3414] = 3399, - [3415] = 3401, - [3416] = 3398, - [3417] = 3399, - [3418] = 3398, - [3419] = 3398, - [3420] = 3399, - [3421] = 3398, - [3422] = 3399, - [3423] = 3398, - [3424] = 3398, - [3425] = 3425, - [3426] = 3399, - [3427] = 359, - [3428] = 368, - [3429] = 3399, + [3414] = 3408, + [3415] = 3398, + [3416] = 3416, + [3417] = 3398, + [3418] = 3408, + [3419] = 3408, + [3420] = 3408, + [3421] = 3408, + [3422] = 3398, + [3423] = 291, + [3424] = 359, + [3425] = 3408, + [3426] = 3398, + [3427] = 3408, + [3428] = 3408, + [3429] = 3408, [3430] = 3430, - [3431] = 3431, - [3432] = 3399, - [3433] = 3399, - [3434] = 292, - [3435] = 3401, - [3436] = 3436, - [3437] = 3437, - [3438] = 3399, + [3431] = 3404, + [3432] = 3432, + [3433] = 3433, + [3434] = 3398, + [3435] = 3408, + [3436] = 3404, + [3437] = 3398, + [3438] = 3408, [3439] = 3398, [3440] = 3440, - [3441] = 3398, - [3442] = 3399, - [3443] = 3398, - [3444] = 3398, - [3445] = 3399, - [3446] = 356, - [3447] = 418, - [3448] = 3448, + [3441] = 3441, + [3442] = 3442, + [3443] = 3443, + [3444] = 3408, + [3445] = 3404, + [3446] = 3446, + [3447] = 342, + [3448] = 412, [3449] = 3449, [3450] = 358, [3451] = 3451, [3452] = 3452, [3453] = 3453, - [3454] = 514, - [3455] = 440, - [3456] = 506, - [3457] = 485, - [3458] = 448, - [3459] = 474, - [3460] = 473, - [3461] = 471, - [3462] = 530, - [3463] = 462, - [3464] = 513, - [3465] = 3465, - [3466] = 493, - [3467] = 487, - [3468] = 428, - [3469] = 3469, - [3470] = 496, - [3471] = 515, - [3472] = 502, - [3473] = 3473, - [3474] = 523, - [3475] = 3475, + [3454] = 3454, + [3455] = 519, + [3456] = 514, + [3457] = 3457, + [3458] = 429, + [3459] = 442, + [3460] = 450, + [3461] = 493, + [3462] = 473, + [3463] = 513, + [3464] = 470, + [3465] = 501, + [3466] = 469, + [3467] = 515, + [3468] = 461, + [3469] = 512, + [3470] = 3470, + [3471] = 502, + [3472] = 485, + [3473] = 510, + [3474] = 511, + [3475] = 531, [3476] = 517, - [3477] = 518, - [3478] = 521, + [3477] = 3477, + [3478] = 528, [3479] = 3479, [3480] = 3480, [3481] = 3481, [3482] = 3482, - [3483] = 3482, - [3484] = 3484, + [3483] = 3483, + [3484] = 3482, [3485] = 3482, - [3486] = 528, - [3487] = 3482, - [3488] = 3488, - [3489] = 3482, + [3486] = 3482, + [3487] = 3487, + [3488] = 3482, + [3489] = 3489, [3490] = 3482, [3491] = 3482, [3492] = 3482, [3493] = 3482, - [3494] = 3482, + [3494] = 523, [3495] = 3495, [3496] = 3482, [3497] = 3497, [3498] = 3482, - [3499] = 3499, + [3499] = 3482, [3500] = 3500, [3501] = 3501, [3502] = 3502, @@ -6956,142 +6949,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3516] = 3516, [3517] = 3517, [3518] = 3518, - [3519] = 3516, - [3520] = 3520, - [3521] = 3516, - [3522] = 3522, - [3523] = 3516, + [3519] = 3519, + [3520] = 3519, + [3521] = 3521, + [3522] = 3519, + [3523] = 3523, [3524] = 3524, - [3525] = 3520, - [3526] = 3518, - [3527] = 3518, + [3525] = 3521, + [3526] = 3526, + [3527] = 3527, [3528] = 3528, - [3529] = 3528, - [3530] = 3517, - [3531] = 3520, + [3529] = 3529, + [3530] = 3530, + [3531] = 3531, [3532] = 3532, - [3533] = 3528, - [3534] = 3534, - [3535] = 3518, - [3536] = 3520, - [3537] = 3528, - [3538] = 3516, - [3539] = 3539, - [3540] = 3517, - [3541] = 3541, - [3542] = 3542, - [3543] = 3543, - [3544] = 3544, - [3545] = 3545, - [3546] = 3517, - [3547] = 3542, - [3548] = 3543, - [3549] = 3549, - [3550] = 3544, - [3551] = 3542, - [3552] = 3517, - [3553] = 3545, - [3554] = 3543, - [3555] = 3542, - [3556] = 3543, + [3533] = 3519, + [3534] = 3523, + [3535] = 3535, + [3536] = 3535, + [3537] = 3523, + [3538] = 3523, + [3539] = 3519, + [3540] = 3540, + [3541] = 3521, + [3542] = 3524, + [3543] = 3535, + [3544] = 3519, + [3545] = 3521, + [3546] = 3527, + [3547] = 3547, + [3548] = 3527, + [3549] = 3528, + [3550] = 3529, + [3551] = 3530, + [3552] = 3528, + [3553] = 3529, + [3554] = 3530, + [3555] = 3527, + [3556] = 3556, [3557] = 3528, - [3558] = 3544, - [3559] = 3518, - [3560] = 3544, - [3561] = 3545, - [3562] = 3545, + [3558] = 3529, + [3559] = 3530, + [3560] = 3524, + [3561] = 3561, + [3562] = 3535, [3563] = 3563, - [3564] = 3545, - [3565] = 3565, - [3566] = 3520, - [3567] = 3516, - [3568] = 3545, - [3569] = 3544, - [3570] = 3543, - [3571] = 3542, - [3572] = 3544, - [3573] = 3543, - [3574] = 3517, - [3575] = 3542, - [3576] = 3542, - [3577] = 3543, - [3578] = 3544, + [3564] = 3535, + [3565] = 3523, + [3566] = 3528, + [3567] = 3521, + [3568] = 3530, + [3569] = 3524, + [3570] = 3530, + [3571] = 3529, + [3572] = 3528, + [3573] = 3527, + [3574] = 3529, + [3575] = 3527, + [3576] = 3528, + [3577] = 3529, + [3578] = 3524, [3579] = 3579, - [3580] = 3528, - [3581] = 3518, - [3582] = 3520, - [3583] = 3545, - [3584] = 3584, - [3585] = 3585, - [3586] = 3517, - [3587] = 3528, - [3588] = 3588, - [3589] = 3518, - [3590] = 3545, - [3591] = 3520, - [3592] = 3516, - [3593] = 3542, - [3594] = 3516, - [3595] = 3543, - [3596] = 3544, - [3597] = 3516, - [3598] = 3520, - [3599] = 3518, - [3600] = 3528, - [3601] = 3545, - [3602] = 3520, - [3603] = 3544, - [3604] = 3545, - [3605] = 3517, - [3606] = 3542, - [3607] = 3518, - [3608] = 3543, - [3609] = 3544, - [3610] = 3528, - [3611] = 3543, - [3612] = 3516, - [3613] = 3545, - [3614] = 3614, - [3615] = 3542, - [3616] = 3520, - [3617] = 3518, - [3618] = 3528, - [3619] = 3619, - [3620] = 3517, - [3621] = 3542, + [3580] = 3527, + [3581] = 3528, + [3582] = 3529, + [3583] = 3530, + [3584] = 3535, + [3585] = 3530, + [3586] = 3523, + [3587] = 3535, + [3588] = 3519, + [3589] = 3528, + [3590] = 3521, + [3591] = 3519, + [3592] = 3524, + [3593] = 3523, + [3594] = 3527, + [3595] = 3595, + [3596] = 3524, + [3597] = 3523, + [3598] = 3524, + [3599] = 3521, + [3600] = 3519, + [3601] = 3523, + [3602] = 3535, + [3603] = 3527, + [3604] = 3521, + [3605] = 3605, + [3606] = 3530, + [3607] = 3529, + [3608] = 3529, + [3609] = 3530, + [3610] = 3610, + [3611] = 3611, + [3612] = 3528, + [3613] = 3527, + [3614] = 3535, + [3615] = 3615, + [3616] = 3616, + [3617] = 3523, + [3618] = 3519, + [3619] = 3521, + [3620] = 3524, + [3621] = 3535, [3622] = 3622, [3623] = 3623, - [3624] = 3543, - [3625] = 3625, - [3626] = 3528, - [3627] = 3518, - [3628] = 3520, - [3629] = 3516, - [3630] = 3517, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3634, - [3635] = 3542, - [3636] = 3543, - [3637] = 3544, - [3638] = 3545, - [3639] = 3517, - [3640] = 3517, - [3641] = 3641, - [3642] = 3544, - [3643] = 3528, - [3644] = 3518, - [3645] = 3520, - [3646] = 3516, + [3624] = 3527, + [3625] = 3528, + [3626] = 3529, + [3627] = 3530, + [3628] = 3524, + [3629] = 3629, + [3630] = 3630, + [3631] = 3535, + [3632] = 3530, + [3633] = 3521, + [3634] = 3529, + [3635] = 3528, + [3636] = 3527, + [3637] = 3521, + [3638] = 3535, + [3639] = 3519, + [3640] = 3524, + [3641] = 3523, + [3642] = 3523, + [3643] = 3519, + [3644] = 3521, + [3645] = 3524, + [3646] = 3646, [3647] = 3647, - [3648] = 292, - [3649] = 3649, + [3648] = 3648, + [3649] = 291, [3650] = 3650, - [3651] = 3651, + [3651] = 403, [3652] = 3652, [3653] = 3653, - [3654] = 402, + [3654] = 3654, [3655] = 3655, [3656] = 3656, [3657] = 3657, @@ -7102,11 +7095,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3662] = 3662, [3663] = 3663, [3664] = 3664, - [3665] = 528, + [3665] = 3665, [3666] = 3666, [3667] = 3667, [3668] = 3668, - [3669] = 3669, + [3669] = 523, [3670] = 3670, [3671] = 3671, [3672] = 3672, @@ -7117,19 +7110,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3677] = 3677, [3678] = 3678, [3679] = 3679, - [3680] = 3658, - [3681] = 3673, + [3680] = 3680, + [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3662, - [3685] = 3685, + [3684] = 3657, + [3685] = 3663, [3686] = 3686, - [3687] = 3687, - [3688] = 3667, + [3687] = 3673, + [3688] = 3688, [3689] = 3689, - [3690] = 3690, - [3691] = 3691, - [3692] = 3678, + [3690] = 3670, + [3691] = 3660, + [3692] = 3692, [3693] = 3693, [3694] = 3694, [3695] = 3695, @@ -7137,153 +7130,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3697] = 3697, [3698] = 3698, [3699] = 3699, - [3700] = 3700, + [3700] = 3693, [3701] = 3701, [3702] = 3702, [3703] = 3703, - [3704] = 3704, - [3705] = 3705, - [3706] = 3693, - [3707] = 3700, + [3704] = 3694, + [3705] = 3693, + [3706] = 3706, + [3707] = 3707, [3708] = 3708, - [3709] = 3700, - [3710] = 3693, - [3711] = 3711, - [3712] = 3699, - [3713] = 3700, - [3714] = 3700, - [3715] = 3715, + [3709] = 3693, + [3710] = 3710, + [3711] = 3693, + [3712] = 3694, + [3713] = 3713, + [3714] = 3698, + [3715] = 3693, [3716] = 3716, - [3717] = 3717, - [3718] = 3703, - [3719] = 3705, - [3720] = 3700, - [3721] = 3699, - [3722] = 3722, + [3717] = 3699, + [3718] = 3718, + [3719] = 3719, + [3720] = 3701, + [3721] = 3693, + [3722] = 3698, [3723] = 3723, - [3724] = 3703, + [3724] = 3699, [3725] = 3725, - [3726] = 3705, - [3727] = 3727, + [3726] = 3701, + [3727] = 3693, [3728] = 3728, [3729] = 3729, - [3730] = 3700, - [3731] = 3700, + [3730] = 3699, + [3731] = 3701, [3732] = 3732, - [3733] = 3703, - [3734] = 3705, - [3735] = 3735, - [3736] = 3700, - [3737] = 3694, + [3733] = 3733, + [3734] = 3734, + [3735] = 3693, + [3736] = 3736, + [3737] = 3737, [3738] = 3738, [3739] = 3739, [3740] = 3694, - [3741] = 3741, - [3742] = 3705, - [3743] = 3703, - [3744] = 3693, - [3745] = 3700, - [3746] = 3699, - [3747] = 3705, - [3748] = 3748, - [3749] = 3749, - [3750] = 3699, - [3751] = 3703, - [3752] = 3693, - [3753] = 3700, + [3741] = 3736, + [3742] = 3698, + [3743] = 3701, + [3744] = 3699, + [3745] = 3693, + [3746] = 3746, + [3747] = 3701, + [3748] = 3699, + [3749] = 3699, + [3750] = 3693, + [3751] = 3698, + [3752] = 3701, + [3753] = 3694, [3754] = 3754, - [3755] = 3703, - [3756] = 3705, + [3755] = 3755, + [3756] = 3701, [3757] = 3757, - [3758] = 3703, - [3759] = 3705, + [3758] = 3699, + [3759] = 3759, [3760] = 3760, - [3761] = 3761, - [3762] = 3699, - [3763] = 3763, - [3764] = 3699, - [3765] = 3693, + [3761] = 3698, + [3762] = 3762, + [3763] = 3698, + [3764] = 3764, + [3765] = 3694, [3766] = 3766, - [3767] = 3767, - [3768] = 3699, + [3767] = 3698, + [3768] = 3768, [3769] = 3769, [3770] = 3770, - [3771] = 1804, + [3771] = 3771, [3772] = 3772, - [3773] = 3773, - [3774] = 3693, - [3775] = 3775, - [3776] = 3703, - [3777] = 3705, - [3778] = 3778, + [3773] = 3694, + [3774] = 3774, + [3775] = 3699, + [3776] = 3701, + [3777] = 3694, + [3778] = 1835, [3779] = 3779, - [3780] = 3693, - [3781] = 3700, - [3782] = 3782, - [3783] = 3700, + [3780] = 3780, + [3781] = 3698, + [3782] = 3693, + [3783] = 3693, [3784] = 3784, [3785] = 3785, - [3786] = 1808, - [3787] = 3699, - [3788] = 3754, - [3789] = 3693, - [3790] = 3694, - [3791] = 3700, - [3792] = 3700, - [3793] = 3694, - [3794] = 3794, + [3786] = 1840, + [3787] = 3787, + [3788] = 3694, + [3789] = 3754, + [3790] = 3736, + [3791] = 3693, + [3792] = 3754, + [3793] = 3736, + [3794] = 3693, [3795] = 3754, - [3796] = 3754, - [3797] = 3694, - [3798] = 3693, - [3799] = 3699, + [3796] = 3736, + [3797] = 3797, + [3798] = 3699, + [3799] = 3698, [3800] = 3754, [3801] = 3801, - [3802] = 3703, - [3803] = 3693, - [3804] = 3705, - [3805] = 3694, + [3802] = 3701, + [3803] = 3803, + [3804] = 3694, + [3805] = 3736, [3806] = 3806, - [3807] = 3807, - [3808] = 3754, - [3809] = 3703, - [3810] = 3705, - [3811] = 3694, - [3812] = 3700, - [3813] = 3813, + [3807] = 3754, + [3808] = 3699, + [3809] = 3701, + [3810] = 3736, + [3811] = 3811, + [3812] = 3693, + [3813] = 3754, [3814] = 3814, - [3815] = 3754, - [3816] = 3694, - [3817] = 3817, + [3815] = 3815, + [3816] = 3736, + [3817] = 3736, [3818] = 3818, - [3819] = 3705, - [3820] = 3703, + [3819] = 3754, + [3820] = 3701, [3821] = 3699, - [3822] = 3694, - [3823] = 3823, + [3822] = 3698, + [3823] = 3736, [3824] = 3824, [3825] = 3825, [3826] = 3826, [3827] = 3754, [3828] = 3828, [3829] = 3754, - [3830] = 3694, + [3830] = 3698, [3831] = 3754, - [3832] = 3699, + [3832] = 3736, [3833] = 3694, - [3834] = 3754, + [3834] = 3693, [3835] = 3835, - [3836] = 3700, - [3837] = 3693, - [3838] = 3705, - [3839] = 3703, - [3840] = 3754, - [3841] = 3841, - [3842] = 3699, + [3836] = 3694, + [3837] = 3736, + [3838] = 3698, + [3839] = 3701, + [3840] = 3699, + [3841] = 3754, + [3842] = 3842, [3843] = 3843, [3844] = 3844, [3845] = 3845, - [3846] = 3843, + [3846] = 3846, [3847] = 3847, [3848] = 3848, [3849] = 3849, @@ -7291,566 +7284,566 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3851] = 3851, [3852] = 3852, [3853] = 3853, - [3854] = 3854, - [3855] = 3855, + [3854] = 3844, + [3855] = 3849, [3856] = 3856, - [3857] = 3843, - [3858] = 3858, - [3859] = 3859, + [3857] = 3857, + [3858] = 3853, + [3859] = 3847, [3860] = 3860, - [3861] = 3850, - [3862] = 3862, - [3863] = 3848, - [3864] = 3852, - [3865] = 3862, - [3866] = 3852, - [3867] = 3859, - [3868] = 3845, - [3869] = 3847, - [3870] = 3843, - [3871] = 3855, - [3872] = 3862, - [3873] = 3853, + [3861] = 3861, + [3862] = 3860, + [3863] = 3863, + [3864] = 3845, + [3865] = 3857, + [3866] = 3860, + [3867] = 3853, + [3868] = 3849, + [3869] = 3846, + [3870] = 3848, + [3871] = 3850, + [3872] = 3851, + [3873] = 3844, [3874] = 3874, - [3875] = 3854, - [3876] = 3664, - [3877] = 3666, - [3878] = 3860, - [3879] = 3850, - [3880] = 3850, - [3881] = 3859, - [3882] = 3682, - [3883] = 3853, - [3884] = 3669, - [3885] = 3855, - [3886] = 3852, - [3887] = 3862, - [3888] = 3858, - [3889] = 3853, - [3890] = 3890, - [3891] = 3843, + [3875] = 3849, + [3876] = 3863, + [3877] = 3686, + [3878] = 3662, + [3879] = 3861, + [3880] = 3853, + [3881] = 3860, + [3882] = 3857, + [3883] = 3683, + [3884] = 3857, + [3885] = 3692, + [3886] = 3850, + [3887] = 3844, + [3888] = 3851, + [3889] = 3889, + [3890] = 3850, + [3891] = 3863, [3892] = 3892, - [3893] = 3859, - [3894] = 3860, - [3895] = 3855, - [3896] = 3858, - [3897] = 3860, - [3898] = 3858, - [3899] = 3848, + [3893] = 3847, + [3894] = 3861, + [3895] = 3849, + [3896] = 3844, + [3897] = 3861, + [3898] = 3863, + [3899] = 3853, [3900] = 3900, [3901] = 3845, - [3902] = 3847, - [3903] = 3852, - [3904] = 3862, - [3905] = 1734, - [3906] = 3860, - [3907] = 3907, - [3908] = 3862, - [3909] = 3852, - [3910] = 3859, - [3911] = 3854, - [3912] = 3858, - [3913] = 3858, - [3914] = 3860, - [3915] = 3915, - [3916] = 3916, - [3917] = 3917, - [3918] = 3855, + [3902] = 3846, + [3903] = 3860, + [3904] = 3863, + [3905] = 3848, + [3906] = 3906, + [3907] = 1737, + [3908] = 3861, + [3909] = 3860, + [3910] = 3853, + [3911] = 3849, + [3912] = 3851, + [3913] = 3913, + [3914] = 3914, + [3915] = 3861, + [3916] = 3844, + [3917] = 3844, + [3918] = 3918, [3919] = 3919, [3920] = 3920, - [3921] = 3921, - [3922] = 3855, - [3923] = 3923, - [3924] = 3862, - [3925] = 3850, - [3926] = 3847, - [3927] = 3927, - [3928] = 3850, - [3929] = 3845, - [3930] = 3847, - [3931] = 3845, - [3932] = 3848, - [3933] = 3854, - [3934] = 3853, - [3935] = 3852, - [3936] = 3848, - [3937] = 3855, - [3938] = 3859, - [3939] = 3855, - [3940] = 1715, - [3941] = 3941, - [3942] = 3855, - [3943] = 3943, - [3944] = 3843, + [3921] = 3863, + [3922] = 3847, + [3923] = 3848, + [3924] = 3924, + [3925] = 3925, + [3926] = 3846, + [3927] = 3845, + [3928] = 3857, + [3929] = 3857, + [3930] = 3930, + [3931] = 3848, + [3932] = 3846, + [3933] = 3845, + [3934] = 3851, + [3935] = 3850, + [3936] = 3860, + [3937] = 3844, + [3938] = 3844, + [3939] = 3853, + [3940] = 3849, + [3941] = 1740, + [3942] = 3848, + [3943] = 3846, + [3944] = 3944, [3945] = 3847, - [3946] = 3845, - [3947] = 3855, - [3948] = 3948, - [3949] = 3847, - [3950] = 3950, - [3951] = 3855, - [3952] = 3952, - [3953] = 3860, - [3954] = 3858, - [3955] = 3850, - [3956] = 3854, - [3957] = 3848, - [3958] = 3388, - [3959] = 3853, - [3960] = 3848, - [3961] = 3843, - [3962] = 3962, + [3946] = 3946, + [3947] = 3947, + [3948] = 3844, + [3949] = 3949, + [3950] = 3848, + [3951] = 3844, + [3952] = 3845, + [3953] = 3953, + [3954] = 3863, + [3955] = 3861, + [3956] = 3857, + [3957] = 3957, + [3958] = 3391, + [3959] = 3959, + [3960] = 3960, + [3961] = 3845, + [3962] = 3847, [3963] = 3963, - [3964] = 3964, - [3965] = 3845, - [3966] = 3847, - [3967] = 3967, - [3968] = 3859, - [3969] = 1720, - [3970] = 3970, + [3964] = 3851, + [3965] = 3850, + [3966] = 3846, + [3967] = 3848, + [3968] = 3847, + [3969] = 3969, + [3970] = 1717, [3971] = 3971, - [3972] = 3972, - [3973] = 1714, - [3974] = 3848, - [3975] = 3845, + [3972] = 1715, + [3973] = 3845, + [3974] = 3846, + [3975] = 3975, [3976] = 3976, - [3977] = 1734, - [3978] = 3385, - [3979] = 3843, - [3980] = 3854, - [3981] = 3843, - [3982] = 3982, - [3983] = 1720, - [3984] = 3984, - [3985] = 3853, - [3986] = 3854, - [3987] = 3855, - [3988] = 3854, - [3989] = 3853, - [3990] = 3854, - [3991] = 3848, - [3992] = 3845, - [3993] = 3858, - [3994] = 3860, - [3995] = 3853, + [3977] = 3388, + [3978] = 3847, + [3979] = 3850, + [3980] = 1737, + [3981] = 3981, + [3982] = 1715, + [3983] = 3983, + [3984] = 3847, + [3985] = 3851, + [3986] = 3850, + [3987] = 3851, + [3988] = 3850, + [3989] = 3844, + [3990] = 3851, + [3991] = 3851, + [3992] = 3844, + [3993] = 3857, + [3994] = 3861, + [3995] = 3863, [3996] = 3850, - [3997] = 3847, - [3998] = 3853, - [3999] = 2251, - [4000] = 4000, - [4001] = 3854, + [3997] = 3845, + [3998] = 3846, + [3999] = 3848, + [4000] = 2248, + [4001] = 3857, [4002] = 4002, - [4003] = 3850, - [4004] = 4004, - [4005] = 3862, - [4006] = 3852, - [4007] = 3859, - [4008] = 3850, + [4003] = 4003, + [4004] = 3857, + [4005] = 4005, + [4006] = 3860, + [4007] = 3853, + [4008] = 3849, [4009] = 4009, - [4010] = 3858, - [4011] = 3860, - [4012] = 1715, - [4013] = 3862, - [4014] = 3852, - [4015] = 3859, + [4010] = 1717, + [4011] = 4011, + [4012] = 4012, + [4013] = 1740, + [4014] = 3861, + [4015] = 3863, [4016] = 4016, - [4017] = 3855, + [4017] = 3860, [4018] = 4018, - [4019] = 1714, - [4020] = 4020, - [4021] = 4021, + [4019] = 3853, + [4020] = 3849, + [4021] = 1717, [4022] = 4022, [4023] = 4023, [4024] = 4024, - [4025] = 3850, - [4026] = 4026, - [4027] = 1714, + [4025] = 4025, + [4026] = 3857, + [4027] = 3849, [4028] = 4028, - [4029] = 4029, - [4030] = 3854, - [4031] = 3853, - [4032] = 3843, - [4033] = 3859, - [4034] = 3852, - [4035] = 3853, - [4036] = 3854, + [4029] = 3849, + [4030] = 3853, + [4031] = 3851, + [4032] = 3850, + [4033] = 4033, + [4034] = 3853, + [4035] = 3860, + [4036] = 3847, [4037] = 3850, - [4038] = 3859, - [4039] = 3852, - [4040] = 3862, - [4041] = 3843, - [4042] = 3850, - [4043] = 3862, - [4044] = 3859, - [4045] = 3852, - [4046] = 3862, - [4047] = 3854, - [4048] = 3859, - [4049] = 3853, + [4038] = 3851, + [4039] = 3857, + [4040] = 3860, + [4041] = 3857, + [4042] = 3847, + [4043] = 3849, + [4044] = 3849, + [4045] = 3853, + [4046] = 3860, + [4047] = 3851, + [4048] = 3853, + [4049] = 3850, [4050] = 4050, - [4051] = 3852, - [4052] = 3862, - [4053] = 3860, + [4051] = 3860, + [4052] = 3863, + [4053] = 3861, [4054] = 4054, - [4055] = 3848, - [4056] = 3843, + [4055] = 3863, + [4056] = 3845, [4057] = 4057, - [4058] = 3858, - [4059] = 4059, - [4060] = 3860, - [4061] = 3843, - [4062] = 3858, - [4063] = 3853, - [4064] = 3854, - [4065] = 3843, - [4066] = 3850, - [4067] = 1734, - [4068] = 3859, - [4069] = 3852, + [4058] = 3847, + [4059] = 3847, + [4060] = 3861, + [4061] = 3850, + [4062] = 3851, + [4063] = 4063, + [4064] = 3847, + [4065] = 3857, + [4066] = 1737, + [4067] = 3849, + [4068] = 3853, + [4069] = 3863, [4070] = 3860, - [4071] = 3862, - [4072] = 3858, - [4073] = 3855, - [4074] = 3847, - [4075] = 3855, + [4071] = 3861, + [4072] = 3844, + [4073] = 3848, + [4074] = 3846, + [4075] = 3844, [4076] = 3845, - [4077] = 3862, - [4078] = 3852, - [4079] = 3859, - [4080] = 3848, - [4081] = 3847, - [4082] = 3850, - [4083] = 3847, - [4084] = 3845, - [4085] = 3854, - [4086] = 3853, - [4087] = 3845, - [4088] = 1720, - [4089] = 3848, - [4090] = 3843, - [4091] = 4091, - [4092] = 3848, + [4077] = 4077, + [4078] = 3860, + [4079] = 3853, + [4080] = 3849, + [4081] = 3848, + [4082] = 3846, + [4083] = 1715, + [4084] = 3857, + [4085] = 3848, + [4086] = 3846, + [4087] = 3851, + [4088] = 3850, + [4089] = 3845, + [4090] = 4090, + [4091] = 3845, + [4092] = 3847, [4093] = 4093, [4094] = 4094, [4095] = 4095, - [4096] = 3664, + [4096] = 4096, [4097] = 4097, - [4098] = 4098, - [4099] = 3666, - [4100] = 4100, + [4098] = 3686, + [4099] = 4099, + [4100] = 3662, [4101] = 4101, [4102] = 4095, - [4103] = 4103, - [4104] = 3666, - [4105] = 3682, - [4106] = 3669, + [4103] = 3662, + [4104] = 3686, + [4105] = 4105, + [4106] = 3683, [4107] = 4107, - [4108] = 3664, + [4108] = 3692, [4109] = 4109, [4110] = 4110, [4111] = 4111, - [4112] = 4103, - [4113] = 1790, - [4114] = 4114, - [4115] = 4107, - [4116] = 4101, - [4117] = 4117, - [4118] = 4101, - [4119] = 4095, - [4120] = 4120, - [4121] = 4100, - [4122] = 4107, - [4123] = 4123, - [4124] = 4124, - [4125] = 4123, - [4126] = 4095, + [4112] = 4095, + [4113] = 4105, + [4114] = 4107, + [4115] = 4115, + [4116] = 1814, + [4117] = 4101, + [4118] = 4118, + [4119] = 4105, + [4120] = 4107, + [4121] = 4099, + [4122] = 4122, + [4123] = 4101, + [4124] = 4122, + [4125] = 4095, + [4126] = 4126, [4127] = 4127, - [4128] = 4120, - [4129] = 4103, - [4130] = 4107, - [4131] = 4131, - [4132] = 3669, - [4133] = 4114, - [4134] = 4134, - [4135] = 4114, - [4136] = 3682, - [4137] = 4101, - [4138] = 4107, - [4139] = 4127, + [4128] = 4128, + [4129] = 4107, + [4130] = 4128, + [4131] = 4115, + [4132] = 4132, + [4133] = 3692, + [4134] = 4115, + [4135] = 4107, + [4136] = 4105, + [4137] = 3683, + [4138] = 4128, + [4139] = 2331, [4140] = 4140, [4141] = 4107, - [4142] = 4098, - [4143] = 4103, - [4144] = 4098, + [4142] = 4126, + [4143] = 4097, + [4144] = 4095, [4145] = 4145, - [4146] = 4127, + [4146] = 4097, [4147] = 4107, - [4148] = 2332, - [4149] = 4149, - [4150] = 4101, - [4151] = 4151, - [4152] = 3664, + [4148] = 4148, + [4149] = 4126, + [4150] = 4150, + [4151] = 4105, + [4152] = 3686, [4153] = 4153, [4154] = 4107, - [4155] = 4123, - [4156] = 3666, + [4155] = 3662, + [4156] = 4122, [4157] = 4107, - [4158] = 4158, + [4158] = 4105, [4159] = 4159, - [4160] = 4101, - [4161] = 4134, - [4162] = 4107, - [4163] = 4123, - [4164] = 4140, - [4165] = 3682, - [4166] = 4107, - [4167] = 3669, - [4168] = 4114, - [4169] = 4120, - [4170] = 4145, + [4160] = 4160, + [4161] = 4132, + [4162] = 4122, + [4163] = 4107, + [4164] = 1796, + [4165] = 4140, + [4166] = 3683, + [4167] = 4107, + [4168] = 3692, + [4169] = 4115, + [4170] = 4128, [4171] = 4153, - [4172] = 4127, - [4173] = 4158, - [4174] = 4123, - [4175] = 4098, - [4176] = 1812, - [4177] = 4117, + [4172] = 4126, + [4173] = 4159, + [4174] = 4122, + [4175] = 4175, + [4176] = 4097, + [4177] = 4177, [4178] = 4178, - [4179] = 4179, + [4179] = 4145, [4180] = 4180, [4181] = 4181, - [4182] = 4117, + [4182] = 4153, [4183] = 4183, [4184] = 4183, - [4185] = 4153, + [4185] = 4159, [4186] = 4186, - [4187] = 4158, + [4187] = 4122, [4188] = 4188, - [4189] = 4189, - [4190] = 4123, + [4189] = 4181, + [4190] = 4181, [4191] = 4107, - [4192] = 4179, - [4193] = 4117, - [4194] = 4183, + [4192] = 4175, + [4193] = 4193, + [4194] = 4181, [4195] = 4195, [4196] = 4183, - [4197] = 4179, + [4197] = 4183, [4198] = 4198, [4199] = 4199, - [4200] = 4200, - [4201] = 4179, - [4202] = 4179, - [4203] = 4203, - [4204] = 1813, - [4205] = 4123, + [4200] = 4095, + [4201] = 4122, + [4202] = 4175, + [4203] = 4159, + [4204] = 4153, + [4205] = 1815, [4206] = 4206, - [4207] = 4158, - [4208] = 4153, - [4209] = 4209, - [4210] = 3664, - [4211] = 4145, - [4212] = 3666, + [4207] = 4207, + [4208] = 4208, + [4209] = 4175, + [4210] = 4126, + [4211] = 4175, + [4212] = 4128, [4213] = 4213, - [4214] = 4127, - [4215] = 4120, - [4216] = 4114, - [4217] = 4101, - [4218] = 3669, + [4214] = 4115, + [4215] = 3692, + [4216] = 3683, + [4217] = 4217, + [4218] = 4105, [4219] = 4145, - [4220] = 3682, - [4221] = 4183, - [4222] = 4101, + [4220] = 3686, + [4221] = 3662, + [4222] = 3662, [4223] = 4223, - [4224] = 4117, - [4225] = 4145, - [4226] = 4100, - [4227] = 3666, - [4228] = 4228, - [4229] = 4123, - [4230] = 3664, - [4231] = 4158, + [4224] = 4183, + [4225] = 4181, + [4226] = 3686, + [4227] = 4097, + [4228] = 4145, + [4229] = 4105, + [4230] = 4122, + [4231] = 4159, [4232] = 4232, - [4233] = 4098, - [4234] = 4153, - [4235] = 3682, - [4236] = 4236, - [4237] = 4103, - [4238] = 4103, - [4239] = 4114, - [4240] = 4240, - [4241] = 4095, - [4242] = 4100, - [4243] = 4243, - [4244] = 3669, - [4245] = 4127, - [4246] = 4246, - [4247] = 4095, - [4248] = 4120, - [4249] = 4114, - [4250] = 4250, - [4251] = 4114, - [4252] = 4120, - [4253] = 3669, - [4254] = 4127, - [4255] = 4098, + [4233] = 4153, + [4234] = 4234, + [4235] = 4145, + [4236] = 3683, + [4237] = 4237, + [4238] = 3683, + [4239] = 4101, + [4240] = 4099, + [4241] = 4099, + [4242] = 4242, + [4243] = 4126, + [4244] = 4244, + [4245] = 4128, + [4246] = 4095, + [4247] = 4247, + [4248] = 3692, + [4249] = 4249, + [4250] = 4115, + [4251] = 4115, + [4252] = 4128, + [4253] = 4126, + [4254] = 4254, + [4255] = 4097, [4256] = 4256, [4257] = 4257, - [4258] = 3682, - [4259] = 4103, - [4260] = 4260, - [4261] = 4100, - [4262] = 4101, - [4263] = 4263, - [4264] = 4145, - [4265] = 3666, - [4266] = 3664, - [4267] = 4267, + [4258] = 4101, + [4259] = 3692, + [4260] = 3683, + [4261] = 4261, + [4262] = 4105, + [4263] = 4145, + [4264] = 4099, + [4265] = 4145, + [4266] = 3662, + [4267] = 3686, [4268] = 4268, - [4269] = 4098, - [4270] = 4145, + [4269] = 4269, + [4270] = 4097, [4271] = 4271, [4272] = 4095, [4273] = 4273, [4274] = 4274, - [4275] = 4103, + [4275] = 4275, [4276] = 4276, - [4277] = 4098, - [4278] = 4178, - [4279] = 4095, - [4280] = 4180, - [4281] = 4181, + [4277] = 4095, + [4278] = 4177, + [4279] = 4101, + [4280] = 4178, + [4281] = 4180, [4282] = 4282, [4283] = 4107, - [4284] = 4117, + [4284] = 4097, [4285] = 4285, - [4286] = 4100, - [4287] = 4100, - [4288] = 4288, - [4289] = 4289, - [4290] = 4179, - [4291] = 4100, - [4292] = 3664, - [4293] = 4095, - [4294] = 4120, - [4295] = 4100, - [4296] = 4158, - [4297] = 4103, + [4286] = 4286, + [4287] = 4181, + [4288] = 4099, + [4289] = 4099, + [4290] = 4175, + [4291] = 4099, + [4292] = 4101, + [4293] = 4159, + [4294] = 4099, + [4295] = 4101, + [4296] = 3686, + [4297] = 3662, [4298] = 4183, - [4299] = 3666, - [4300] = 4117, - [4301] = 4101, - [4302] = 4123, - [4303] = 4098, - [4304] = 4145, - [4305] = 3682, - [4306] = 4101, - [4307] = 3669, - [4308] = 4098, - [4309] = 4114, - [4310] = 4123, - [4311] = 4114, + [4299] = 4181, + [4300] = 4122, + [4301] = 4105, + [4302] = 4097, + [4303] = 3683, + [4304] = 4105, + [4305] = 4145, + [4306] = 3692, + [4307] = 4307, + [4308] = 4095, + [4309] = 4122, + [4310] = 4115, + [4311] = 4159, [4312] = 4312, - [4313] = 4313, - [4314] = 4158, + [4313] = 4115, + [4314] = 4314, [4315] = 4153, - [4316] = 4120, - [4317] = 4120, - [4318] = 4179, - [4319] = 4319, - [4320] = 3664, - [4321] = 4127, - [4322] = 4127, - [4323] = 4323, - [4324] = 4120, - [4325] = 4183, - [4326] = 4127, - [4327] = 3669, - [4328] = 3682, - [4329] = 4153, - [4330] = 4158, - [4331] = 4123, - [4332] = 4101, - [4333] = 4117, - [4334] = 3666, - [4335] = 4335, - [4336] = 3666, - [4337] = 3664, - [4338] = 4123, - [4339] = 4098, - [4340] = 4158, - [4341] = 4183, - [4342] = 4101, + [4316] = 4128, + [4317] = 4126, + [4318] = 4128, + [4319] = 4097, + [4320] = 4320, + [4321] = 4175, + [4322] = 4126, + [4323] = 4128, + [4324] = 4115, + [4325] = 4325, + [4326] = 3692, + [4327] = 4126, + [4328] = 4153, + [4329] = 4183, + [4330] = 4105, + [4331] = 4159, + [4332] = 4122, + [4333] = 4181, + [4334] = 4183, + [4335] = 3662, + [4336] = 3686, + [4337] = 3686, + [4338] = 4097, + [4339] = 3662, + [4340] = 4122, + [4341] = 4159, + [4342] = 4153, [4343] = 4153, - [4344] = 4153, - [4345] = 4158, - [4346] = 4123, - [4347] = 4347, - [4348] = 4179, - [4349] = 4103, + [4344] = 4145, + [4345] = 4345, + [4346] = 4159, + [4347] = 4175, + [4348] = 4348, + [4349] = 4349, [4350] = 4095, - [4351] = 3682, - [4352] = 4100, - [4353] = 4353, + [4351] = 4101, + [4352] = 4099, + [4353] = 4105, [4354] = 4354, - [4355] = 4355, - [4356] = 3669, - [4357] = 4145, - [4358] = 4358, - [4359] = 4117, - [4360] = 4183, - [4361] = 4114, - [4362] = 4120, - [4363] = 4127, - [4364] = 4127, - [4365] = 4179, - [4366] = 4145, - [4367] = 4179, - [4368] = 4179, - [4369] = 4120, - [4370] = 4370, - [4371] = 4114, - [4372] = 4145, - [4373] = 4153, - [4374] = 4145, - [4375] = 4103, - [4376] = 4376, - [4377] = 4100, - [4378] = 4095, + [4355] = 3683, + [4356] = 4356, + [4357] = 4122, + [4358] = 3692, + [4359] = 4359, + [4360] = 4181, + [4361] = 4183, + [4362] = 4115, + [4363] = 4128, + [4364] = 4175, + [4365] = 4145, + [4366] = 4126, + [4367] = 4175, + [4368] = 4101, + [4369] = 4175, + [4370] = 4128, + [4371] = 4145, + [4372] = 4126, + [4373] = 4373, + [4374] = 4115, + [4375] = 4101, + [4376] = 4153, + [4377] = 4099, + [4378] = 4145, [4379] = 4379, - [4380] = 4103, - [4381] = 4098, - [4382] = 4100, - [4383] = 3664, - [4384] = 4384, - [4385] = 4101, - [4386] = 3666, + [4380] = 4095, + [4381] = 4183, + [4382] = 4099, + [4383] = 4097, + [4384] = 3686, + [4385] = 4385, + [4386] = 4386, [4387] = 4387, - [4388] = 4388, - [4389] = 4389, - [4390] = 4183, - [4391] = 4101, - [4392] = 4117, - [4393] = 4179, - [4394] = 3682, - [4395] = 4117, - [4396] = 4153, - [4397] = 4183, - [4398] = 4117, - [4399] = 4183, - [4400] = 4098, - [4401] = 4158, - [4402] = 3669, - [4403] = 4114, - [4404] = 4404, - [4405] = 4123, - [4406] = 4120, - [4407] = 4123, - [4408] = 4158, - [4409] = 4103, - [4410] = 4095, - [4411] = 4153, - [4412] = 4127, - [4413] = 4413, + [4388] = 3662, + [4389] = 4105, + [4390] = 4390, + [4391] = 4181, + [4392] = 4392, + [4393] = 4175, + [4394] = 4101, + [4395] = 4105, + [4396] = 4183, + [4397] = 4181, + [4398] = 4181, + [4399] = 4097, + [4400] = 4183, + [4401] = 3683, + [4402] = 4153, + [4403] = 4122, + [4404] = 3692, + [4405] = 4115, + [4406] = 4128, + [4407] = 4126, + [4408] = 4408, + [4409] = 4159, + [4410] = 4153, + [4411] = 4159, + [4412] = 4095, + [4413] = 4122, [4414] = 4414, [4415] = 4415, [4416] = 4416, @@ -7861,390 +7854,305 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4421] = 4421, [4422] = 4422, [4423] = 4423, - [4424] = 4423, - [4425] = 4422, - [4426] = 4420, + [4424] = 4424, + [4425] = 4423, + [4426] = 4424, [4427] = 4421, - [4428] = 4418, - [4429] = 4419, - [4430] = 4414, + [4428] = 4419, + [4429] = 4429, + [4430] = 4430, [4431] = 4431, - [4432] = 4432, + [4432] = 4416, [4433] = 4433, [4434] = 4434, - [4435] = 4417, - [4436] = 4418, - [4437] = 4415, + [4435] = 4435, + [4436] = 4436, + [4437] = 4414, [4438] = 4438, - [4439] = 4420, - [4440] = 4422, - [4441] = 4441, - [4442] = 4421, + [4439] = 4419, + [4440] = 4421, + [4441] = 4424, + [4442] = 4414, [4443] = 4443, - [4444] = 4419, - [4445] = 4423, - [4446] = 4422, - [4447] = 4420, - [4448] = 4423, - [4449] = 4414, - [4450] = 4432, + [4444] = 4423, + [4445] = 4445, + [4446] = 4431, + [4447] = 4424, + [4448] = 4421, + [4449] = 4419, + [4450] = 4416, [4451] = 4451, [4452] = 4452, - [4453] = 4418, - [4454] = 4454, - [4455] = 4455, + [4453] = 4453, + [4454] = 4423, + [4455] = 4431, [4456] = 4456, - [4457] = 4421, - [4458] = 4443, - [4459] = 4443, - [4460] = 4432, - [4461] = 4461, - [4462] = 4462, - [4463] = 4421, - [4464] = 4452, - [4465] = 4451, - [4466] = 4423, - [4467] = 4422, - [4468] = 4420, - [4469] = 4469, - [4470] = 4454, - [4471] = 4455, - [4472] = 4415, - [4473] = 4443, - [4474] = 4434, - [4475] = 4475, - [4476] = 4414, - [4477] = 4452, - [4478] = 4455, - [4479] = 4454, + [4457] = 4457, + [4458] = 4458, + [4459] = 4434, + [4460] = 4458, + [4461] = 4414, + [4462] = 4434, + [4463] = 4435, + [4464] = 4464, + [4465] = 4423, + [4466] = 4445, + [4467] = 4451, + [4468] = 4424, + [4469] = 4421, + [4470] = 4419, + [4471] = 4471, + [4472] = 4453, + [4473] = 4456, + [4474] = 4436, + [4475] = 4436, + [4476] = 4435, + [4477] = 4477, + [4478] = 4478, + [4479] = 4445, [4480] = 4456, - [4481] = 4451, - [4482] = 4419, - [4483] = 4418, - [4484] = 4421, - [4485] = 4456, - [4486] = 4452, - [4487] = 4423, - [4488] = 4422, - [4489] = 4420, - [4490] = 4443, - [4491] = 4415, - [4492] = 4434, - [4493] = 4420, - [4494] = 4432, - [4495] = 4422, - [4496] = 4423, - [4497] = 4414, - [4498] = 4417, - [4499] = 4421, - [4500] = 4500, - [4501] = 4419, + [4481] = 4453, + [4482] = 4451, + [4483] = 4416, + [4484] = 4431, + [4485] = 4419, + [4486] = 4423, + [4487] = 4458, + [4488] = 4457, + [4489] = 4424, + [4490] = 4421, + [4491] = 4414, + [4492] = 4421, + [4493] = 4445, + [4494] = 4436, + [4495] = 4458, + [4496] = 4435, + [4497] = 4424, + [4498] = 4414, + [4499] = 4434, + [4500] = 4423, + [4501] = 4429, [4502] = 4502, - [4503] = 4414, - [4504] = 4504, - [4505] = 4421, - [4506] = 4432, - [4507] = 4434, - [4508] = 4423, - [4509] = 4443, - [4510] = 4420, - [4511] = 4414, - [4512] = 4455, - [4513] = 4417, - [4514] = 4454, - [4515] = 4451, - [4516] = 4420, - [4517] = 4517, - [4518] = 4518, + [4503] = 4416, + [4504] = 4434, + [4505] = 4505, + [4506] = 4435, + [4507] = 4423, + [4508] = 4457, + [4509] = 4419, + [4510] = 4424, + [4511] = 4421, + [4512] = 4419, + [4513] = 4434, + [4514] = 4429, + [4515] = 4456, + [4516] = 4453, + [4517] = 4451, + [4518] = 4421, [4519] = 4519, - [4520] = 4422, - [4521] = 4423, - [4522] = 4417, - [4523] = 4523, - [4524] = 4421, - [4525] = 4418, - [4526] = 4421, - [4527] = 4419, - [4528] = 4414, - [4529] = 4423, - [4530] = 4422, - [4531] = 4420, - [4532] = 4417, - [4533] = 4533, - [4534] = 4432, - [4535] = 4434, - [4536] = 4536, - [4537] = 4537, + [4520] = 4520, + [4521] = 4521, + [4522] = 4424, + [4523] = 4423, + [4524] = 4429, + [4525] = 4431, + [4526] = 4416, + [4527] = 4434, + [4528] = 4423, + [4529] = 4435, + [4530] = 4429, + [4531] = 4424, + [4532] = 4421, + [4533] = 4419, + [4534] = 4436, + [4535] = 4535, + [4536] = 4445, + [4537] = 4436, [4538] = 4538, - [4539] = 4434, + [4539] = 4539, [4540] = 4540, - [4541] = 4415, - [4542] = 4415, - [4543] = 4421, - [4544] = 4452, + [4541] = 4445, + [4542] = 4542, + [4543] = 4457, + [4544] = 4458, [4545] = 4423, - [4546] = 4422, - [4547] = 4420, - [4548] = 4456, - [4549] = 4549, - [4550] = 4443, - [4551] = 4421, - [4552] = 4420, - [4553] = 4455, - [4554] = 4454, - [4555] = 4421, - [4556] = 4420, - [4557] = 4451, - [4558] = 4418, - [4559] = 4452, - [4560] = 4419, - [4561] = 4456, - [4562] = 4562, - [4563] = 4419, + [4546] = 4546, + [4547] = 4424, + [4548] = 4421, + [4549] = 4419, + [4550] = 4456, + [4551] = 4453, + [4552] = 4451, + [4553] = 4423, + [4554] = 4419, + [4555] = 2386, + [4556] = 4457, + [4557] = 4423, + [4558] = 4419, + [4559] = 4458, + [4560] = 4416, + [4561] = 4561, + [4562] = 4431, + [4563] = 4416, [4564] = 4456, - [4565] = 4565, - [4566] = 4422, - [4567] = 4432, + [4565] = 4431, + [4566] = 4419, + [4567] = 4414, [4568] = 4568, [4569] = 4569, [4570] = 4570, - [4571] = 4434, - [4572] = 4415, - [4573] = 4573, - [4574] = 4443, - [4575] = 4452, - [4576] = 4576, - [4577] = 4456, + [4571] = 4571, + [4572] = 4434, + [4573] = 4435, + [4574] = 4436, + [4575] = 4575, + [4576] = 4445, + [4577] = 4577, [4578] = 4578, - [4579] = 4417, + [4579] = 4457, [4580] = 4580, - [4581] = 4451, - [4582] = 4454, - [4583] = 4455, - [4584] = 4455, - [4585] = 4454, - [4586] = 4451, - [4587] = 4420, - [4588] = 4588, - [4589] = 4451, - [4590] = 4422, - [4591] = 4420, - [4592] = 4423, - [4593] = 4422, - [4594] = 4423, - [4595] = 4454, - [4596] = 4443, - [4597] = 4597, - [4598] = 4421, - [4599] = 4456, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, - [4603] = 4452, - [4604] = 4417, - [4605] = 4455, - [4606] = 4415, - [4607] = 4421, - [4608] = 4434, - [4609] = 4443, - [4610] = 4432, - [4611] = 4611, - [4612] = 4418, - [4613] = 4451, - [4614] = 4454, - [4615] = 4456, - [4616] = 4455, - [4617] = 4452, - [4618] = 4419, - [4619] = 4619, - [4620] = 4414, - [4621] = 4456, - [4622] = 4452, - [4623] = 4417, - [4624] = 4624, - [4625] = 4415, - [4626] = 4415, + [4581] = 4429, + [4582] = 4458, + [4583] = 4451, + [4584] = 4453, + [4585] = 4456, + [4586] = 4418, + [4587] = 4429, + [4588] = 4419, + [4589] = 4421, + [4590] = 4590, + [4591] = 4451, + [4592] = 4424, + [4593] = 4419, + [4594] = 4453, + [4595] = 4421, + [4596] = 4424, + [4597] = 4453, + [4598] = 4451, + [4599] = 4599, + [4600] = 4414, + [4601] = 4423, + [4602] = 4414, + [4603] = 4603, + [4604] = 4458, + [4605] = 4605, + [4606] = 4414, + [4607] = 4456, + [4608] = 4457, + [4609] = 4423, + [4610] = 4457, + [4611] = 4429, + [4612] = 4445, + [4613] = 4436, + [4614] = 4451, + [4615] = 4453, + [4616] = 4456, + [4617] = 4458, + [4618] = 4435, + [4619] = 4457, + [4620] = 4431, + [4621] = 4621, + [4622] = 4458, + [4623] = 4457, + [4624] = 4445, + [4625] = 4416, + [4626] = 4626, [4627] = 4627, - [4628] = 4628, - [4629] = 4434, - [4630] = 4434, - [4631] = 4631, - [4632] = 4432, - [4633] = 4432, - [4634] = 4414, - [4635] = 4414, + [4628] = 4445, + [4629] = 4629, + [4630] = 4436, + [4631] = 4436, + [4632] = 4435, + [4633] = 4434, + [4634] = 4429, + [4635] = 4435, [4636] = 4636, - [4637] = 4419, - [4638] = 4419, - [4639] = 4418, - [4640] = 4418, - [4641] = 4417, - [4642] = 4414, - [4643] = 4643, - [4644] = 4601, - [4645] = 4418, - [4646] = 4432, - [4647] = 4419, - [4648] = 4434, - [4649] = 4455, - [4650] = 4418, - [4651] = 4415, - [4652] = 4419, - [4653] = 4653, - [4654] = 4417, + [4637] = 4434, + [4638] = 4434, + [4639] = 4431, + [4640] = 4416, + [4641] = 4431, + [4642] = 4434, + [4643] = 4429, + [4644] = 4644, + [4645] = 4435, + [4646] = 4603, + [4647] = 4416, + [4648] = 4436, + [4649] = 4431, + [4650] = 4456, + [4651] = 4445, + [4652] = 4429, + [4653] = 4457, + [4654] = 4458, [4655] = 4655, - [4656] = 4452, + [4656] = 4656, [4657] = 4657, - [4658] = 4456, - [4659] = 4414, - [4660] = 4417, - [4661] = 4661, - [4662] = 4432, - [4663] = 4454, - [4664] = 4451, - [4665] = 4665, - [4666] = 4588, - [4667] = 4455, - [4668] = 4454, - [4669] = 4602, + [4658] = 4658, + [4659] = 4431, + [4660] = 4456, + [4661] = 4416, + [4662] = 4429, + [4663] = 4663, + [4664] = 4434, + [4665] = 4453, + [4666] = 4451, + [4667] = 4667, + [4668] = 4435, + [4669] = 4453, [4670] = 4451, - [4671] = 4671, - [4672] = 4434, - [4673] = 4415, - [4674] = 4432, - [4675] = 4443, - [4676] = 4676, - [4677] = 4452, - [4678] = 4678, - [4679] = 4456, - [4680] = 4417, - [4681] = 4681, - [4682] = 4417, + [4671] = 4605, + [4672] = 4672, + [4673] = 4673, + [4674] = 4436, + [4675] = 4445, + [4676] = 4435, + [4677] = 4414, + [4678] = 4457, + [4679] = 4458, + [4680] = 4429, + [4681] = 4429, + [4682] = 4590, [4683] = 4683, - [4684] = 4684, - [4685] = 4417, - [4686] = 4455, - [4687] = 4671, - [4688] = 4454, - [4689] = 2378, - [4690] = 4451, - [4691] = 4432, - [4692] = 4692, - [4693] = 4443, - [4694] = 4417, - [4695] = 4417, - [4696] = 4696, + [4684] = 4429, + [4685] = 4685, + [4686] = 4686, + [4687] = 4687, + [4688] = 4456, + [4689] = 4673, + [4690] = 4453, + [4691] = 4451, + [4692] = 4435, + [4693] = 4414, + [4694] = 4694, + [4695] = 4429, + [4696] = 4429, [4697] = 4697, [4698] = 4698, [4699] = 4699, - [4700] = 2382, - [4701] = 4456, - [4702] = 4702, - [4703] = 4703, - [4704] = 4452, - [4705] = 4443, - [4706] = 4418, - [4707] = 4707, - [4708] = 4432, - [4709] = 4451, - [4710] = 4454, - [4711] = 4455, - [4712] = 4712, - [4713] = 4713, + [4700] = 2374, + [4701] = 4701, + [4702] = 4416, + [4703] = 4458, + [4704] = 4704, + [4705] = 4705, + [4706] = 4414, + [4707] = 4457, + [4708] = 4451, + [4709] = 4709, + [4710] = 4453, + [4711] = 4456, + [4712] = 4435, + [4713] = 4431, [4714] = 4714, + [4715] = 4715, + [4716] = 4716, }; -static inline bool sym_rune_literal_character_set_1(int32_t c) { - return (c < 'e' - ? (c < '\\' - ? (c < '\'' - ? c == '"' - : c <= '\'') - : (c <= '\\' || (c >= '`' && c <= 'b'))) - : (c <= 'f' || (c < 't' - ? (c < 'r' - ? c == 'n' - : c <= 'r') - : (c <= 't' || c == 'v')))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 'p' - ? (c < 'd' - ? (c < 'b' - ? (c >= 'A' && c <= '_') - : c <= 'b') - : (c <= 'h' || (c < 'n' - ? (c >= 'k' && c <= 'l') - : c <= 'n'))) - : (c <= 'q' || (c < 913 - ? (c < 181 - ? (c >= 's' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 'n' - ? (c < 'b' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'h') - : c <= 'l'))) - : (c <= 'n' || (c < 181 - ? (c < 's' - ? (c >= 'p' && c <= 'q') - : c <= 'z') - : (c <= 181 || (c < 945 - ? (c >= 913 && c <= 937) - : c <= 969))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 'n' - ? (c < 'b' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'h' || (c >= 'j' && c <= 'l'))) - : (c <= 'n' || (c < 913 - ? (c < 181 - ? (c >= 'p' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 'n' - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'i') - : c <= 'l'))) - : (c <= 'q' || (c < 913 - ? (c < 181 - ? (c >= 's' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 'o' - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c >= 'a' && c <= 'm'))) - : (c <= 'r' || (c < 913 - ? (c < 181 - ? (c >= 't' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} +static TSCharacterRange sym_rune_literal_character_set_1[] = { + {'"', '"'}, {'\'', '\''}, {'0', '7'}, {'U', 'U'}, {'\\', '\\'}, {'`', 'b'}, {'e', 'f'}, {'n', 'n'}, + {'r', 'r'}, {'t', 'v'}, {'x', 'x'}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -8252,2700 +8160,2894 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(187); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(394); - if (lookahead == '$') ADVANCE(339); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(234); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(167); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(387); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 394, + '$', 339, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + ')', 222, + '*', 234, + '+', 227, + ',', 219, + '-', 231, + '.', 210, + '/', 237, + '0', 357, + ':', 260, + ';', 208, + '<', 256, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '\\', 21, + ']', 258, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 387, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == ' ') SKIP(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); + if (('A' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(292); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 113, + '$', 110, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 212, + '/', 236, + '0', 324, + ':', 259, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) + lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 113, + '$', 110, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 212, + '/', 236, + '0', 324, + ':', 259, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) + lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(105); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 113, + '$', 107, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 212, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) + lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(105); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 113, + '$', 107, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 212, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) + lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(8); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(9); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(8); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(9); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(11) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 211, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(11) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 209, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 254, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(13); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 209, + '/', 236, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 271, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(13); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '"', 341, + '$', 110, + '&', 275, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 225, + ',', 219, + '-', 229, + '.', 212, + '/', 83, + '0', 324, + ';', 208, + '<', 86, + '?', 263, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(14) + lookahead == ' ') SKIP(14); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '$', 111, + '&', 275, + '(', 221, + '*', 233, + '.', 209, + '/', 83, + '<', 255, + '?', 263, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + 'm', 369, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(16); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '$', 111, + '&', 275, + '(', 221, + '*', 233, + '.', 209, + '/', 83, + '?', 263, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + 'm', 369, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(16); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '/') ADVANCE(82); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '$', 111, + '&', 275, + '(', 221, + '*', 233, + '/', 83, + ';', 208, + '=', 223, + '?', 263, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + 'm', 369, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(17); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(17) + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '$') ADVANCE(109); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '.') ADVANCE(88); - if (lookahead == '/') ADVANCE(82); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '$', 111, + ',', 219, + '.', 89, + '/', 83, + ':', 259, + ';', 208, + '=', 223, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + '{', 218, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(18); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(18) + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(82); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '$', 111, + '.', 209, + '/', 83, + ';', 208, + '=', 223, + '@', 76, + 'C', 363, + 'J', 367, + '[', 254, + '{', 218, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(20) + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(82); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '$', 111, + '.', 209, + '/', 83, + ';', 208, + '=', 223, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + '{', 218, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(20) + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == 'U') ADVANCE(294); + if (lookahead == 'u') ADVANCE(296); + if (lookahead == 'x') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); + if (lookahead != 0 && + lookahead != '\t' && + (lookahead < 0x0b || '\r' < lookahead) && + lookahead != ' ') ADVANCE(292); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 113, + '$', 110, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ':', 259, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(23); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(105); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 113, + '$', 110, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ':', 259, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(24) + lookahead == ' ') SKIP(23); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(105); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 113, + '$', 107, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(24) + lookahead == ' ') SKIP(25); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(331); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 113, + '$', 107, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == ' ') SKIP(25); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(331); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + '0', 327, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == ' ') SKIP(27); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + '0', 327, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29) + lookahead == ' ') SKIP(27); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29) + lookahead == ' ') SKIP(31); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 31: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(31); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(32) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(32) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35) + lookahead == ' ') SKIP(33); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35) + lookahead == ' ') SKIP(37); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(96); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(37); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(96); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + ':', 98, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(39); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + ':', 98, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'm', 369, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(41); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(41); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(43); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 111, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(43); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 127, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '[', 254, + '^', 274, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(45); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 127, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '[', 271, + '^', 274, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + lookahead == ' ') SKIP(45); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(47); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 259, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(47); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(242); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 98, + ';', 208, + '<', 242, + '=', 224, + '>', 247, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 269, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 50: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 51: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 52: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 53: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '{', 218, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 54: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(107); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == '|') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 55: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(260); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 108, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + 'a', 380, + 'i', 373, + 'o', 378, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) + lookahead == ' ') SKIP(55); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 56: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(237); - if (lookahead == ':') ADVANCE(260); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 260, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '[', 254, + '^', 274, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) + lookahead == ' ') SKIP(57); END_STATE(); case 57: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 239, + '&', 276, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 209, + '/', 237, + ':', 260, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '[', 271, + '^', 274, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 269, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) + lookahead == ' ') SKIP(57); END_STATE(); case 58: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 254, + ']', 258, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) + lookahead == ' ') SKIP(59); END_STATE(); case 59: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + ')', 222, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 213, + '/', 236, + ':', 260, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 271, + ']', 258, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) + lookahead == ' ') SKIP(59); END_STATE(); case 60: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(243); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + ':', 98, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 254, + ']', 258, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) + lookahead == ' ') SKIP(61); END_STATE(); case 61: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 210, + '/', 236, + ':', 98, + ';', 208, + '<', 243, + '=', 99, + '>', 248, + '?', 264, + '[', 271, + ']', 258, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) + lookahead == ' ') SKIP(61); END_STATE(); case 62: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(236); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '[', 254, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) + lookahead == ' ') SKIP(63); END_STATE(); case 63: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(259); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(268); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '#', 113, + '$', 126, + '%', 238, + '&', 277, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 209, + '/', 236, + ':', 259, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '[', 271, + '^', 273, + 'a', 135, + 'i', 132, + 'o', 134, + '{', 218, + '|', 270, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + lookahead == ' ') SKIP(63); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(214); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(78); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 265, + '"', 341, + '$', 110, + '&', 275, + '\'', 335, + '(', 221, + ')', 222, + '*', 233, + '+', 225, + ',', 219, + '-', 229, + '.', 212, + '/', 83, + '0', 324, + ':', 259, + ';', 208, + '<', 86, + '?', 263, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 268, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + lookahead == ' ') SKIP(64); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '{') ADVANCE(218); + ADVANCE_MAP( + '!', 265, + '"', 341, + '$', 110, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 214, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 79, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(65); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 66: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '!', 265, + '$', 111, + '&', 275, + '(', 221, + ')', 222, + '*', 233, + ',', 219, + '.', 211, + '/', 83, + '<', 255, + '=', 223, + '?', 263, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + 'm', 369, + '{', 218, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '{') ADVANCE(218); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 67: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '.') ADVANCE(88); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); + ADVANCE_MAP( + '!', 265, + '$', 111, + '&', 275, + '(', 221, + ')', 222, + '*', 233, + ',', 219, + '.', 211, + '/', 83, + '=', 223, + '?', 263, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + 'm', 369, + '{', 218, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == '{') ADVANCE(218); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67) + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 68: - if (lookahead == '!') ADVANCE(94); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(331); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(244); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(246); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); + ADVANCE_MAP( + '!', 265, + '$', 111, + '&', 275, + '(', 221, + ')', 222, + '*', 233, + ',', 219, + '.', 89, + '/', 83, + '=', 223, + '?', 263, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + 'm', 369, + '{', 218, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(68); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(268); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 69: - if (lookahead == '!') ADVANCE(94); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '<') ADVANCE(244); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(246); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); + ADVANCE_MAP( + '!', 96, + '$', 111, + '%', 238, + '(', 221, + ')', 222, + '*', 233, + '+', 225, + '-', 229, + '.', 211, + '/', 236, + '0', 327, + ':', 259, + '<', 244, + '=', 99, + '>', 246, + '@', 77, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '{', 218, + '|', 268, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69) + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 70: - if (lookahead == '!') ADVANCE(94); - if (lookahead == '$') ADVANCE(81); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(211); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(331); - if (lookahead == ':') ADVANCE(259); - if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(246); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(258); + ADVANCE_MAP( + '!', 96, + '$', 111, + '%', 238, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '/', 236, + '<', 244, + '=', 99, + '>', 246, + '@', 76, + 'C', 363, + 'J', 367, + '[', 271, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(268); - if (lookahead == '}') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 71: - if (lookahead == '"') ADVANCE(341); - if (lookahead == '$') ADVANCE(109); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '.') ADVANCE(144); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); + ADVANCE_MAP( + '!', 96, + '$', 82, + '%', 238, + '(', 221, + ')', 222, + '*', 233, + '+', 225, + '-', 229, + '.', 211, + '/', 236, + '0', 327, + ':', 259, + '<', 257, + '=', 99, + '>', 246, + '@', 77, + 'C', 363, + 'J', 367, + '[', 254, + ']', 258, + '{', 218, + '|', 268, + '}', 220, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - lookahead == 'a' || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'r') ADVANCE(361); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); + END_STATE(); + case 72: + ADVANCE_MAP( + '"', 341, + '$', 111, + '\'', 335, + '.', 147, + '/', 83, + '0', 324, + '@', 77, + 'C', 363, + 'J', 367, + '`', 114, + 'c', 360, + 'r', 361, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(71) + lookahead == ' ') SKIP(72); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 72: + case 73: if (lookahead == '"') ADVANCE(341); if (lookahead == '$') ADVANCE(340); if (lookahead == '/') ADVANCE(342); - if (lookahead == '\\') ADVANCE(167); + if (lookahead == '\\') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(343); if (lookahead != 0) ADVANCE(344); END_STATE(); - case 73: + case 74: if (lookahead == '"') ADVANCE(341); if (lookahead == '/') ADVANCE(352); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(353); if (lookahead != 0) ADVANCE(354); END_STATE(); - case 74: - if (lookahead == '$') ADVANCE(109); - if (lookahead == '.') ADVANCE(209); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(357); - if (lookahead == '>') ADVANCE(245); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == ']') ADVANCE(258); + case 75: + ADVANCE_MAP( + '$', 111, + '.', 209, + '/', 83, + '0', 357, + '>', 245, + '@', 77, + 'C', 363, + 'J', 367, + ']', 258, + '}', 220, + '+', 356, + '-', 356, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '+' || - lookahead == '-') ADVANCE(356); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 75: - if (lookahead == '$') ADVANCE(109); + case 76: + if (lookahead == '$') ADVANCE(111); if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); if (lookahead == '[') ADVANCE(402); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 76: - if (lookahead == '$') ADVANCE(109); + case 77: + if (lookahead == '$') ADVANCE(111); if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 77: - if (lookahead == '$') ADVANCE(109); + case 78: + if (lookahead == '$') ADVANCE(111); if (lookahead == 'C') ADVANCE(362); if (lookahead == 'J') ADVANCE(366); if (lookahead == '[') ADVANCE(402); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(383); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(369); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 78: - if (lookahead == '$') ADVANCE(109); + case 79: + if (lookahead == '$') ADVANCE(111); if (lookahead == 'C') ADVANCE(362); if (lookahead == 'J') ADVANCE(366); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(383); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(369); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 79: + case 80: if (lookahead == '$') ADVANCE(340); if (lookahead == '\'') ADVANCE(335); if (lookahead == '/') ADVANCE(336); - if (lookahead == '\\') ADVANCE(167); + if (lookahead == '\\') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(337); if (lookahead != 0) ADVANCE(338); END_STATE(); - case 80: + case 81: if (lookahead == '\'') ADVANCE(335); if (lookahead == '/') ADVANCE(348); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(349); if (lookahead != 0) ADVANCE(350); END_STATE(); - case 81: + case 82: if (lookahead == '(') ADVANCE(298); if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); - case 82: + case 83: if (lookahead == '*') ADVANCE(199); if (lookahead == '/') ADVANCE(196); END_STATE(); - case 83: + case 84: if (lookahead == '*') ADVANCE(199); if (lookahead == '/') ADVANCE(196); if (lookahead == '=') ADVANCE(311); END_STATE(); - case 84: + case 85: if (lookahead == '*') ADVANCE(202); if (lookahead == '/') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(205); if (lookahead != 0) ADVANCE(206); END_STATE(); - case 85: - if (lookahead == '-') ADVANCE(279); - END_STATE(); case 86: if (lookahead == '-') ADVANCE(279); - if (lookahead == '<') ADVANCE(100); END_STATE(); case 87: - if (lookahead == '.') ADVANCE(253); + if (lookahead == '-') ADVANCE(279); + if (lookahead == '<') ADVANCE(102); END_STATE(); case 88: - if (lookahead == '.') ADVANCE(87); + if (lookahead == '.') ADVANCE(253); END_STATE(); case 89: - if (lookahead == '.') ADVANCE(144); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == '_') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (lookahead == '.') ADVANCE(88); END_STATE(); case 90: - if (lookahead == '.') ADVANCE(152); - if (lookahead == '_') ADVANCE(151); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '_') ADVANCE(148); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); + END_STATE(); + case 91: + if (lookahead == '.') ADVANCE(154); + if (lookahead == '_') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); END_STATE(); - case 91: - if (lookahead == '/') ADVANCE(82); + case 92: + if (lookahead == '/') ADVANCE(83); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91) + lookahead == ' ') SKIP(92); END_STATE(); - case 92: + case 93: if (lookahead == '/') ADVANCE(399); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(400); @@ -10953,318 +11055,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '{' && lookahead != '}') ADVANCE(401); END_STATE(); - case 93: + case 94: if (lookahead == '/') ADVANCE(396); if (lookahead == '\n' || - lookahead == '\r') SKIP(91) + lookahead == '\r') SKIP(92); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(397); if (lookahead != 0 && lookahead != '\\') ADVANCE(398); END_STATE(); - case 94: - if (lookahead == '=') ADVANCE(250); - END_STATE(); case 95: - if (lookahead == '=') ADVANCE(312); + if (lookahead == '0') ADVANCE(120); + if (lookahead == 'U') ADVANCE(167); + if (lookahead == 'u') ADVANCE(160); + if (lookahead == 'x') ADVANCE(156); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (set_contains(sym_rune_literal_character_set_1, 11, lookahead)) ADVANCE(119); END_STATE(); case 96: - if (lookahead == '=') ADVANCE(322); + if (lookahead == '=') ADVANCE(250); END_STATE(); case 97: - if (lookahead == '=') ADVANCE(249); + if (lookahead == '=') ADVANCE(312); END_STATE(); case 98: - if (lookahead == '=') ADVANCE(320); + if (lookahead == '=') ADVANCE(322); END_STATE(); case 99: - if (lookahead == '=') ADVANCE(317); + if (lookahead == '=') ADVANCE(249); END_STATE(); case 100: - if (lookahead == '=') ADVANCE(313); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 101: - if (lookahead == '=') ADVANCE(314); - if (lookahead == '>') ADVANCE(102); + if (lookahead == '=') ADVANCE(317); END_STATE(); case 102: - if (lookahead == '=') ADVANCE(315); + if (lookahead == '=') ADVANCE(313); END_STATE(); case 103: - if (lookahead == '>') ADVANCE(101); + if (lookahead == '=') ADVANCE(314); + if (lookahead == '>') ADVANCE(104); END_STATE(); case 104: - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'e') ADVANCE(373); - if (lookahead == 'f') ADVANCE(376); - if (lookahead == 'i') ADVANCE(372); + if (lookahead == '=') ADVANCE(315); END_STATE(); case 105: - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'e') ADVANCE(373); - if (lookahead == 'i') ADVANCE(372); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 106: if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == 'e') ADVANCE(372); + if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'i') ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'f') ADVANCE(376); - if (lookahead == 'i') ADVANCE(372); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 107: if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == 'e') ADVANCE(372); + if (lookahead == 'i') ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'e') ADVANCE(373); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 108: if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == 'e') ADVANCE(372); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'i') ADVANCE(372); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 109: if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'i') ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 110: + if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == 'i') ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 111: - if (lookahead == '[') ADVANCE(299); + if (lookahead == 'C') ADVANCE(363); + if (lookahead == 'J') ADVANCE(367); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 112: - if (lookahead == '_') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(327); + if (lookahead == 'J') ADVANCE(367); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 113: - if (lookahead == '_') ADVANCE(136); - if (lookahead == '0' || - lookahead == '1') ADVANCE(329); + if (lookahead == '[') ADVANCE(299); END_STATE(); case 114: - if (lookahead == '_') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(330); + if (lookahead == '\\') ADVANCE(95); + if (lookahead != 0) ADVANCE(119); END_STATE(); case 115: - if (lookahead == '`') ADVANCE(334); + if (lookahead == '_') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(328); END_STATE(); case 116: - if (lookahead == '`') ADVANCE(334); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(139); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '0' || + lookahead == '1') ADVANCE(330); END_STATE(); case 117: - if (lookahead == 'c') ADVANCE(129); + if (lookahead == '_') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(331); END_STATE(); case 118: - if (lookahead == 'd') ADVANCE(120); + if (lookahead == '_') ADVANCE(154); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 119: - if (lookahead == 'd') ADVANCE(121); + if (lookahead == '`') ADVANCE(334); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(117); + if (lookahead == '`') ADVANCE(334); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'c') ADVANCE(133); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'd') ADVANCE(124); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(125); + if (lookahead == 'd') ADVANCE(125); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 125: - if (lookahead == 'f') ADVANCE(300); + if (lookahead == 'e') ADVANCE(267); END_STATE(); case 126: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 127: - if (lookahead == 'n') ADVANCE(309); - if (lookahead == 's') ADVANCE(306); + if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'i') ADVANCE(129); END_STATE(); case 128: - if (lookahead == 'n') ADVANCE(307); - if (lookahead == 's') ADVANCE(304); + if (lookahead == 'e') ADVANCE(302); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(119); + if (lookahead == 'f') ADVANCE(300); END_STATE(); case 130: - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 131: - if (lookahead == 's') ADVANCE(216); + if (lookahead == 'n') ADVANCE(309); + if (lookahead == 's') ADVANCE(306); END_STATE(); case 132: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'n') ADVANCE(307); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 133: - if (lookahead == '+' || - lookahead == '-') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); + if (lookahead == 'o') ADVANCE(123); END_STATE(); case 134: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(133); - if (lookahead == '_') ADVANCE(152); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 135: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); + if (lookahead == 's') ADVANCE(216); END_STATE(); case 136: - if (lookahead == '0' || - lookahead == '1') ADVANCE(329); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 137: - if (lookahead == '8' || - lookahead == '9') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(325); + if (lookahead == '+' || + lookahead == '-') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); case 138: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(327); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 139: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); + if (lookahead == '0' || + lookahead == '1') ADVANCE(330); END_STATE(); case 140: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(139); + if (lookahead == '8' || + lookahead == '9') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(325); END_STATE(); case 141: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(328); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(328); END_STATE(); case 142: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); END_STATE(); case 143: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(329); END_STATE(); case 145: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292); END_STATE(); case 146: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(326); END_STATE(); case 147: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(115); - if (lookahead == '0') ADVANCE(116); - if (lookahead == 'U') ADVANCE(165); - if (lookahead == 'u') ADVANCE(158); - if (lookahead == 'x') ADVANCE(154); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); END_STATE(); case 148: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); case 150: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(292); END_STATE(); case 151: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 152: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(331); END_STATE(); case 153: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); END_STATE(); case 154: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 155: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 156: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); END_STATE(); case 157: if (('0' <= lookahead && lookahead <= '9') || @@ -11299,804 +11385,905 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 163: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); END_STATE(); case 164: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); END_STATE(); case 165: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); case 166: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); case 167: - if (lookahead != 0 && - lookahead != '\t' && - (lookahead < 11 || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '0' || '9' < lookahead) && - lookahead != 'U' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(292); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(294); - if (lookahead == 'u') ADVANCE(296); - if (lookahead == 'x') ADVANCE(295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); case 168: - if (lookahead != 0 && - lookahead != '\\') ADVANCE(115); - if (lookahead == '\\') ADVANCE(147); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 169: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 109, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 215, + '/', 237, + '0', 324, + ':', 260, + ';', 208, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 269, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170) + lookahead == ' ') SKIP(170); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 170: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 109, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 215, + '/', 237, + '0', 324, + ':', 260, + ';', 208, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 269, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170) + lookahead == ' ') SKIP(170); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 171: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 109, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(172) + lookahead == ' ') SKIP(172); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 172: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 109, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(172) + lookahead == ' ') SKIP(172); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 173: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(104); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 106, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 215, + '/', 237, + '0', 324, + ':', 260, + ';', 208, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 269, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) + lookahead == ' ') SKIP(174); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 174: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(104); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 106, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + '*', 235, + '+', 227, + ',', 219, + '-', 231, + '.', 215, + '/', 237, + '0', 324, + ':', 260, + ';', 208, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 269, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) + lookahead == ' ') SKIP(174); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 175: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(104); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 106, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) + lookahead == ' ') SKIP(176); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 176: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(104); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(230); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(248); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(270); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 266, + '"', 341, + '#', 395, + '$', 106, + '%', 238, + '&', 277, + '\'', 335, + '(', 221, + '*', 233, + '+', 226, + ',', 219, + '-', 230, + '.', 215, + '/', 236, + '0', 324, + ';', 208, + '<', 241, + '=', 99, + '>', 248, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 270, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) + lookahead == ' ') SKIP(176); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 177: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(278); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+') ADVANCE(228); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(232); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '>') ADVANCE(103); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(98); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '%', 97, + '&', 278, + '\'', 335, + '(', 221, + '*', 235, + '+', 228, + ',', 219, + '-', 232, + '.', 215, + '/', 84, + '0', 324, + ':', 98, + ';', 208, + '<', 87, + '=', 223, + '>', 105, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 274, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 100, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) + lookahead == ' ') SKIP(177); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 178: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + ',', 219, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + ';', 208, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(178) + lookahead == ' ') SKIP(178); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 179: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) + lookahead == ' ') SKIP(180); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 180: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '\n', 188, + '\r', 190, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) + lookahead == ' ') SKIP(180); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 181: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(189); - if (lookahead == '\r') ADVANCE(191); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(386); - if (lookahead == '~') ADVANCE(272); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(385); + ADVANCE_MAP( + '\n', 189, + '\r', 191, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 254, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 386, + '~', 272, + '\t', 385, + 0x0b, 385, + '\f', 385, + ' ', 385, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 182: if (eof) ADVANCE(187); - if (lookahead == '\n') ADVANCE(189); - if (lookahead == '\r') ADVANCE(191); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(386); - if (lookahead == '~') ADVANCE(272); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(385); + ADVANCE_MAP( + '\n', 189, + '\r', 191, + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 386, + '~', 272, + '\t', 385, + 0x0b, 385, + '\f', 385, + ' ', 385, + ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 183: if (eof) ADVANCE(187); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(394); - if (lookahead == '$') ADVANCE(339); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(276); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == ')') ADVANCE(222); - if (lookahead == '*') ADVANCE(234); - if (lookahead == '+') ADVANCE(227); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(210); - if (lookahead == '/') ADVANCE(237); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(260); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(247); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '\\') ADVANCE(167); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(274); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'o') ADVANCE(378); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(269); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 266, + '"', 341, + '#', 394, + '$', 339, + '%', 239, + '&', 276, + '\'', 335, + '(', 221, + ')', 222, + '*', 234, + '+', 227, + ',', 219, + '-', 231, + '.', 210, + '/', 237, + '0', 357, + ':', 260, + ';', 208, + '<', 240, + '=', 224, + '>', 247, + '?', 264, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '\\', 21, + ']', 258, + '^', 274, + '`', 114, + 'a', 380, + 'c', 360, + 'i', 373, + 'j', 381, + 'm', 369, + 'o', 378, + 'r', 361, + '{', 218, + '|', 269, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(328); + lookahead == ' ') SKIP(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(329); + if (('A' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 184: if (eof) ADVANCE(187); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(393); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == ',') ADVANCE(219); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '>') ADVANCE(245); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(268); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 265, + '"', 341, + '#', 393, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + ',', 219, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + ';', 208, + '<', 86, + '>', 245, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + ']', 258, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 268, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) + lookahead == ' ') SKIP(184); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 185: if (eof) ADVANCE(187); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '|') ADVANCE(386); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '|', 386, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) + lookahead == ' ') SKIP(186); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 186: if (eof) ADVANCE(187); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(341); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(275); - if (lookahead == '\'') ADVANCE(335); - if (lookahead == '(') ADVANCE(221); - if (lookahead == '*') ADVANCE(233); - if (lookahead == '+') ADVANCE(225); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '0') ADVANCE(324); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(263); - if (lookahead == '@') ADVANCE(77); - if (lookahead == 'C') ADVANCE(363); - if (lookahead == 'J') ADVANCE(367); - if (lookahead == '[') ADVANCE(271); - if (lookahead == '^') ADVANCE(273); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(384); - if (lookahead == '`') ADVANCE(168); - if (lookahead == 'c') ADVANCE(360); - if (lookahead == 'j') ADVANCE(381); - if (lookahead == 'm') ADVANCE(383); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == '{') ADVANCE(218); - if (lookahead == '}') ADVANCE(220); - if (lookahead == '~') ADVANCE(272); + ADVANCE_MAP( + '!', 265, + '"', 341, + '#', 392, + '$', 109, + '&', 275, + '\'', 335, + '(', 221, + '*', 233, + '+', 225, + '-', 229, + '.', 215, + '/', 83, + '0', 324, + '<', 86, + '?', 263, + '@', 78, + 'C', 363, + 'J', 367, + '[', 271, + '^', 273, + '`', 114, + 'c', 360, + 'j', 381, + 'm', 369, + 'r', 361, + '{', 218, + '}', 220, + '~', 272, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) + lookahead == ' ') SKIP(186); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 187: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -12139,10 +12326,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_shebang_token1); if (lookahead == '/') ADVANCE(193); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || + (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(194); if (lookahead != 0 && - lookahead != '\n') ADVANCE(195); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(195); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym_shebang_token1); @@ -12219,12 +12406,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(87); + if (lookahead == '.') ADVANCE(88); END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); + if (lookahead == '.') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); END_STATE(); case 213: ACCEPT_TOKEN(anon_sym_DOT); @@ -12233,11 +12420,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 214: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(390); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_as); @@ -12248,9 +12435,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 218: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -12438,7 +12625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 266: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(250); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 267: ACCEPT_TOKEN(anon_sym_json_DOTdecode); @@ -12485,7 +12672,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 278: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '=') ADVANCE(316); - if (lookahead == '^') ADVANCE(99); + if (lookahead == '^') ADVANCE(101); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_LT_DASH); @@ -12535,34 +12722,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 292: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 293: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 294: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); case 295: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 296: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(158); END_STATE(); case 297: ACCEPT_TOKEN(anon_sym_QMARK_DOT); @@ -12582,9 +12769,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 302: ACCEPT_TOKEN(anon_sym_DOLLARelse); @@ -12595,9 +12782,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 304: ACCEPT_TOKEN(anon_sym_is); @@ -12608,9 +12795,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 306: ACCEPT_TOKEN(anon_sym_BANGis); @@ -12624,9 +12811,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 309: ACCEPT_TOKEN(anon_sym_BANGin); @@ -12672,92 +12859,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 323: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(135); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '_') ADVANCE(153); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(133); - if (lookahead == '_') ADVANCE(151); + lookahead == 'p') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); END_STATE(); case 324: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(144); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(113); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(112); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(90); - if (lookahead == '_') ADVANCE(137); - if (lookahead == '8' || - lookahead == '9') ADVANCE(89); + ADVANCE_MAP( + '.', 147, + '_', 140, + 'B', 116, + 'b', 116, + 'E', 137, + 'e', 137, + 'O', 115, + 'o', 115, + 'X', 91, + 'x', 91, + '8', 90, + '9', 90, + ); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(325); END_STATE(); case 325: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '_') ADVANCE(140); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == '_') ADVANCE(137); + lookahead == 'e') ADVANCE(137); if (lookahead == '8' || - lookahead == '9') ADVANCE(89); + lookahead == '9') ADVANCE(90); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(325); END_STATE(); case 326: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '_') ADVANCE(146); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == '_') ADVANCE(143); + lookahead == 'e') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(326); END_STATE(); case 327: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(327); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(116); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(115); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(328); END_STATE(); case 328: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(328); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(328); END_STATE(); case 329: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(136); - if (lookahead == '0' || - lookahead == '1') ADVANCE(329); + if (lookahead == '_') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(329); END_STATE(); case 330: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(330); + if (lookahead == '_') ADVANCE(139); + if (lookahead == '0' || + lookahead == '1') ADVANCE(330); END_STATE(); case 331: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(113); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(112); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(114); - if (lookahead == '_') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(327); + if (lookahead == '_') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(331); END_STATE(); case 332: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(146); + if (lookahead == '_') ADVANCE(147); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(332); END_STATE(); case 333: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == '_') ADVANCE(144); + if (lookahead == '_') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); case 334: @@ -12796,13 +12985,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == 'C') ADVANCE(363); if (lookahead == 'J') ADVANCE(367); + if (lookahead == '{') ADVANCE(355); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == '{') ADVANCE(355); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 340: ACCEPT_TOKEN(anon_sym_DOLLAR); @@ -12897,25 +13086,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 357: ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '_') ADVANCE(141); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(113); + lookahead == 'b') ADVANCE(116); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(112); + lookahead == 'o') ADVANCE(115); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(114); - if (lookahead == '_') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(327); + lookahead == 'x') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(328); END_STATE(); case 358: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); - if (lookahead == '.') ADVANCE(166); + if (lookahead == '.') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(359); if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 359: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); @@ -12923,9 +13112,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(359); if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 360: ACCEPT_TOKEN(sym_identifier); @@ -12935,9 +13124,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 361: ACCEPT_TOKEN(sym_identifier); @@ -12947,53 +13136,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(110); + if (lookahead == '.') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(359); if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(110); + if (lookahead == '.') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(166); + if (lookahead == '.') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(118); + if (lookahead == '.') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 366: ACCEPT_TOKEN(sym_identifier); @@ -13002,9 +13191,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(359); if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 367: ACCEPT_TOKEN(sym_identifier); @@ -13013,9 +13202,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 368: ACCEPT_TOKEN(sym_identifier); @@ -13024,180 +13213,174 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 369: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(359); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 370: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(384); - if (lookahead == 'n') ADVANCE(308); - if (lookahead == 's') ADVANCE(305); + if (lookahead == 'e') ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 371: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'e') ADVANCE(303); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 372: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'f') ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 373: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(308); + if (lookahead == 's') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'l') ADVANCE(382); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 374: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'n') ADVANCE(365); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 375: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'o') ADVANCE(374); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 376: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'o') ADVANCE(379); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 377: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'p') ADVANCE(368); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 378: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'r') ADVANCE(291); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 379: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'r') ADVANCE(389); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 380: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 's') ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 381: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 's') ADVANCE(375); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 382: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 's') ADVANCE(371); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 383: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); - if (lookahead == 'a') ADVANCE(377); + lookahead == '_') ADVANCE(359); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 384: ACCEPT_TOKEN(sym_identifier); @@ -13205,9 +13388,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_sum_type_token1); @@ -13233,9 +13416,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(384); + lookahead == 0xb5 || + (0x391 <= lookahead && lookahead <= 0x3a9) || + (0x3b1 <= lookahead && lookahead <= 0x3c9)) ADVANCE(384); END_STATE(); case 390: ACCEPT_TOKEN(anon_sym_DOT_DOT); @@ -13273,11 +13456,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead == '/') ADVANCE(396); if (lookahead == '\t' || - lookahead == 11 || + lookahead == 0x0b || lookahead == '\f' || lookahead == ' ') ADVANCE(397); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '\\') ADVANCE(398); END_STATE(); case 398: @@ -13323,26 +13506,28 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'g') ADVANCE(8); - if (lookahead == 'i') ADVANCE(9); - if (lookahead == 'l') ADVANCE(10); - if (lookahead == 'm') ADVANCE(11); - if (lookahead == 'n') ADVANCE(12); - if (lookahead == 'p') ADVANCE(13); - if (lookahead == 'r') ADVANCE(14); - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - if (lookahead == 'u') ADVANCE(17); - if (lookahead == 'v') ADVANCE(18); + ADVANCE_MAP( + '_', 1, + 'a', 2, + 'b', 3, + 'c', 4, + 'd', 5, + 'e', 6, + 'f', 7, + 'g', 8, + 'i', 9, + 'l', 10, + 'm', 11, + 'n', 12, + 'p', 13, + 'r', 14, + 's', 15, + 't', 16, + 'u', 17, + 'v', 18, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(0); if (('E' <= lookahead && lookahead <= 'G') || lookahead == 'S' || lookahead == 'X' || @@ -13985,154 +14170,154 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [93] = {.lex_state = 169}, [94] = {.lex_state = 169}, [95] = {.lex_state = 178}, - [96] = {.lex_state = 169}, - [97] = {.lex_state = 169}, - [98] = {.lex_state = 169}, + [96] = {.lex_state = 64}, + [97] = {.lex_state = 64}, + [98] = {.lex_state = 64}, [99] = {.lex_state = 169}, - [100] = {.lex_state = 169}, - [101] = {.lex_state = 63}, - [102] = {.lex_state = 63}, - [103] = {.lex_state = 63}, - [104] = {.lex_state = 63}, - [105] = {.lex_state = 63}, - [106] = {.lex_state = 63}, - [107] = {.lex_state = 63}, - [108] = {.lex_state = 63}, - [109] = {.lex_state = 63}, - [110] = {.lex_state = 63}, - [111] = {.lex_state = 63}, - [112] = {.lex_state = 63}, - [113] = {.lex_state = 63}, - [114] = {.lex_state = 63}, - [115] = {.lex_state = 63}, - [116] = {.lex_state = 63}, - [117] = {.lex_state = 63}, - [118] = {.lex_state = 63}, - [119] = {.lex_state = 63}, - [120] = {.lex_state = 63}, - [121] = {.lex_state = 63}, - [122] = {.lex_state = 63}, - [123] = {.lex_state = 63}, - [124] = {.lex_state = 63}, - [125] = {.lex_state = 63}, - [126] = {.lex_state = 63}, - [127] = {.lex_state = 63}, - [128] = {.lex_state = 63}, - [129] = {.lex_state = 63}, - [130] = {.lex_state = 63}, - [131] = {.lex_state = 63}, - [132] = {.lex_state = 63}, - [133] = {.lex_state = 63}, - [134] = {.lex_state = 63}, - [135] = {.lex_state = 63}, - [136] = {.lex_state = 63}, - [137] = {.lex_state = 63}, - [138] = {.lex_state = 63}, - [139] = {.lex_state = 63}, - [140] = {.lex_state = 63}, - [141] = {.lex_state = 63}, - [142] = {.lex_state = 63}, - [143] = {.lex_state = 63}, - [144] = {.lex_state = 63}, - [145] = {.lex_state = 63}, - [146] = {.lex_state = 63}, - [147] = {.lex_state = 63}, - [148] = {.lex_state = 63}, - [149] = {.lex_state = 63}, - [150] = {.lex_state = 63}, - [151] = {.lex_state = 63}, - [152] = {.lex_state = 63}, - [153] = {.lex_state = 63}, - [154] = {.lex_state = 63}, - [155] = {.lex_state = 63}, - [156] = {.lex_state = 63}, - [157] = {.lex_state = 63}, - [158] = {.lex_state = 63}, - [159] = {.lex_state = 63}, - [160] = {.lex_state = 63}, - [161] = {.lex_state = 63}, - [162] = {.lex_state = 63}, - [163] = {.lex_state = 63}, - [164] = {.lex_state = 63}, - [165] = {.lex_state = 63}, - [166] = {.lex_state = 63}, - [167] = {.lex_state = 63}, - [168] = {.lex_state = 63}, - [169] = {.lex_state = 63}, - [170] = {.lex_state = 63}, - [171] = {.lex_state = 63}, - [172] = {.lex_state = 63}, - [173] = {.lex_state = 63}, - [174] = {.lex_state = 63}, - [175] = {.lex_state = 63}, - [176] = {.lex_state = 63}, - [177] = {.lex_state = 63}, - [178] = {.lex_state = 63}, - [179] = {.lex_state = 63}, - [180] = {.lex_state = 63}, - [181] = {.lex_state = 63}, - [182] = {.lex_state = 63}, - [183] = {.lex_state = 63}, - [184] = {.lex_state = 63}, - [185] = {.lex_state = 63}, - [186] = {.lex_state = 63}, - [187] = {.lex_state = 63}, - [188] = {.lex_state = 63}, - [189] = {.lex_state = 63}, - [190] = {.lex_state = 63}, - [191] = {.lex_state = 63}, - [192] = {.lex_state = 63}, - [193] = {.lex_state = 63}, - [194] = {.lex_state = 63}, - [195] = {.lex_state = 63}, - [196] = {.lex_state = 63}, - [197] = {.lex_state = 63}, - [198] = {.lex_state = 63}, - [199] = {.lex_state = 63}, - [200] = {.lex_state = 63}, - [201] = {.lex_state = 63}, - [202] = {.lex_state = 63}, - [203] = {.lex_state = 63}, - [204] = {.lex_state = 63}, - [205] = {.lex_state = 63}, - [206] = {.lex_state = 63}, - [207] = {.lex_state = 63}, - [208] = {.lex_state = 63}, - [209] = {.lex_state = 63}, - [210] = {.lex_state = 171}, - [211] = {.lex_state = 63}, - [212] = {.lex_state = 171}, - [213] = {.lex_state = 63}, - [214] = {.lex_state = 63}, - [215] = {.lex_state = 63}, - [216] = {.lex_state = 171}, - [217] = {.lex_state = 63}, - [218] = {.lex_state = 171}, - [219] = {.lex_state = 63}, - [220] = {.lex_state = 63}, + [100] = {.lex_state = 64}, + [101] = {.lex_state = 169}, + [102] = {.lex_state = 64}, + [103] = {.lex_state = 64}, + [104] = {.lex_state = 169}, + [105] = {.lex_state = 64}, + [106] = {.lex_state = 64}, + [107] = {.lex_state = 169}, + [108] = {.lex_state = 64}, + [109] = {.lex_state = 64}, + [110] = {.lex_state = 64}, + [111] = {.lex_state = 169}, + [112] = {.lex_state = 64}, + [113] = {.lex_state = 64}, + [114] = {.lex_state = 64}, + [115] = {.lex_state = 64}, + [116] = {.lex_state = 64}, + [117] = {.lex_state = 64}, + [118] = {.lex_state = 64}, + [119] = {.lex_state = 64}, + [120] = {.lex_state = 64}, + [121] = {.lex_state = 64}, + [122] = {.lex_state = 64}, + [123] = {.lex_state = 64}, + [124] = {.lex_state = 64}, + [125] = {.lex_state = 64}, + [126] = {.lex_state = 64}, + [127] = {.lex_state = 64}, + [128] = {.lex_state = 64}, + [129] = {.lex_state = 64}, + [130] = {.lex_state = 64}, + [131] = {.lex_state = 64}, + [132] = {.lex_state = 64}, + [133] = {.lex_state = 64}, + [134] = {.lex_state = 64}, + [135] = {.lex_state = 64}, + [136] = {.lex_state = 64}, + [137] = {.lex_state = 64}, + [138] = {.lex_state = 64}, + [139] = {.lex_state = 64}, + [140] = {.lex_state = 64}, + [141] = {.lex_state = 64}, + [142] = {.lex_state = 64}, + [143] = {.lex_state = 64}, + [144] = {.lex_state = 64}, + [145] = {.lex_state = 64}, + [146] = {.lex_state = 64}, + [147] = {.lex_state = 64}, + [148] = {.lex_state = 64}, + [149] = {.lex_state = 64}, + [150] = {.lex_state = 64}, + [151] = {.lex_state = 64}, + [152] = {.lex_state = 64}, + [153] = {.lex_state = 64}, + [154] = {.lex_state = 64}, + [155] = {.lex_state = 64}, + [156] = {.lex_state = 64}, + [157] = {.lex_state = 64}, + [158] = {.lex_state = 64}, + [159] = {.lex_state = 64}, + [160] = {.lex_state = 64}, + [161] = {.lex_state = 64}, + [162] = {.lex_state = 64}, + [163] = {.lex_state = 64}, + [164] = {.lex_state = 64}, + [165] = {.lex_state = 64}, + [166] = {.lex_state = 64}, + [167] = {.lex_state = 64}, + [168] = {.lex_state = 64}, + [169] = {.lex_state = 64}, + [170] = {.lex_state = 64}, + [171] = {.lex_state = 64}, + [172] = {.lex_state = 64}, + [173] = {.lex_state = 64}, + [174] = {.lex_state = 64}, + [175] = {.lex_state = 64}, + [176] = {.lex_state = 64}, + [177] = {.lex_state = 64}, + [178] = {.lex_state = 64}, + [179] = {.lex_state = 64}, + [180] = {.lex_state = 64}, + [181] = {.lex_state = 64}, + [182] = {.lex_state = 64}, + [183] = {.lex_state = 64}, + [184] = {.lex_state = 64}, + [185] = {.lex_state = 64}, + [186] = {.lex_state = 64}, + [187] = {.lex_state = 64}, + [188] = {.lex_state = 64}, + [189] = {.lex_state = 64}, + [190] = {.lex_state = 64}, + [191] = {.lex_state = 64}, + [192] = {.lex_state = 64}, + [193] = {.lex_state = 64}, + [194] = {.lex_state = 64}, + [195] = {.lex_state = 64}, + [196] = {.lex_state = 64}, + [197] = {.lex_state = 64}, + [198] = {.lex_state = 64}, + [199] = {.lex_state = 64}, + [200] = {.lex_state = 64}, + [201] = {.lex_state = 64}, + [202] = {.lex_state = 64}, + [203] = {.lex_state = 64}, + [204] = {.lex_state = 64}, + [205] = {.lex_state = 64}, + [206] = {.lex_state = 64}, + [207] = {.lex_state = 64}, + [208] = {.lex_state = 64}, + [209] = {.lex_state = 64}, + [210] = {.lex_state = 64}, + [211] = {.lex_state = 64}, + [212] = {.lex_state = 64}, + [213] = {.lex_state = 64}, + [214] = {.lex_state = 64}, + [215] = {.lex_state = 64}, + [216] = {.lex_state = 64}, + [217] = {.lex_state = 171}, + [218] = {.lex_state = 64}, + [219] = {.lex_state = 64}, + [220] = {.lex_state = 64}, [221] = {.lex_state = 64}, - [222] = {.lex_state = 63}, - [223] = {.lex_state = 63}, - [224] = {.lex_state = 63}, - [225] = {.lex_state = 171}, - [226] = {.lex_state = 63}, - [227] = {.lex_state = 63}, - [228] = {.lex_state = 63}, - [229] = {.lex_state = 63}, - [230] = {.lex_state = 63}, - [231] = {.lex_state = 63}, - [232] = {.lex_state = 63}, - [233] = {.lex_state = 63}, - [234] = {.lex_state = 63}, - [235] = {.lex_state = 63}, - [236] = {.lex_state = 63}, - [237] = {.lex_state = 63}, - [238] = {.lex_state = 63}, - [239] = {.lex_state = 63}, - [240] = {.lex_state = 63}, - [241] = {.lex_state = 63}, - [242] = {.lex_state = 63}, - [243] = {.lex_state = 169}, + [222] = {.lex_state = 64}, + [223] = {.lex_state = 171}, + [224] = {.lex_state = 64}, + [225] = {.lex_state = 64}, + [226] = {.lex_state = 64}, + [227] = {.lex_state = 171}, + [228] = {.lex_state = 64}, + [229] = {.lex_state = 64}, + [230] = {.lex_state = 171}, + [231] = {.lex_state = 64}, + [232] = {.lex_state = 64}, + [233] = {.lex_state = 64}, + [234] = {.lex_state = 64}, + [235] = {.lex_state = 65}, + [236] = {.lex_state = 171}, + [237] = {.lex_state = 64}, + [238] = {.lex_state = 64}, + [239] = {.lex_state = 64}, + [240] = {.lex_state = 64}, + [241] = {.lex_state = 64}, + [242] = {.lex_state = 169}, + [243] = {.lex_state = 64}, [244] = {.lex_state = 169}, [245] = {.lex_state = 169}, [246] = {.lex_state = 169}, @@ -14149,728 +14334,728 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 169}, [258] = {.lex_state = 169}, [259] = {.lex_state = 173}, - [260] = {.lex_state = 169}, - [261] = {.lex_state = 63}, - [262] = {.lex_state = 63}, - [263] = {.lex_state = 63}, - [264] = {.lex_state = 63}, - [265] = {.lex_state = 63}, - [266] = {.lex_state = 63}, - [267] = {.lex_state = 63}, - [268] = {.lex_state = 63}, - [269] = {.lex_state = 63}, - [270] = {.lex_state = 173}, - [271] = {.lex_state = 63}, - [272] = {.lex_state = 63}, - [273] = {.lex_state = 63}, - [274] = {.lex_state = 63}, - [275] = {.lex_state = 63}, - [276] = {.lex_state = 169}, - [277] = {.lex_state = 63}, - [278] = {.lex_state = 63}, - [279] = {.lex_state = 63}, - [280] = {.lex_state = 63}, - [281] = {.lex_state = 63}, - [282] = {.lex_state = 63}, - [283] = {.lex_state = 63}, - [284] = {.lex_state = 63}, - [285] = {.lex_state = 63}, - [286] = {.lex_state = 63}, - [287] = {.lex_state = 63}, - [288] = {.lex_state = 63}, - [289] = {.lex_state = 63}, + [260] = {.lex_state = 64}, + [261] = {.lex_state = 173}, + [262] = {.lex_state = 64}, + [263] = {.lex_state = 64}, + [264] = {.lex_state = 64}, + [265] = {.lex_state = 64}, + [266] = {.lex_state = 64}, + [267] = {.lex_state = 64}, + [268] = {.lex_state = 64}, + [269] = {.lex_state = 64}, + [270] = {.lex_state = 64}, + [271] = {.lex_state = 173}, + [272] = {.lex_state = 64}, + [273] = {.lex_state = 64}, + [274] = {.lex_state = 64}, + [275] = {.lex_state = 64}, + [276] = {.lex_state = 64}, + [277] = {.lex_state = 64}, + [278] = {.lex_state = 64}, + [279] = {.lex_state = 64}, + [280] = {.lex_state = 64}, + [281] = {.lex_state = 169}, + [282] = {.lex_state = 64}, + [283] = {.lex_state = 64}, + [284] = {.lex_state = 64}, + [285] = {.lex_state = 64}, + [286] = {.lex_state = 64}, + [287] = {.lex_state = 64}, + [288] = {.lex_state = 169}, + [289] = {.lex_state = 64}, [290] = {.lex_state = 169}, - [291] = {.lex_state = 63}, - [292] = {.lex_state = 169}, - [293] = {.lex_state = 63}, - [294] = {.lex_state = 63}, - [295] = {.lex_state = 63}, - [296] = {.lex_state = 63}, - [297] = {.lex_state = 63}, - [298] = {.lex_state = 63}, - [299] = {.lex_state = 63}, - [300] = {.lex_state = 63}, - [301] = {.lex_state = 63}, - [302] = {.lex_state = 63}, - [303] = {.lex_state = 63}, - [304] = {.lex_state = 63}, - [305] = {.lex_state = 63}, - [306] = {.lex_state = 63}, - [307] = {.lex_state = 63}, - [308] = {.lex_state = 63}, - [309] = {.lex_state = 63}, - [310] = {.lex_state = 63}, - [311] = {.lex_state = 173}, - [312] = {.lex_state = 169}, - [313] = {.lex_state = 63}, - [314] = {.lex_state = 63}, - [315] = {.lex_state = 63}, - [316] = {.lex_state = 63}, - [317] = {.lex_state = 173}, - [318] = {.lex_state = 63}, - [319] = {.lex_state = 63}, - [320] = {.lex_state = 63}, - [321] = {.lex_state = 63}, - [322] = {.lex_state = 63}, - [323] = {.lex_state = 63}, - [324] = {.lex_state = 63}, - [325] = {.lex_state = 63}, - [326] = {.lex_state = 63}, - [327] = {.lex_state = 63}, - [328] = {.lex_state = 63}, - [329] = {.lex_state = 63}, - [330] = {.lex_state = 63}, - [331] = {.lex_state = 63}, - [332] = {.lex_state = 63}, + [291] = {.lex_state = 169}, + [292] = {.lex_state = 64}, + [293] = {.lex_state = 64}, + [294] = {.lex_state = 64}, + [295] = {.lex_state = 64}, + [296] = {.lex_state = 64}, + [297] = {.lex_state = 64}, + [298] = {.lex_state = 64}, + [299] = {.lex_state = 64}, + [300] = {.lex_state = 64}, + [301] = {.lex_state = 64}, + [302] = {.lex_state = 64}, + [303] = {.lex_state = 64}, + [304] = {.lex_state = 64}, + [305] = {.lex_state = 64}, + [306] = {.lex_state = 64}, + [307] = {.lex_state = 64}, + [308] = {.lex_state = 64}, + [309] = {.lex_state = 64}, + [310] = {.lex_state = 64}, + [311] = {.lex_state = 64}, + [312] = {.lex_state = 173}, + [313] = {.lex_state = 169}, + [314] = {.lex_state = 64}, + [315] = {.lex_state = 64}, + [316] = {.lex_state = 64}, + [317] = {.lex_state = 64}, + [318] = {.lex_state = 64}, + [319] = {.lex_state = 64}, + [320] = {.lex_state = 64}, + [321] = {.lex_state = 64}, + [322] = {.lex_state = 64}, + [323] = {.lex_state = 64}, + [324] = {.lex_state = 64}, + [325] = {.lex_state = 64}, + [326] = {.lex_state = 64}, + [327] = {.lex_state = 64}, + [328] = {.lex_state = 64}, + [329] = {.lex_state = 64}, + [330] = {.lex_state = 64}, + [331] = {.lex_state = 64}, + [332] = {.lex_state = 64}, [333] = {.lex_state = 169}, - [334] = {.lex_state = 63}, - [335] = {.lex_state = 63}, + [334] = {.lex_state = 169}, + [335] = {.lex_state = 64}, [336] = {.lex_state = 169}, - [337] = {.lex_state = 64}, - [338] = {.lex_state = 64}, - [339] = {.lex_state = 64}, - [340] = {.lex_state = 63}, + [337] = {.lex_state = 65}, + [338] = {.lex_state = 65}, + [339] = {.lex_state = 65}, + [340] = {.lex_state = 64}, [341] = {.lex_state = 169}, - [342] = {.lex_state = 63}, - [343] = {.lex_state = 169}, - [344] = {.lex_state = 63}, - [345] = {.lex_state = 63}, - [346] = {.lex_state = 169}, - [347] = {.lex_state = 64}, + [342] = {.lex_state = 169}, + [343] = {.lex_state = 64}, + [344] = {.lex_state = 64}, + [345] = {.lex_state = 64}, + [346] = {.lex_state = 64}, + [347] = {.lex_state = 65}, [348] = {.lex_state = 169}, - [349] = {.lex_state = 63}, - [350] = {.lex_state = 64}, - [351] = {.lex_state = 63}, - [352] = {.lex_state = 63}, - [353] = {.lex_state = 63}, - [354] = {.lex_state = 64}, - [355] = {.lex_state = 64}, - [356] = {.lex_state = 169}, + [349] = {.lex_state = 64}, + [350] = {.lex_state = 65}, + [351] = {.lex_state = 169}, + [352] = {.lex_state = 64}, + [353] = {.lex_state = 64}, + [354] = {.lex_state = 65}, + [355] = {.lex_state = 65}, + [356] = {.lex_state = 64}, [357] = {.lex_state = 169}, [358] = {.lex_state = 169}, [359] = {.lex_state = 169}, - [360] = {.lex_state = 63}, - [361] = {.lex_state = 63}, - [362] = {.lex_state = 64}, - [363] = {.lex_state = 64}, - [364] = {.lex_state = 64}, - [365] = {.lex_state = 169}, + [360] = {.lex_state = 169}, + [361] = {.lex_state = 64}, + [362] = {.lex_state = 65}, + [363] = {.lex_state = 65}, + [364] = {.lex_state = 65}, + [365] = {.lex_state = 65}, [366] = {.lex_state = 64}, - [367] = {.lex_state = 63}, - [368] = {.lex_state = 169}, - [369] = {.lex_state = 63}, - [370] = {.lex_state = 64}, - [371] = {.lex_state = 63}, - [372] = {.lex_state = 169}, - [373] = {.lex_state = 63}, - [374] = {.lex_state = 63}, - [375] = {.lex_state = 63}, - [376] = {.lex_state = 63}, - [377] = {.lex_state = 64}, - [378] = {.lex_state = 64}, + [367] = {.lex_state = 169}, + [368] = {.lex_state = 64}, + [369] = {.lex_state = 65}, + [370] = {.lex_state = 169}, + [371] = {.lex_state = 64}, + [372] = {.lex_state = 64}, + [373] = {.lex_state = 64}, + [374] = {.lex_state = 64}, + [375] = {.lex_state = 64}, + [376] = {.lex_state = 65}, + [377] = {.lex_state = 65}, + [378] = {.lex_state = 65}, [379] = {.lex_state = 169}, - [380] = {.lex_state = 64}, - [381] = {.lex_state = 63}, - [382] = {.lex_state = 169}, + [380] = {.lex_state = 169}, + [381] = {.lex_state = 64}, + [382] = {.lex_state = 64}, [383] = {.lex_state = 169}, - [384] = {.lex_state = 63}, - [385] = {.lex_state = 169}, + [384] = {.lex_state = 64}, + [385] = {.lex_state = 64}, [386] = {.lex_state = 169}, - [387] = {.lex_state = 63}, + [387] = {.lex_state = 169}, [388] = {.lex_state = 169}, - [389] = {.lex_state = 63}, - [390] = {.lex_state = 63}, - [391] = {.lex_state = 169}, - [392] = {.lex_state = 169}, - [393] = {.lex_state = 63}, - [394] = {.lex_state = 63}, - [395] = {.lex_state = 63}, - [396] = {.lex_state = 63}, - [397] = {.lex_state = 63}, - [398] = {.lex_state = 64}, - [399] = {.lex_state = 64}, - [400] = {.lex_state = 169}, - [401] = {.lex_state = 63}, - [402] = {.lex_state = 169}, + [389] = {.lex_state = 169}, + [390] = {.lex_state = 169}, + [391] = {.lex_state = 64}, + [392] = {.lex_state = 64}, + [393] = {.lex_state = 64}, + [394] = {.lex_state = 64}, + [395] = {.lex_state = 169}, + [396] = {.lex_state = 64}, + [397] = {.lex_state = 64}, + [398] = {.lex_state = 65}, + [399] = {.lex_state = 65}, + [400] = {.lex_state = 65}, + [401] = {.lex_state = 169}, + [402] = {.lex_state = 64}, [403] = {.lex_state = 169}, - [404] = {.lex_state = 64}, + [404] = {.lex_state = 169}, [405] = {.lex_state = 169}, - [406] = {.lex_state = 169}, + [406] = {.lex_state = 64}, [407] = {.lex_state = 169}, [408] = {.lex_state = 169}, - [409] = {.lex_state = 63}, - [410] = {.lex_state = 63}, - [411] = {.lex_state = 169}, + [409] = {.lex_state = 169}, + [410] = {.lex_state = 65}, + [411] = {.lex_state = 64}, [412] = {.lex_state = 169}, - [413] = {.lex_state = 64}, + [413] = {.lex_state = 169}, [414] = {.lex_state = 169}, - [415] = {.lex_state = 63}, - [416] = {.lex_state = 63}, - [417] = {.lex_state = 63}, - [418] = {.lex_state = 169}, - [419] = {.lex_state = 63}, - [420] = {.lex_state = 63}, - [421] = {.lex_state = 63}, - [422] = {.lex_state = 169}, - [423] = {.lex_state = 169}, - [424] = {.lex_state = 63}, - [425] = {.lex_state = 63}, + [415] = {.lex_state = 64}, + [416] = {.lex_state = 64}, + [417] = {.lex_state = 64}, + [418] = {.lex_state = 64}, + [419] = {.lex_state = 64}, + [420] = {.lex_state = 64}, + [421] = {.lex_state = 169}, + [422] = {.lex_state = 64}, + [423] = {.lex_state = 64}, + [424] = {.lex_state = 169}, + [425] = {.lex_state = 169}, [426] = {.lex_state = 169}, [427] = {.lex_state = 169}, [428] = {.lex_state = 169}, - [429] = {.lex_state = 63}, - [430] = {.lex_state = 169}, + [429] = {.lex_state = 169}, + [430] = {.lex_state = 64}, [431] = {.lex_state = 169}, - [432] = {.lex_state = 64}, - [433] = {.lex_state = 169}, + [432] = {.lex_state = 65}, + [433] = {.lex_state = 65}, [434] = {.lex_state = 169}, - [435] = {.lex_state = 64}, + [435] = {.lex_state = 169}, [436] = {.lex_state = 169}, - [437] = {.lex_state = 63}, + [437] = {.lex_state = 64}, [438] = {.lex_state = 169}, - [439] = {.lex_state = 169}, - [440] = {.lex_state = 169}, - [441] = {.lex_state = 63}, + [439] = {.lex_state = 64}, + [440] = {.lex_state = 64}, + [441] = {.lex_state = 169}, [442] = {.lex_state = 169}, - [443] = {.lex_state = 63}, - [444] = {.lex_state = 169}, - [445] = {.lex_state = 63}, + [443] = {.lex_state = 169}, + [444] = {.lex_state = 64}, + [445] = {.lex_state = 169}, [446] = {.lex_state = 169}, [447] = {.lex_state = 169}, [448] = {.lex_state = 169}, - [449] = {.lex_state = 169}, + [449] = {.lex_state = 64}, [450] = {.lex_state = 169}, - [451] = {.lex_state = 63}, - [452] = {.lex_state = 63}, + [451] = {.lex_state = 64}, + [452] = {.lex_state = 169}, [453] = {.lex_state = 169}, [454] = {.lex_state = 169}, [455] = {.lex_state = 169}, [456] = {.lex_state = 169}, [457] = {.lex_state = 169}, - [458] = {.lex_state = 64}, - [459] = {.lex_state = 169}, + [458] = {.lex_state = 65}, + [459] = {.lex_state = 64}, [460] = {.lex_state = 169}, [461] = {.lex_state = 169}, - [462] = {.lex_state = 169}, - [463] = {.lex_state = 63}, - [464] = {.lex_state = 63}, - [465] = {.lex_state = 63}, + [462] = {.lex_state = 64}, + [463] = {.lex_state = 169}, + [464] = {.lex_state = 64}, + [465] = {.lex_state = 64}, [466] = {.lex_state = 169}, [467] = {.lex_state = 169}, [468] = {.lex_state = 169}, [469] = {.lex_state = 169}, [470] = {.lex_state = 169}, [471] = {.lex_state = 169}, - [472] = {.lex_state = 169}, + [472] = {.lex_state = 64}, [473] = {.lex_state = 169}, [474] = {.lex_state = 169}, [475] = {.lex_state = 169}, - [476] = {.lex_state = 169}, - [477] = {.lex_state = 63}, - [478] = {.lex_state = 169}, + [476] = {.lex_state = 64}, + [477] = {.lex_state = 169}, + [478] = {.lex_state = 64}, [479] = {.lex_state = 169}, - [480] = {.lex_state = 63}, + [480] = {.lex_state = 169}, [481] = {.lex_state = 169}, [482] = {.lex_state = 169}, - [483] = {.lex_state = 63}, + [483] = {.lex_state = 169}, [484] = {.lex_state = 169}, [485] = {.lex_state = 169}, - [486] = {.lex_state = 63}, - [487] = {.lex_state = 169}, - [488] = {.lex_state = 63}, - [489] = {.lex_state = 63}, - [490] = {.lex_state = 63}, - [491] = {.lex_state = 169}, - [492] = {.lex_state = 63}, + [486] = {.lex_state = 64}, + [487] = {.lex_state = 64}, + [488] = {.lex_state = 64}, + [489] = {.lex_state = 64}, + [490] = {.lex_state = 169}, + [491] = {.lex_state = 64}, + [492] = {.lex_state = 64}, [493] = {.lex_state = 169}, - [494] = {.lex_state = 63}, - [495] = {.lex_state = 169}, - [496] = {.lex_state = 169}, + [494] = {.lex_state = 169}, + [495] = {.lex_state = 64}, + [496] = {.lex_state = 65}, [497] = {.lex_state = 169}, - [498] = {.lex_state = 169}, + [498] = {.lex_state = 64}, [499] = {.lex_state = 169}, - [500] = {.lex_state = 64}, - [501] = {.lex_state = 64}, + [500] = {.lex_state = 65}, + [501] = {.lex_state = 169}, [502] = {.lex_state = 169}, [503] = {.lex_state = 169}, - [504] = {.lex_state = 63}, - [505] = {.lex_state = 63}, + [504] = {.lex_state = 64}, + [505] = {.lex_state = 169}, [506] = {.lex_state = 169}, - [507] = {.lex_state = 63}, + [507] = {.lex_state = 64}, [508] = {.lex_state = 169}, - [509] = {.lex_state = 63}, + [509] = {.lex_state = 64}, [510] = {.lex_state = 169}, - [511] = {.lex_state = 63}, - [512] = {.lex_state = 63}, + [511] = {.lex_state = 169}, + [512] = {.lex_state = 169}, [513] = {.lex_state = 169}, [514] = {.lex_state = 169}, [515] = {.lex_state = 169}, - [516] = {.lex_state = 63}, + [516] = {.lex_state = 64}, [517] = {.lex_state = 169}, - [518] = {.lex_state = 169}, - [519] = {.lex_state = 63}, + [518] = {.lex_state = 64}, + [519] = {.lex_state = 169}, [520] = {.lex_state = 169}, - [521] = {.lex_state = 169}, + [521] = {.lex_state = 64}, [522] = {.lex_state = 169}, [523] = {.lex_state = 169}, - [524] = {.lex_state = 63}, - [525] = {.lex_state = 169}, - [526] = {.lex_state = 63}, - [527] = {.lex_state = 169}, + [524] = {.lex_state = 169}, + [525] = {.lex_state = 64}, + [526] = {.lex_state = 169}, + [527] = {.lex_state = 64}, [528] = {.lex_state = 169}, [529] = {.lex_state = 169}, - [530] = {.lex_state = 169}, - [531] = {.lex_state = 63}, - [532] = {.lex_state = 63}, - [533] = {.lex_state = 63}, - [534] = {.lex_state = 63}, - [535] = {.lex_state = 63}, - [536] = {.lex_state = 63}, - [537] = {.lex_state = 63}, - [538] = {.lex_state = 63}, - [539] = {.lex_state = 63}, - [540] = {.lex_state = 171}, - [541] = {.lex_state = 63}, - [542] = {.lex_state = 63}, - [543] = {.lex_state = 63}, + [530] = {.lex_state = 64}, + [531] = {.lex_state = 169}, + [532] = {.lex_state = 64}, + [533] = {.lex_state = 64}, + [534] = {.lex_state = 64}, + [535] = {.lex_state = 64}, + [536] = {.lex_state = 64}, + [537] = {.lex_state = 64}, + [538] = {.lex_state = 64}, + [539] = {.lex_state = 64}, + [540] = {.lex_state = 64}, + [541] = {.lex_state = 64}, + [542] = {.lex_state = 171}, + [543] = {.lex_state = 64}, [544] = {.lex_state = 171}, - [545] = {.lex_state = 63}, - [546] = {.lex_state = 171}, - [547] = {.lex_state = 63}, + [545] = {.lex_state = 64}, + [546] = {.lex_state = 64}, + [547] = {.lex_state = 171}, [548] = {.lex_state = 171}, - [549] = {.lex_state = 63}, - [550] = {.lex_state = 63}, - [551] = {.lex_state = 63}, - [552] = {.lex_state = 63}, - [553] = {.lex_state = 63}, - [554] = {.lex_state = 63}, - [555] = {.lex_state = 63}, - [556] = {.lex_state = 63}, - [557] = {.lex_state = 63}, - [558] = {.lex_state = 63}, - [559] = {.lex_state = 63}, - [560] = {.lex_state = 63}, - [561] = {.lex_state = 63}, - [562] = {.lex_state = 63}, - [563] = {.lex_state = 63}, - [564] = {.lex_state = 63}, - [565] = {.lex_state = 63}, - [566] = {.lex_state = 63}, - [567] = {.lex_state = 171}, - [568] = {.lex_state = 63}, - [569] = {.lex_state = 63}, - [570] = {.lex_state = 63}, - [571] = {.lex_state = 63}, - [572] = {.lex_state = 63}, - [573] = {.lex_state = 63}, - [574] = {.lex_state = 63}, - [575] = {.lex_state = 63}, - [576] = {.lex_state = 63}, - [577] = {.lex_state = 63}, - [578] = {.lex_state = 63}, - [579] = {.lex_state = 63}, - [580] = {.lex_state = 63}, - [581] = {.lex_state = 63}, - [582] = {.lex_state = 63}, - [583] = {.lex_state = 63}, - [584] = {.lex_state = 63}, - [585] = {.lex_state = 63}, - [586] = {.lex_state = 63}, - [587] = {.lex_state = 63}, - [588] = {.lex_state = 63}, - [589] = {.lex_state = 63}, - [590] = {.lex_state = 63}, - [591] = {.lex_state = 63}, - [592] = {.lex_state = 63}, - [593] = {.lex_state = 63}, - [594] = {.lex_state = 63}, - [595] = {.lex_state = 63}, - [596] = {.lex_state = 63}, - [597] = {.lex_state = 63}, - [598] = {.lex_state = 63}, - [599] = {.lex_state = 63}, - [600] = {.lex_state = 63}, - [601] = {.lex_state = 63}, - [602] = {.lex_state = 63}, - [603] = {.lex_state = 63}, - [604] = {.lex_state = 63}, - [605] = {.lex_state = 63}, - [606] = {.lex_state = 63}, - [607] = {.lex_state = 63}, - [608] = {.lex_state = 63}, - [609] = {.lex_state = 63}, - [610] = {.lex_state = 63}, - [611] = {.lex_state = 63}, - [612] = {.lex_state = 63}, - [613] = {.lex_state = 63}, - [614] = {.lex_state = 63}, - [615] = {.lex_state = 63}, - [616] = {.lex_state = 63}, - [617] = {.lex_state = 63}, - [618] = {.lex_state = 63}, - [619] = {.lex_state = 63}, - [620] = {.lex_state = 63}, - [621] = {.lex_state = 63}, - [622] = {.lex_state = 63}, - [623] = {.lex_state = 63}, - [624] = {.lex_state = 63}, - [625] = {.lex_state = 63}, - [626] = {.lex_state = 63}, - [627] = {.lex_state = 63}, - [628] = {.lex_state = 63}, - [629] = {.lex_state = 63}, - [630] = {.lex_state = 63}, - [631] = {.lex_state = 63}, - [632] = {.lex_state = 63}, - [633] = {.lex_state = 63}, - [634] = {.lex_state = 63}, - [635] = {.lex_state = 63}, - [636] = {.lex_state = 63}, - [637] = {.lex_state = 63}, - [638] = {.lex_state = 63}, - [639] = {.lex_state = 63}, - [640] = {.lex_state = 63}, - [641] = {.lex_state = 63}, - [642] = {.lex_state = 63}, - [643] = {.lex_state = 63}, - [644] = {.lex_state = 63}, - [645] = {.lex_state = 63}, - [646] = {.lex_state = 63}, - [647] = {.lex_state = 63}, - [648] = {.lex_state = 63}, - [649] = {.lex_state = 63}, - [650] = {.lex_state = 63}, - [651] = {.lex_state = 63}, - [652] = {.lex_state = 63}, - [653] = {.lex_state = 63}, - [654] = {.lex_state = 63}, - [655] = {.lex_state = 63}, - [656] = {.lex_state = 63}, - [657] = {.lex_state = 63}, - [658] = {.lex_state = 63}, - [659] = {.lex_state = 63}, - [660] = {.lex_state = 63}, - [661] = {.lex_state = 63}, - [662] = {.lex_state = 63}, - [663] = {.lex_state = 63}, - [664] = {.lex_state = 63}, - [665] = {.lex_state = 63}, - [666] = {.lex_state = 63}, - [667] = {.lex_state = 63}, - [668] = {.lex_state = 63}, - [669] = {.lex_state = 63}, - [670] = {.lex_state = 63}, - [671] = {.lex_state = 63}, - [672] = {.lex_state = 63}, - [673] = {.lex_state = 63}, - [674] = {.lex_state = 63}, - [675] = {.lex_state = 63}, - [676] = {.lex_state = 63}, - [677] = {.lex_state = 63}, - [678] = {.lex_state = 63}, - [679] = {.lex_state = 63}, - [680] = {.lex_state = 63}, - [681] = {.lex_state = 63}, - [682] = {.lex_state = 63}, - [683] = {.lex_state = 63}, - [684] = {.lex_state = 63}, - [685] = {.lex_state = 63}, - [686] = {.lex_state = 63}, - [687] = {.lex_state = 63}, - [688] = {.lex_state = 63}, - [689] = {.lex_state = 63}, - [690] = {.lex_state = 63}, - [691] = {.lex_state = 63}, - [692] = {.lex_state = 63}, - [693] = {.lex_state = 63}, - [694] = {.lex_state = 63}, - [695] = {.lex_state = 63}, - [696] = {.lex_state = 63}, - [697] = {.lex_state = 63}, - [698] = {.lex_state = 63}, - [699] = {.lex_state = 63}, - [700] = {.lex_state = 63}, - [701] = {.lex_state = 63}, - [702] = {.lex_state = 63}, - [703] = {.lex_state = 63}, - [704] = {.lex_state = 63}, - [705] = {.lex_state = 63}, - [706] = {.lex_state = 63}, - [707] = {.lex_state = 63}, - [708] = {.lex_state = 63}, - [709] = {.lex_state = 63}, - [710] = {.lex_state = 63}, - [711] = {.lex_state = 63}, - [712] = {.lex_state = 63}, - [713] = {.lex_state = 63}, - [714] = {.lex_state = 63}, - [715] = {.lex_state = 63}, - [716] = {.lex_state = 63}, - [717] = {.lex_state = 63}, - [718] = {.lex_state = 63}, - [719] = {.lex_state = 63}, - [720] = {.lex_state = 63}, - [721] = {.lex_state = 63}, - [722] = {.lex_state = 63}, - [723] = {.lex_state = 63}, - [724] = {.lex_state = 63}, - [725] = {.lex_state = 63}, - [726] = {.lex_state = 63}, - [727] = {.lex_state = 63}, - [728] = {.lex_state = 63}, - [729] = {.lex_state = 63}, - [730] = {.lex_state = 63}, - [731] = {.lex_state = 63}, - [732] = {.lex_state = 63}, - [733] = {.lex_state = 63}, - [734] = {.lex_state = 63}, - [735] = {.lex_state = 63}, - [736] = {.lex_state = 63}, - [737] = {.lex_state = 63}, - [738] = {.lex_state = 63}, - [739] = {.lex_state = 63}, - [740] = {.lex_state = 63}, - [741] = {.lex_state = 63}, - [742] = {.lex_state = 63}, - [743] = {.lex_state = 63}, - [744] = {.lex_state = 63}, - [745] = {.lex_state = 63}, - [746] = {.lex_state = 63}, - [747] = {.lex_state = 63}, - [748] = {.lex_state = 63}, - [749] = {.lex_state = 63}, - [750] = {.lex_state = 63}, - [751] = {.lex_state = 63}, - [752] = {.lex_state = 63}, - [753] = {.lex_state = 63}, - [754] = {.lex_state = 63}, - [755] = {.lex_state = 63}, - [756] = {.lex_state = 63}, - [757] = {.lex_state = 63}, - [758] = {.lex_state = 63}, - [759] = {.lex_state = 63}, - [760] = {.lex_state = 63}, - [761] = {.lex_state = 63}, - [762] = {.lex_state = 63}, - [763] = {.lex_state = 63}, - [764] = {.lex_state = 63}, - [765] = {.lex_state = 63}, - [766] = {.lex_state = 63}, - [767] = {.lex_state = 63}, - [768] = {.lex_state = 63}, - [769] = {.lex_state = 63}, - [770] = {.lex_state = 63}, - [771] = {.lex_state = 63}, - [772] = {.lex_state = 63}, - [773] = {.lex_state = 63}, - [774] = {.lex_state = 63}, - [775] = {.lex_state = 63}, - [776] = {.lex_state = 63}, - [777] = {.lex_state = 63}, - [778] = {.lex_state = 63}, - [779] = {.lex_state = 63}, - [780] = {.lex_state = 63}, - [781] = {.lex_state = 63}, - [782] = {.lex_state = 63}, - [783] = {.lex_state = 63}, - [784] = {.lex_state = 63}, - [785] = {.lex_state = 63}, - [786] = {.lex_state = 63}, - [787] = {.lex_state = 63}, - [788] = {.lex_state = 63}, - [789] = {.lex_state = 63}, - [790] = {.lex_state = 63}, - [791] = {.lex_state = 63}, - [792] = {.lex_state = 63}, - [793] = {.lex_state = 63}, - [794] = {.lex_state = 63}, - [795] = {.lex_state = 63}, - [796] = {.lex_state = 63}, - [797] = {.lex_state = 63}, - [798] = {.lex_state = 63}, - [799] = {.lex_state = 63}, - [800] = {.lex_state = 63}, - [801] = {.lex_state = 63}, - [802] = {.lex_state = 63}, - [803] = {.lex_state = 63}, - [804] = {.lex_state = 63}, - [805] = {.lex_state = 63}, - [806] = {.lex_state = 63}, - [807] = {.lex_state = 63}, - [808] = {.lex_state = 63}, - [809] = {.lex_state = 63}, - [810] = {.lex_state = 63}, - [811] = {.lex_state = 63}, - [812] = {.lex_state = 63}, - [813] = {.lex_state = 63}, - [814] = {.lex_state = 63}, - [815] = {.lex_state = 63}, - [816] = {.lex_state = 63}, - [817] = {.lex_state = 63}, - [818] = {.lex_state = 63}, - [819] = {.lex_state = 63}, - [820] = {.lex_state = 63}, - [821] = {.lex_state = 63}, - [822] = {.lex_state = 63}, - [823] = {.lex_state = 63}, - [824] = {.lex_state = 63}, - [825] = {.lex_state = 63}, - [826] = {.lex_state = 63}, - [827] = {.lex_state = 63}, - [828] = {.lex_state = 63}, - [829] = {.lex_state = 63}, - [830] = {.lex_state = 63}, - [831] = {.lex_state = 63}, - [832] = {.lex_state = 63}, - [833] = {.lex_state = 63}, - [834] = {.lex_state = 63}, - [835] = {.lex_state = 63}, - [836] = {.lex_state = 63}, - [837] = {.lex_state = 63}, - [838] = {.lex_state = 63}, - [839] = {.lex_state = 63}, - [840] = {.lex_state = 63}, - [841] = {.lex_state = 63}, - [842] = {.lex_state = 63}, - [843] = {.lex_state = 63}, - [844] = {.lex_state = 63}, - [845] = {.lex_state = 63}, - [846] = {.lex_state = 63}, - [847] = {.lex_state = 63}, - [848] = {.lex_state = 63}, - [849] = {.lex_state = 63}, - [850] = {.lex_state = 63}, - [851] = {.lex_state = 63}, - [852] = {.lex_state = 63}, - [853] = {.lex_state = 63}, - [854] = {.lex_state = 63}, - [855] = {.lex_state = 63}, - [856] = {.lex_state = 63}, - [857] = {.lex_state = 63}, - [858] = {.lex_state = 63}, - [859] = {.lex_state = 63}, - [860] = {.lex_state = 63}, - [861] = {.lex_state = 63}, - [862] = {.lex_state = 63}, - [863] = {.lex_state = 63}, - [864] = {.lex_state = 63}, - [865] = {.lex_state = 63}, - [866] = {.lex_state = 63}, - [867] = {.lex_state = 63}, - [868] = {.lex_state = 63}, - [869] = {.lex_state = 63}, - [870] = {.lex_state = 63}, - [871] = {.lex_state = 63}, - [872] = {.lex_state = 63}, - [873] = {.lex_state = 63}, - [874] = {.lex_state = 63}, - [875] = {.lex_state = 63}, - [876] = {.lex_state = 63}, - [877] = {.lex_state = 63}, - [878] = {.lex_state = 63}, - [879] = {.lex_state = 63}, - [880] = {.lex_state = 63}, - [881] = {.lex_state = 63}, - [882] = {.lex_state = 63}, - [883] = {.lex_state = 63}, - [884] = {.lex_state = 63}, - [885] = {.lex_state = 63}, - [886] = {.lex_state = 63}, - [887] = {.lex_state = 63}, - [888] = {.lex_state = 63}, - [889] = {.lex_state = 63}, - [890] = {.lex_state = 63}, - [891] = {.lex_state = 63}, - [892] = {.lex_state = 63}, - [893] = {.lex_state = 63}, - [894] = {.lex_state = 63}, - [895] = {.lex_state = 169}, - [896] = {.lex_state = 63}, - [897] = {.lex_state = 63}, - [898] = {.lex_state = 63}, - [899] = {.lex_state = 63}, - [900] = {.lex_state = 63}, - [901] = {.lex_state = 63}, - [902] = {.lex_state = 63}, - [903] = {.lex_state = 63}, - [904] = {.lex_state = 63}, - [905] = {.lex_state = 63}, - [906] = {.lex_state = 63}, - [907] = {.lex_state = 63}, - [908] = {.lex_state = 63}, - [909] = {.lex_state = 63}, - [910] = {.lex_state = 63}, - [911] = {.lex_state = 63}, - [912] = {.lex_state = 63}, - [913] = {.lex_state = 63}, - [914] = {.lex_state = 63}, - [915] = {.lex_state = 63}, - [916] = {.lex_state = 63}, - [917] = {.lex_state = 63}, - [918] = {.lex_state = 63}, - [919] = {.lex_state = 63}, - [920] = {.lex_state = 63}, - [921] = {.lex_state = 63}, - [922] = {.lex_state = 63}, - [923] = {.lex_state = 63}, - [924] = {.lex_state = 63}, - [925] = {.lex_state = 63}, - [926] = {.lex_state = 63}, - [927] = {.lex_state = 63}, - [928] = {.lex_state = 63}, - [929] = {.lex_state = 63}, - [930] = {.lex_state = 63}, - [931] = {.lex_state = 63}, - [932] = {.lex_state = 63}, - [933] = {.lex_state = 63}, - [934] = {.lex_state = 63}, - [935] = {.lex_state = 63}, - [936] = {.lex_state = 63}, - [937] = {.lex_state = 63}, - [938] = {.lex_state = 63}, - [939] = {.lex_state = 63}, - [940] = {.lex_state = 63}, - [941] = {.lex_state = 63}, - [942] = {.lex_state = 63}, - [943] = {.lex_state = 63}, - [944] = {.lex_state = 63}, - [945] = {.lex_state = 63}, - [946] = {.lex_state = 63}, - [947] = {.lex_state = 63}, - [948] = {.lex_state = 63}, - [949] = {.lex_state = 63}, - [950] = {.lex_state = 63}, - [951] = {.lex_state = 63}, - [952] = {.lex_state = 63}, - [953] = {.lex_state = 63}, - [954] = {.lex_state = 63}, - [955] = {.lex_state = 63}, - [956] = {.lex_state = 63}, - [957] = {.lex_state = 63}, - [958] = {.lex_state = 63}, - [959] = {.lex_state = 63}, - [960] = {.lex_state = 63}, - [961] = {.lex_state = 63}, - [962] = {.lex_state = 63}, - [963] = {.lex_state = 63}, - [964] = {.lex_state = 63}, - [965] = {.lex_state = 63}, - [966] = {.lex_state = 63}, - [967] = {.lex_state = 63}, - [968] = {.lex_state = 63}, - [969] = {.lex_state = 63}, - [970] = {.lex_state = 63}, - [971] = {.lex_state = 63}, - [972] = {.lex_state = 63}, - [973] = {.lex_state = 63}, - [974] = {.lex_state = 63}, - [975] = {.lex_state = 63}, - [976] = {.lex_state = 63}, - [977] = {.lex_state = 63}, - [978] = {.lex_state = 63}, - [979] = {.lex_state = 63}, - [980] = {.lex_state = 63}, - [981] = {.lex_state = 63}, + [549] = {.lex_state = 64}, + [550] = {.lex_state = 64}, + [551] = {.lex_state = 64}, + [552] = {.lex_state = 64}, + [553] = {.lex_state = 64}, + [554] = {.lex_state = 64}, + [555] = {.lex_state = 64}, + [556] = {.lex_state = 64}, + [557] = {.lex_state = 64}, + [558] = {.lex_state = 64}, + [559] = {.lex_state = 64}, + [560] = {.lex_state = 64}, + [561] = {.lex_state = 64}, + [562] = {.lex_state = 64}, + [563] = {.lex_state = 64}, + [564] = {.lex_state = 64}, + [565] = {.lex_state = 64}, + [566] = {.lex_state = 171}, + [567] = {.lex_state = 64}, + [568] = {.lex_state = 64}, + [569] = {.lex_state = 64}, + [570] = {.lex_state = 64}, + [571] = {.lex_state = 64}, + [572] = {.lex_state = 64}, + [573] = {.lex_state = 64}, + [574] = {.lex_state = 64}, + [575] = {.lex_state = 64}, + [576] = {.lex_state = 64}, + [577] = {.lex_state = 64}, + [578] = {.lex_state = 64}, + [579] = {.lex_state = 64}, + [580] = {.lex_state = 64}, + [581] = {.lex_state = 64}, + [582] = {.lex_state = 64}, + [583] = {.lex_state = 64}, + [584] = {.lex_state = 64}, + [585] = {.lex_state = 64}, + [586] = {.lex_state = 64}, + [587] = {.lex_state = 64}, + [588] = {.lex_state = 64}, + [589] = {.lex_state = 64}, + [590] = {.lex_state = 64}, + [591] = {.lex_state = 64}, + [592] = {.lex_state = 64}, + [593] = {.lex_state = 64}, + [594] = {.lex_state = 64}, + [595] = {.lex_state = 64}, + [596] = {.lex_state = 64}, + [597] = {.lex_state = 64}, + [598] = {.lex_state = 64}, + [599] = {.lex_state = 64}, + [600] = {.lex_state = 64}, + [601] = {.lex_state = 64}, + [602] = {.lex_state = 64}, + [603] = {.lex_state = 64}, + [604] = {.lex_state = 64}, + [605] = {.lex_state = 64}, + [606] = {.lex_state = 64}, + [607] = {.lex_state = 64}, + [608] = {.lex_state = 64}, + [609] = {.lex_state = 64}, + [610] = {.lex_state = 64}, + [611] = {.lex_state = 64}, + [612] = {.lex_state = 64}, + [613] = {.lex_state = 64}, + [614] = {.lex_state = 64}, + [615] = {.lex_state = 64}, + [616] = {.lex_state = 64}, + [617] = {.lex_state = 64}, + [618] = {.lex_state = 64}, + [619] = {.lex_state = 64}, + [620] = {.lex_state = 64}, + [621] = {.lex_state = 64}, + [622] = {.lex_state = 64}, + [623] = {.lex_state = 64}, + [624] = {.lex_state = 64}, + [625] = {.lex_state = 64}, + [626] = {.lex_state = 64}, + [627] = {.lex_state = 64}, + [628] = {.lex_state = 64}, + [629] = {.lex_state = 64}, + [630] = {.lex_state = 64}, + [631] = {.lex_state = 64}, + [632] = {.lex_state = 64}, + [633] = {.lex_state = 64}, + [634] = {.lex_state = 64}, + [635] = {.lex_state = 64}, + [636] = {.lex_state = 64}, + [637] = {.lex_state = 64}, + [638] = {.lex_state = 64}, + [639] = {.lex_state = 64}, + [640] = {.lex_state = 64}, + [641] = {.lex_state = 64}, + [642] = {.lex_state = 64}, + [643] = {.lex_state = 64}, + [644] = {.lex_state = 64}, + [645] = {.lex_state = 64}, + [646] = {.lex_state = 64}, + [647] = {.lex_state = 64}, + [648] = {.lex_state = 64}, + [649] = {.lex_state = 64}, + [650] = {.lex_state = 64}, + [651] = {.lex_state = 64}, + [652] = {.lex_state = 64}, + [653] = {.lex_state = 64}, + [654] = {.lex_state = 64}, + [655] = {.lex_state = 64}, + [656] = {.lex_state = 64}, + [657] = {.lex_state = 64}, + [658] = {.lex_state = 64}, + [659] = {.lex_state = 64}, + [660] = {.lex_state = 64}, + [661] = {.lex_state = 64}, + [662] = {.lex_state = 64}, + [663] = {.lex_state = 64}, + [664] = {.lex_state = 64}, + [665] = {.lex_state = 64}, + [666] = {.lex_state = 64}, + [667] = {.lex_state = 64}, + [668] = {.lex_state = 64}, + [669] = {.lex_state = 64}, + [670] = {.lex_state = 64}, + [671] = {.lex_state = 64}, + [672] = {.lex_state = 64}, + [673] = {.lex_state = 64}, + [674] = {.lex_state = 64}, + [675] = {.lex_state = 64}, + [676] = {.lex_state = 64}, + [677] = {.lex_state = 64}, + [678] = {.lex_state = 64}, + [679] = {.lex_state = 64}, + [680] = {.lex_state = 64}, + [681] = {.lex_state = 64}, + [682] = {.lex_state = 64}, + [683] = {.lex_state = 64}, + [684] = {.lex_state = 64}, + [685] = {.lex_state = 64}, + [686] = {.lex_state = 64}, + [687] = {.lex_state = 64}, + [688] = {.lex_state = 64}, + [689] = {.lex_state = 64}, + [690] = {.lex_state = 64}, + [691] = {.lex_state = 64}, + [692] = {.lex_state = 64}, + [693] = {.lex_state = 64}, + [694] = {.lex_state = 64}, + [695] = {.lex_state = 64}, + [696] = {.lex_state = 64}, + [697] = {.lex_state = 64}, + [698] = {.lex_state = 64}, + [699] = {.lex_state = 64}, + [700] = {.lex_state = 64}, + [701] = {.lex_state = 64}, + [702] = {.lex_state = 64}, + [703] = {.lex_state = 64}, + [704] = {.lex_state = 64}, + [705] = {.lex_state = 64}, + [706] = {.lex_state = 64}, + [707] = {.lex_state = 64}, + [708] = {.lex_state = 64}, + [709] = {.lex_state = 64}, + [710] = {.lex_state = 64}, + [711] = {.lex_state = 64}, + [712] = {.lex_state = 64}, + [713] = {.lex_state = 64}, + [714] = {.lex_state = 64}, + [715] = {.lex_state = 64}, + [716] = {.lex_state = 64}, + [717] = {.lex_state = 64}, + [718] = {.lex_state = 64}, + [719] = {.lex_state = 64}, + [720] = {.lex_state = 64}, + [721] = {.lex_state = 64}, + [722] = {.lex_state = 64}, + [723] = {.lex_state = 64}, + [724] = {.lex_state = 64}, + [725] = {.lex_state = 64}, + [726] = {.lex_state = 64}, + [727] = {.lex_state = 64}, + [728] = {.lex_state = 64}, + [729] = {.lex_state = 64}, + [730] = {.lex_state = 64}, + [731] = {.lex_state = 64}, + [732] = {.lex_state = 64}, + [733] = {.lex_state = 64}, + [734] = {.lex_state = 64}, + [735] = {.lex_state = 64}, + [736] = {.lex_state = 64}, + [737] = {.lex_state = 64}, + [738] = {.lex_state = 64}, + [739] = {.lex_state = 64}, + [740] = {.lex_state = 64}, + [741] = {.lex_state = 64}, + [742] = {.lex_state = 64}, + [743] = {.lex_state = 64}, + [744] = {.lex_state = 64}, + [745] = {.lex_state = 64}, + [746] = {.lex_state = 64}, + [747] = {.lex_state = 64}, + [748] = {.lex_state = 64}, + [749] = {.lex_state = 64}, + [750] = {.lex_state = 64}, + [751] = {.lex_state = 64}, + [752] = {.lex_state = 64}, + [753] = {.lex_state = 64}, + [754] = {.lex_state = 64}, + [755] = {.lex_state = 64}, + [756] = {.lex_state = 64}, + [757] = {.lex_state = 64}, + [758] = {.lex_state = 64}, + [759] = {.lex_state = 64}, + [760] = {.lex_state = 64}, + [761] = {.lex_state = 64}, + [762] = {.lex_state = 64}, + [763] = {.lex_state = 64}, + [764] = {.lex_state = 64}, + [765] = {.lex_state = 64}, + [766] = {.lex_state = 64}, + [767] = {.lex_state = 64}, + [768] = {.lex_state = 64}, + [769] = {.lex_state = 64}, + [770] = {.lex_state = 64}, + [771] = {.lex_state = 64}, + [772] = {.lex_state = 64}, + [773] = {.lex_state = 64}, + [774] = {.lex_state = 64}, + [775] = {.lex_state = 64}, + [776] = {.lex_state = 64}, + [777] = {.lex_state = 64}, + [778] = {.lex_state = 64}, + [779] = {.lex_state = 64}, + [780] = {.lex_state = 64}, + [781] = {.lex_state = 64}, + [782] = {.lex_state = 64}, + [783] = {.lex_state = 64}, + [784] = {.lex_state = 64}, + [785] = {.lex_state = 64}, + [786] = {.lex_state = 64}, + [787] = {.lex_state = 64}, + [788] = {.lex_state = 64}, + [789] = {.lex_state = 64}, + [790] = {.lex_state = 64}, + [791] = {.lex_state = 64}, + [792] = {.lex_state = 64}, + [793] = {.lex_state = 64}, + [794] = {.lex_state = 64}, + [795] = {.lex_state = 64}, + [796] = {.lex_state = 64}, + [797] = {.lex_state = 64}, + [798] = {.lex_state = 64}, + [799] = {.lex_state = 64}, + [800] = {.lex_state = 64}, + [801] = {.lex_state = 64}, + [802] = {.lex_state = 64}, + [803] = {.lex_state = 64}, + [804] = {.lex_state = 64}, + [805] = {.lex_state = 64}, + [806] = {.lex_state = 64}, + [807] = {.lex_state = 64}, + [808] = {.lex_state = 64}, + [809] = {.lex_state = 64}, + [810] = {.lex_state = 64}, + [811] = {.lex_state = 64}, + [812] = {.lex_state = 64}, + [813] = {.lex_state = 64}, + [814] = {.lex_state = 64}, + [815] = {.lex_state = 64}, + [816] = {.lex_state = 64}, + [817] = {.lex_state = 64}, + [818] = {.lex_state = 64}, + [819] = {.lex_state = 64}, + [820] = {.lex_state = 64}, + [821] = {.lex_state = 64}, + [822] = {.lex_state = 64}, + [823] = {.lex_state = 64}, + [824] = {.lex_state = 64}, + [825] = {.lex_state = 64}, + [826] = {.lex_state = 64}, + [827] = {.lex_state = 64}, + [828] = {.lex_state = 64}, + [829] = {.lex_state = 64}, + [830] = {.lex_state = 64}, + [831] = {.lex_state = 64}, + [832] = {.lex_state = 64}, + [833] = {.lex_state = 64}, + [834] = {.lex_state = 64}, + [835] = {.lex_state = 64}, + [836] = {.lex_state = 64}, + [837] = {.lex_state = 64}, + [838] = {.lex_state = 64}, + [839] = {.lex_state = 64}, + [840] = {.lex_state = 64}, + [841] = {.lex_state = 64}, + [842] = {.lex_state = 64}, + [843] = {.lex_state = 64}, + [844] = {.lex_state = 64}, + [845] = {.lex_state = 64}, + [846] = {.lex_state = 64}, + [847] = {.lex_state = 64}, + [848] = {.lex_state = 64}, + [849] = {.lex_state = 64}, + [850] = {.lex_state = 64}, + [851] = {.lex_state = 64}, + [852] = {.lex_state = 64}, + [853] = {.lex_state = 64}, + [854] = {.lex_state = 64}, + [855] = {.lex_state = 64}, + [856] = {.lex_state = 64}, + [857] = {.lex_state = 64}, + [858] = {.lex_state = 64}, + [859] = {.lex_state = 64}, + [860] = {.lex_state = 64}, + [861] = {.lex_state = 64}, + [862] = {.lex_state = 64}, + [863] = {.lex_state = 64}, + [864] = {.lex_state = 64}, + [865] = {.lex_state = 64}, + [866] = {.lex_state = 64}, + [867] = {.lex_state = 64}, + [868] = {.lex_state = 64}, + [869] = {.lex_state = 64}, + [870] = {.lex_state = 64}, + [871] = {.lex_state = 64}, + [872] = {.lex_state = 64}, + [873] = {.lex_state = 64}, + [874] = {.lex_state = 64}, + [875] = {.lex_state = 64}, + [876] = {.lex_state = 64}, + [877] = {.lex_state = 64}, + [878] = {.lex_state = 64}, + [879] = {.lex_state = 64}, + [880] = {.lex_state = 64}, + [881] = {.lex_state = 64}, + [882] = {.lex_state = 64}, + [883] = {.lex_state = 64}, + [884] = {.lex_state = 64}, + [885] = {.lex_state = 64}, + [886] = {.lex_state = 64}, + [887] = {.lex_state = 64}, + [888] = {.lex_state = 64}, + [889] = {.lex_state = 64}, + [890] = {.lex_state = 64}, + [891] = {.lex_state = 64}, + [892] = {.lex_state = 64}, + [893] = {.lex_state = 64}, + [894] = {.lex_state = 169}, + [895] = {.lex_state = 64}, + [896] = {.lex_state = 64}, + [897] = {.lex_state = 64}, + [898] = {.lex_state = 64}, + [899] = {.lex_state = 64}, + [900] = {.lex_state = 64}, + [901] = {.lex_state = 64}, + [902] = {.lex_state = 64}, + [903] = {.lex_state = 64}, + [904] = {.lex_state = 64}, + [905] = {.lex_state = 64}, + [906] = {.lex_state = 64}, + [907] = {.lex_state = 64}, + [908] = {.lex_state = 64}, + [909] = {.lex_state = 64}, + [910] = {.lex_state = 64}, + [911] = {.lex_state = 64}, + [912] = {.lex_state = 64}, + [913] = {.lex_state = 64}, + [914] = {.lex_state = 64}, + [915] = {.lex_state = 64}, + [916] = {.lex_state = 64}, + [917] = {.lex_state = 64}, + [918] = {.lex_state = 64}, + [919] = {.lex_state = 64}, + [920] = {.lex_state = 64}, + [921] = {.lex_state = 64}, + [922] = {.lex_state = 64}, + [923] = {.lex_state = 64}, + [924] = {.lex_state = 64}, + [925] = {.lex_state = 64}, + [926] = {.lex_state = 64}, + [927] = {.lex_state = 64}, + [928] = {.lex_state = 64}, + [929] = {.lex_state = 64}, + [930] = {.lex_state = 64}, + [931] = {.lex_state = 64}, + [932] = {.lex_state = 64}, + [933] = {.lex_state = 64}, + [934] = {.lex_state = 64}, + [935] = {.lex_state = 64}, + [936] = {.lex_state = 64}, + [937] = {.lex_state = 64}, + [938] = {.lex_state = 64}, + [939] = {.lex_state = 64}, + [940] = {.lex_state = 64}, + [941] = {.lex_state = 64}, + [942] = {.lex_state = 64}, + [943] = {.lex_state = 64}, + [944] = {.lex_state = 64}, + [945] = {.lex_state = 64}, + [946] = {.lex_state = 64}, + [947] = {.lex_state = 64}, + [948] = {.lex_state = 64}, + [949] = {.lex_state = 64}, + [950] = {.lex_state = 64}, + [951] = {.lex_state = 64}, + [952] = {.lex_state = 64}, + [953] = {.lex_state = 64}, + [954] = {.lex_state = 64}, + [955] = {.lex_state = 64}, + [956] = {.lex_state = 64}, + [957] = {.lex_state = 64}, + [958] = {.lex_state = 64}, + [959] = {.lex_state = 64}, + [960] = {.lex_state = 64}, + [961] = {.lex_state = 64}, + [962] = {.lex_state = 64}, + [963] = {.lex_state = 64}, + [964] = {.lex_state = 64}, + [965] = {.lex_state = 64}, + [966] = {.lex_state = 64}, + [967] = {.lex_state = 64}, + [968] = {.lex_state = 64}, + [969] = {.lex_state = 64}, + [970] = {.lex_state = 64}, + [971] = {.lex_state = 64}, + [972] = {.lex_state = 64}, + [973] = {.lex_state = 64}, + [974] = {.lex_state = 64}, + [975] = {.lex_state = 64}, + [976] = {.lex_state = 64}, + [977] = {.lex_state = 64}, + [978] = {.lex_state = 64}, + [979] = {.lex_state = 64}, + [980] = {.lex_state = 64}, + [981] = {.lex_state = 64}, [982] = {.lex_state = 169}, [983] = {.lex_state = 169}, [984] = {.lex_state = 169}, @@ -15035,18 +15220,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1143] = {.lex_state = 171}, [1144] = {.lex_state = 171}, [1145] = {.lex_state = 171}, - [1146] = {.lex_state = 21}, - [1147] = {.lex_state = 175}, - [1148] = {.lex_state = 21}, - [1149] = {.lex_state = 21}, - [1150] = {.lex_state = 175}, - [1151] = {.lex_state = 171}, - [1152] = {.lex_state = 175}, - [1153] = {.lex_state = 21}, - [1154] = {.lex_state = 175}, - [1155] = {.lex_state = 21}, - [1156] = {.lex_state = 171}, - [1157] = {.lex_state = 171}, + [1146] = {.lex_state = 22}, + [1147] = {.lex_state = 22}, + [1148] = {.lex_state = 171}, + [1149] = {.lex_state = 22}, + [1150] = {.lex_state = 171}, + [1151] = {.lex_state = 175}, + [1152] = {.lex_state = 22}, + [1153] = {.lex_state = 175}, + [1154] = {.lex_state = 171}, + [1155] = {.lex_state = 175}, + [1156] = {.lex_state = 22}, + [1157] = {.lex_state = 175}, [1158] = {.lex_state = 171}, [1159] = {.lex_state = 171}, [1160] = {.lex_state = 171}, @@ -15167,14 +15352,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1275] = {.lex_state = 171}, [1276] = {.lex_state = 171}, [1277] = {.lex_state = 171}, - [1278] = {.lex_state = 182}, + [1278] = {.lex_state = 171}, [1279] = {.lex_state = 171}, - [1280] = {.lex_state = 171}, - [1281] = {.lex_state = 171}, + [1280] = {.lex_state = 182}, + [1281] = {.lex_state = 182}, [1282] = {.lex_state = 171}, - [1283] = {.lex_state = 182}, - [1284] = {.lex_state = 182}, - [1285] = {.lex_state = 171}, + [1283] = {.lex_state = 171}, + [1284] = {.lex_state = 171}, + [1285] = {.lex_state = 182}, [1286] = {.lex_state = 171}, [1287] = {.lex_state = 171}, [1288] = {.lex_state = 171}, @@ -15183,10 +15368,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1291] = {.lex_state = 171}, [1292] = {.lex_state = 175}, [1293] = {.lex_state = 171}, - [1294] = {.lex_state = 171}, + [1294] = {.lex_state = 175}, [1295] = {.lex_state = 175}, [1296] = {.lex_state = 175}, - [1297] = {.lex_state = 175}, + [1297] = {.lex_state = 171}, [1298] = {.lex_state = 171}, [1299] = {.lex_state = 171}, [1300] = {.lex_state = 171}, @@ -15198,18 +15383,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 171}, [1307] = {.lex_state = 171}, [1308] = {.lex_state = 171}, - [1309] = {.lex_state = 178}, + [1309] = {.lex_state = 171}, [1310] = {.lex_state = 171}, [1311] = {.lex_state = 171}, [1312] = {.lex_state = 171}, [1313] = {.lex_state = 171}, - [1314] = {.lex_state = 178}, + [1314] = {.lex_state = 171}, [1315] = {.lex_state = 171}, [1316] = {.lex_state = 171}, [1317] = {.lex_state = 171}, [1318] = {.lex_state = 171}, [1319] = {.lex_state = 171}, - [1320] = {.lex_state = 178}, + [1320] = {.lex_state = 171}, [1321] = {.lex_state = 171}, [1322] = {.lex_state = 171}, [1323] = {.lex_state = 171}, @@ -15229,7 +15414,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1337] = {.lex_state = 171}, [1338] = {.lex_state = 171}, [1339] = {.lex_state = 171}, - [1340] = {.lex_state = 171}, + [1340] = {.lex_state = 178}, [1341] = {.lex_state = 171}, [1342] = {.lex_state = 171}, [1343] = {.lex_state = 171}, @@ -15255,14 +15440,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1363] = {.lex_state = 171}, [1364] = {.lex_state = 171}, [1365] = {.lex_state = 171}, - [1366] = {.lex_state = 171}, + [1366] = {.lex_state = 178}, [1367] = {.lex_state = 171}, [1368] = {.lex_state = 171}, [1369] = {.lex_state = 171}, [1370] = {.lex_state = 171}, [1371] = {.lex_state = 171}, [1372] = {.lex_state = 171}, - [1373] = {.lex_state = 171}, + [1373] = {.lex_state = 178}, [1374] = {.lex_state = 171}, [1375] = {.lex_state = 171}, [1376] = {.lex_state = 171}, @@ -15314,44 +15499,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1422] = {.lex_state = 2}, [1423] = {.lex_state = 2}, [1424] = {.lex_state = 2}, - [1425] = {.lex_state = 2}, + [1425] = {.lex_state = 4}, [1426] = {.lex_state = 2}, [1427] = {.lex_state = 2}, - [1428] = {.lex_state = 4}, + [1428] = {.lex_state = 2}, [1429] = {.lex_state = 2}, [1430] = {.lex_state = 4}, - [1431] = {.lex_state = 4}, - [1432] = {.lex_state = 2}, + [1431] = {.lex_state = 2}, + [1432] = {.lex_state = 4}, [1433] = {.lex_state = 4}, [1434] = {.lex_state = 2}, [1435] = {.lex_state = 2}, [1436] = {.lex_state = 2}, - [1437] = {.lex_state = 25}, + [1437] = {.lex_state = 26}, [1438] = {.lex_state = 2}, - [1439] = {.lex_state = 25}, - [1440] = {.lex_state = 25}, - [1441] = {.lex_state = 25}, + [1439] = {.lex_state = 2}, + [1440] = {.lex_state = 26}, + [1441] = {.lex_state = 2}, [1442] = {.lex_state = 2}, - [1443] = {.lex_state = 2}, + [1443] = {.lex_state = 26}, [1444] = {.lex_state = 2}, - [1445] = {.lex_state = 2}, + [1445] = {.lex_state = 26}, [1446] = {.lex_state = 2}, [1447] = {.lex_state = 2}, - [1448] = {.lex_state = 25}, - [1449] = {.lex_state = 2}, + [1448] = {.lex_state = 2}, + [1449] = {.lex_state = 26}, [1450] = {.lex_state = 2}, [1451] = {.lex_state = 2}, [1452] = {.lex_state = 2}, [1453] = {.lex_state = 2}, - [1454] = {.lex_state = 27}, + [1454] = {.lex_state = 2}, [1455] = {.lex_state = 2}, [1456] = {.lex_state = 2}, [1457] = {.lex_state = 2}, [1458] = {.lex_state = 2}, - [1459] = {.lex_state = 27}, + [1459] = {.lex_state = 2}, [1460] = {.lex_state = 2}, [1461] = {.lex_state = 2}, - [1462] = {.lex_state = 2}, + [1462] = {.lex_state = 26}, [1463] = {.lex_state = 2}, [1464] = {.lex_state = 2}, [1465] = {.lex_state = 2}, @@ -15367,7 +15552,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1475] = {.lex_state = 2}, [1476] = {.lex_state = 2}, [1477] = {.lex_state = 2}, - [1478] = {.lex_state = 2}, + [1478] = {.lex_state = 28}, [1479] = {.lex_state = 2}, [1480] = {.lex_state = 2}, [1481] = {.lex_state = 2}, @@ -15377,7 +15562,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1485] = {.lex_state = 2}, [1486] = {.lex_state = 2}, [1487] = {.lex_state = 2}, - [1488] = {.lex_state = 25}, + [1488] = {.lex_state = 28}, [1489] = {.lex_state = 2}, [1490] = {.lex_state = 2}, [1491] = {.lex_state = 2}, @@ -15402,17 +15587,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 2}, [1511] = {.lex_state = 2}, [1512] = {.lex_state = 2}, - [1513] = {.lex_state = 27}, + [1513] = {.lex_state = 2}, [1514] = {.lex_state = 2}, [1515] = {.lex_state = 2}, [1516] = {.lex_state = 2}, - [1517] = {.lex_state = 2}, + [1517] = {.lex_state = 28}, [1518] = {.lex_state = 2}, [1519] = {.lex_state = 2}, [1520] = {.lex_state = 2}, - [1521] = {.lex_state = 27}, + [1521] = {.lex_state = 2}, [1522] = {.lex_state = 2}, - [1523] = {.lex_state = 2}, + [1523] = {.lex_state = 28}, [1524] = {.lex_state = 2}, [1525] = {.lex_state = 2}, [1526] = {.lex_state = 2}, @@ -15422,7 +15607,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1530] = {.lex_state = 2}, [1531] = {.lex_state = 2}, [1532] = {.lex_state = 2}, - [1533] = {.lex_state = 2}, + [1533] = {.lex_state = 28}, [1534] = {.lex_state = 2}, [1535] = {.lex_state = 2}, [1536] = {.lex_state = 2}, @@ -15436,182 +15621,182 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1544] = {.lex_state = 2}, [1545] = {.lex_state = 2}, [1546] = {.lex_state = 2}, - [1547] = {.lex_state = 27}, + [1547] = {.lex_state = 2}, [1548] = {.lex_state = 2}, [1549] = {.lex_state = 2}, [1550] = {.lex_state = 2}, - [1551] = {.lex_state = 21}, - [1552] = {.lex_state = 21}, - [1553] = {.lex_state = 2}, - [1554] = {.lex_state = 25}, - [1555] = {.lex_state = 21}, - [1556] = {.lex_state = 21}, - [1557] = {.lex_state = 21}, - [1558] = {.lex_state = 21}, - [1559] = {.lex_state = 21}, - [1560] = {.lex_state = 21}, - [1561] = {.lex_state = 21}, - [1562] = {.lex_state = 21}, - [1563] = {.lex_state = 21}, - [1564] = {.lex_state = 21}, - [1565] = {.lex_state = 21}, - [1566] = {.lex_state = 21}, - [1567] = {.lex_state = 21}, - [1568] = {.lex_state = 21}, - [1569] = {.lex_state = 21}, - [1570] = {.lex_state = 21}, - [1571] = {.lex_state = 21}, - [1572] = {.lex_state = 21}, - [1573] = {.lex_state = 21}, - [1574] = {.lex_state = 23}, - [1575] = {.lex_state = 21}, - [1576] = {.lex_state = 23}, - [1577] = {.lex_state = 21}, - [1578] = {.lex_state = 23}, - [1579] = {.lex_state = 21}, - [1580] = {.lex_state = 21}, - [1581] = {.lex_state = 177}, - [1582] = {.lex_state = 21}, - [1583] = {.lex_state = 21}, - [1584] = {.lex_state = 23}, - [1585] = {.lex_state = 21}, - [1586] = {.lex_state = 21}, - [1587] = {.lex_state = 21}, - [1588] = {.lex_state = 21}, - [1589] = {.lex_state = 21}, - [1590] = {.lex_state = 21}, - [1591] = {.lex_state = 21}, - [1592] = {.lex_state = 21}, - [1593] = {.lex_state = 21}, - [1594] = {.lex_state = 21}, - [1595] = {.lex_state = 21}, - [1596] = {.lex_state = 21}, - [1597] = {.lex_state = 21}, - [1598] = {.lex_state = 21}, - [1599] = {.lex_state = 21}, - [1600] = {.lex_state = 21}, - [1601] = {.lex_state = 21}, - [1602] = {.lex_state = 21}, - [1603] = {.lex_state = 21}, - [1604] = {.lex_state = 21}, - [1605] = {.lex_state = 21}, - [1606] = {.lex_state = 21}, - [1607] = {.lex_state = 21}, - [1608] = {.lex_state = 21}, - [1609] = {.lex_state = 21}, - [1610] = {.lex_state = 21}, - [1611] = {.lex_state = 21}, - [1612] = {.lex_state = 21}, - [1613] = {.lex_state = 21}, - [1614] = {.lex_state = 21}, - [1615] = {.lex_state = 21}, - [1616] = {.lex_state = 21}, - [1617] = {.lex_state = 21}, - [1618] = {.lex_state = 21}, - [1619] = {.lex_state = 21}, - [1620] = {.lex_state = 21}, - [1621] = {.lex_state = 21}, - [1622] = {.lex_state = 21}, - [1623] = {.lex_state = 21}, - [1624] = {.lex_state = 21}, - [1625] = {.lex_state = 21}, - [1626] = {.lex_state = 21}, - [1627] = {.lex_state = 21}, - [1628] = {.lex_state = 21}, - [1629] = {.lex_state = 21}, - [1630] = {.lex_state = 21}, - [1631] = {.lex_state = 21}, - [1632] = {.lex_state = 21}, - [1633] = {.lex_state = 21}, - [1634] = {.lex_state = 21}, - [1635] = {.lex_state = 21}, - [1636] = {.lex_state = 21}, - [1637] = {.lex_state = 21}, - [1638] = {.lex_state = 21}, - [1639] = {.lex_state = 21}, - [1640] = {.lex_state = 21}, - [1641] = {.lex_state = 21}, - [1642] = {.lex_state = 21}, - [1643] = {.lex_state = 21}, - [1644] = {.lex_state = 21}, - [1645] = {.lex_state = 21}, - [1646] = {.lex_state = 21}, - [1647] = {.lex_state = 21}, - [1648] = {.lex_state = 21}, - [1649] = {.lex_state = 21}, - [1650] = {.lex_state = 21}, - [1651] = {.lex_state = 21}, - [1652] = {.lex_state = 21}, - [1653] = {.lex_state = 21}, - [1654] = {.lex_state = 21}, - [1655] = {.lex_state = 21}, - [1656] = {.lex_state = 21}, - [1657] = {.lex_state = 21}, - [1658] = {.lex_state = 21}, - [1659] = {.lex_state = 21}, - [1660] = {.lex_state = 21}, - [1661] = {.lex_state = 21}, - [1662] = {.lex_state = 21}, - [1663] = {.lex_state = 21}, - [1664] = {.lex_state = 21}, - [1665] = {.lex_state = 21}, - [1666] = {.lex_state = 21}, - [1667] = {.lex_state = 21}, - [1668] = {.lex_state = 21}, - [1669] = {.lex_state = 21}, - [1670] = {.lex_state = 21}, - [1671] = {.lex_state = 21}, - [1672] = {.lex_state = 21}, - [1673] = {.lex_state = 21}, - [1674] = {.lex_state = 21}, - [1675] = {.lex_state = 21}, - [1676] = {.lex_state = 21}, - [1677] = {.lex_state = 21}, - [1678] = {.lex_state = 21}, - [1679] = {.lex_state = 21}, - [1680] = {.lex_state = 21}, - [1681] = {.lex_state = 21}, - [1682] = {.lex_state = 21}, - [1683] = {.lex_state = 21}, - [1684] = {.lex_state = 21}, - [1685] = {.lex_state = 21}, - [1686] = {.lex_state = 21}, - [1687] = {.lex_state = 21}, - [1688] = {.lex_state = 21}, - [1689] = {.lex_state = 21}, + [1551] = {.lex_state = 2}, + [1552] = {.lex_state = 22}, + [1553] = {.lex_state = 22}, + [1554] = {.lex_state = 26}, + [1555] = {.lex_state = 22}, + [1556] = {.lex_state = 22}, + [1557] = {.lex_state = 22}, + [1558] = {.lex_state = 22}, + [1559] = {.lex_state = 22}, + [1560] = {.lex_state = 22}, + [1561] = {.lex_state = 24}, + [1562] = {.lex_state = 22}, + [1563] = {.lex_state = 22}, + [1564] = {.lex_state = 22}, + [1565] = {.lex_state = 22}, + [1566] = {.lex_state = 22}, + [1567] = {.lex_state = 22}, + [1568] = {.lex_state = 22}, + [1569] = {.lex_state = 22}, + [1570] = {.lex_state = 22}, + [1571] = {.lex_state = 22}, + [1572] = {.lex_state = 24}, + [1573] = {.lex_state = 24}, + [1574] = {.lex_state = 22}, + [1575] = {.lex_state = 22}, + [1576] = {.lex_state = 22}, + [1577] = {.lex_state = 22}, + [1578] = {.lex_state = 22}, + [1579] = {.lex_state = 22}, + [1580] = {.lex_state = 22}, + [1581] = {.lex_state = 22}, + [1582] = {.lex_state = 177}, + [1583] = {.lex_state = 22}, + [1584] = {.lex_state = 22}, + [1585] = {.lex_state = 24}, + [1586] = {.lex_state = 22}, + [1587] = {.lex_state = 22}, + [1588] = {.lex_state = 22}, + [1589] = {.lex_state = 22}, + [1590] = {.lex_state = 22}, + [1591] = {.lex_state = 22}, + [1592] = {.lex_state = 22}, + [1593] = {.lex_state = 22}, + [1594] = {.lex_state = 22}, + [1595] = {.lex_state = 22}, + [1596] = {.lex_state = 22}, + [1597] = {.lex_state = 22}, + [1598] = {.lex_state = 22}, + [1599] = {.lex_state = 22}, + [1600] = {.lex_state = 22}, + [1601] = {.lex_state = 22}, + [1602] = {.lex_state = 22}, + [1603] = {.lex_state = 22}, + [1604] = {.lex_state = 22}, + [1605] = {.lex_state = 22}, + [1606] = {.lex_state = 22}, + [1607] = {.lex_state = 22}, + [1608] = {.lex_state = 22}, + [1609] = {.lex_state = 22}, + [1610] = {.lex_state = 22}, + [1611] = {.lex_state = 22}, + [1612] = {.lex_state = 22}, + [1613] = {.lex_state = 22}, + [1614] = {.lex_state = 22}, + [1615] = {.lex_state = 22}, + [1616] = {.lex_state = 22}, + [1617] = {.lex_state = 22}, + [1618] = {.lex_state = 22}, + [1619] = {.lex_state = 22}, + [1620] = {.lex_state = 22}, + [1621] = {.lex_state = 22}, + [1622] = {.lex_state = 22}, + [1623] = {.lex_state = 22}, + [1624] = {.lex_state = 22}, + [1625] = {.lex_state = 22}, + [1626] = {.lex_state = 22}, + [1627] = {.lex_state = 22}, + [1628] = {.lex_state = 22}, + [1629] = {.lex_state = 22}, + [1630] = {.lex_state = 22}, + [1631] = {.lex_state = 22}, + [1632] = {.lex_state = 22}, + [1633] = {.lex_state = 22}, + [1634] = {.lex_state = 22}, + [1635] = {.lex_state = 22}, + [1636] = {.lex_state = 22}, + [1637] = {.lex_state = 22}, + [1638] = {.lex_state = 22}, + [1639] = {.lex_state = 22}, + [1640] = {.lex_state = 22}, + [1641] = {.lex_state = 22}, + [1642] = {.lex_state = 22}, + [1643] = {.lex_state = 22}, + [1644] = {.lex_state = 22}, + [1645] = {.lex_state = 22}, + [1646] = {.lex_state = 22}, + [1647] = {.lex_state = 22}, + [1648] = {.lex_state = 22}, + [1649] = {.lex_state = 22}, + [1650] = {.lex_state = 22}, + [1651] = {.lex_state = 22}, + [1652] = {.lex_state = 22}, + [1653] = {.lex_state = 22}, + [1654] = {.lex_state = 22}, + [1655] = {.lex_state = 22}, + [1656] = {.lex_state = 22}, + [1657] = {.lex_state = 22}, + [1658] = {.lex_state = 22}, + [1659] = {.lex_state = 22}, + [1660] = {.lex_state = 22}, + [1661] = {.lex_state = 22}, + [1662] = {.lex_state = 22}, + [1663] = {.lex_state = 22}, + [1664] = {.lex_state = 22}, + [1665] = {.lex_state = 22}, + [1666] = {.lex_state = 22}, + [1667] = {.lex_state = 22}, + [1668] = {.lex_state = 22}, + [1669] = {.lex_state = 22}, + [1670] = {.lex_state = 22}, + [1671] = {.lex_state = 22}, + [1672] = {.lex_state = 22}, + [1673] = {.lex_state = 22}, + [1674] = {.lex_state = 22}, + [1675] = {.lex_state = 22}, + [1676] = {.lex_state = 22}, + [1677] = {.lex_state = 22}, + [1678] = {.lex_state = 22}, + [1679] = {.lex_state = 22}, + [1680] = {.lex_state = 22}, + [1681] = {.lex_state = 22}, + [1682] = {.lex_state = 22}, + [1683] = {.lex_state = 22}, + [1684] = {.lex_state = 22}, + [1685] = {.lex_state = 22}, + [1686] = {.lex_state = 22}, + [1687] = {.lex_state = 22}, + [1688] = {.lex_state = 22}, + [1689] = {.lex_state = 22}, [1690] = {.lex_state = 6}, - [1691] = {.lex_state = 21}, - [1692] = {.lex_state = 21}, - [1693] = {.lex_state = 21}, - [1694] = {.lex_state = 21}, + [1691] = {.lex_state = 22}, + [1692] = {.lex_state = 22}, + [1693] = {.lex_state = 22}, + [1694] = {.lex_state = 6}, [1695] = {.lex_state = 6}, [1696] = {.lex_state = 6}, [1697] = {.lex_state = 6}, - [1698] = {.lex_state = 6}, + [1698] = {.lex_state = 22}, [1699] = {.lex_state = 181}, - [1700] = {.lex_state = 182}, - [1701] = {.lex_state = 182}, + [1700] = {.lex_state = 34}, + [1701] = {.lex_state = 181}, [1702] = {.lex_state = 182}, [1703] = {.lex_state = 182}, - [1704] = {.lex_state = 181}, - [1705] = {.lex_state = 33}, - [1706] = {.lex_state = 33}, + [1704] = {.lex_state = 182}, + [1705] = {.lex_state = 182}, + [1706] = {.lex_state = 34}, [1707] = {.lex_state = 182}, - [1708] = {.lex_state = 181}, - [1709] = {.lex_state = 33}, - [1710] = {.lex_state = 181}, - [1711] = {.lex_state = 182}, + [1708] = {.lex_state = 182}, + [1709] = {.lex_state = 181}, + [1710] = {.lex_state = 34}, + [1711] = {.lex_state = 181}, [1712] = {.lex_state = 182}, - [1713] = {.lex_state = 182}, - [1714] = {.lex_state = 178}, + [1713] = {.lex_state = 34}, + [1714] = {.lex_state = 182}, [1715] = {.lex_state = 178}, [1716] = {.lex_state = 182}, - [1717] = {.lex_state = 182}, + [1717] = {.lex_state = 178}, [1718] = {.lex_state = 182}, [1719] = {.lex_state = 182}, - [1720] = {.lex_state = 178}, + [1720] = {.lex_state = 182}, [1721] = {.lex_state = 182}, - [1722] = {.lex_state = 179}, + [1722] = {.lex_state = 182}, [1723] = {.lex_state = 182}, [1724] = {.lex_state = 182}, [1725] = {.lex_state = 182}, @@ -15619,19 +15804,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1727] = {.lex_state = 182}, [1728] = {.lex_state = 182}, [1729] = {.lex_state = 182}, - [1730] = {.lex_state = 182}, + [1730] = {.lex_state = 179}, [1731] = {.lex_state = 182}, [1732] = {.lex_state = 182}, [1733] = {.lex_state = 182}, - [1734] = {.lex_state = 178}, + [1734] = {.lex_state = 182}, [1735] = {.lex_state = 182}, [1736] = {.lex_state = 182}, - [1737] = {.lex_state = 182}, + [1737] = {.lex_state = 178}, [1738] = {.lex_state = 182}, [1739] = {.lex_state = 182}, - [1740] = {.lex_state = 182}, + [1740] = {.lex_state = 178}, [1741] = {.lex_state = 182}, - [1742] = {.lex_state = 33}, + [1742] = {.lex_state = 182}, [1743] = {.lex_state = 182}, [1744] = {.lex_state = 182}, [1745] = {.lex_state = 182}, @@ -15641,7 +15826,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1749] = {.lex_state = 178}, [1750] = {.lex_state = 178}, [1751] = {.lex_state = 178}, - [1752] = {.lex_state = 178}, + [1752] = {.lex_state = 179}, [1753] = {.lex_state = 178}, [1754] = {.lex_state = 178}, [1755] = {.lex_state = 178}, @@ -15649,7 +15834,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1757] = {.lex_state = 178}, [1758] = {.lex_state = 178}, [1759] = {.lex_state = 178}, - [1760] = {.lex_state = 179}, + [1760] = {.lex_state = 178}, [1761] = {.lex_state = 178}, [1762] = {.lex_state = 178}, [1763] = {.lex_state = 178}, @@ -15659,21 +15844,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1767] = {.lex_state = 178}, [1768] = {.lex_state = 178}, [1769] = {.lex_state = 178}, - [1770] = {.lex_state = 179}, - [1771] = {.lex_state = 179}, + [1770] = {.lex_state = 178}, + [1771] = {.lex_state = 178}, [1772] = {.lex_state = 178}, [1773] = {.lex_state = 178}, - [1774] = {.lex_state = 178}, - [1775] = {.lex_state = 178}, + [1774] = {.lex_state = 179}, + [1775] = {.lex_state = 179}, [1776] = {.lex_state = 178}, [1777] = {.lex_state = 178}, [1778] = {.lex_state = 178}, [1779] = {.lex_state = 178}, [1780] = {.lex_state = 178}, [1781] = {.lex_state = 178}, - [1782] = {.lex_state = 185}, - [1783] = {.lex_state = 178}, - [1784] = {.lex_state = 185}, + [1782] = {.lex_state = 178}, + [1783] = {.lex_state = 185}, + [1784] = {.lex_state = 178}, [1785] = {.lex_state = 178}, [1786] = {.lex_state = 178}, [1787] = {.lex_state = 178}, @@ -15694,7 +15879,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1802] = {.lex_state = 178}, [1803] = {.lex_state = 178}, [1804] = {.lex_state = 178}, - [1805] = {.lex_state = 178}, + [1805] = {.lex_state = 185}, [1806] = {.lex_state = 178}, [1807] = {.lex_state = 178}, [1808] = {.lex_state = 178}, @@ -15709,11 +15894,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 178}, [1818] = {.lex_state = 178}, [1819] = {.lex_state = 178}, - [1820] = {.lex_state = 37}, + [1820] = {.lex_state = 178}, [1821] = {.lex_state = 178}, [1822] = {.lex_state = 178}, [1823] = {.lex_state = 178}, - [1824] = {.lex_state = 178}, + [1824] = {.lex_state = 38}, [1825] = {.lex_state = 178}, [1826] = {.lex_state = 178}, [1827] = {.lex_state = 178}, @@ -15727,7 +15912,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1835] = {.lex_state = 178}, [1836] = {.lex_state = 178}, [1837] = {.lex_state = 178}, - [1838] = {.lex_state = 178}, + [1838] = {.lex_state = 6}, [1839] = {.lex_state = 178}, [1840] = {.lex_state = 178}, [1841] = {.lex_state = 178}, @@ -15775,11 +15960,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1883] = {.lex_state = 178}, [1884] = {.lex_state = 178}, [1885] = {.lex_state = 178}, - [1886] = {.lex_state = 33}, + [1886] = {.lex_state = 178}, [1887] = {.lex_state = 178}, [1888] = {.lex_state = 178}, [1889] = {.lex_state = 178}, - [1890] = {.lex_state = 6}, + [1890] = {.lex_state = 178}, [1891] = {.lex_state = 178}, [1892] = {.lex_state = 178}, [1893] = {.lex_state = 178}, @@ -15788,30 +15973,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1896] = {.lex_state = 178}, [1897] = {.lex_state = 178}, [1898] = {.lex_state = 178}, - [1899] = {.lex_state = 178}, + [1899] = {.lex_state = 34}, [1900] = {.lex_state = 178}, [1901] = {.lex_state = 178}, [1902] = {.lex_state = 178}, [1903] = {.lex_state = 178}, [1904] = {.lex_state = 178}, [1905] = {.lex_state = 178}, - [1906] = {.lex_state = 33}, - [1907] = {.lex_state = 37}, - [1908] = {.lex_state = 37}, + [1906] = {.lex_state = 38}, + [1907] = {.lex_state = 38}, + [1908] = {.lex_state = 38}, [1909] = {.lex_state = 6}, - [1910] = {.lex_state = 37}, - [1911] = {.lex_state = 185}, - [1912] = {.lex_state = 37}, + [1910] = {.lex_state = 6}, + [1911] = {.lex_state = 6}, + [1912] = {.lex_state = 34}, [1913] = {.lex_state = 6}, - [1914] = {.lex_state = 6}, - [1915] = {.lex_state = 6}, - [1916] = {.lex_state = 185}, + [1914] = {.lex_state = 38}, + [1915] = {.lex_state = 185}, + [1916] = {.lex_state = 64}, [1917] = {.lex_state = 185}, - [1918] = {.lex_state = 33}, - [1919] = {.lex_state = 185}, + [1918] = {.lex_state = 34}, + [1919] = {.lex_state = 34}, [1920] = {.lex_state = 185}, - [1921] = {.lex_state = 63}, - [1922] = {.lex_state = 33}, + [1921] = {.lex_state = 185}, + [1922] = {.lex_state = 185}, [1923] = {.lex_state = 185}, [1924] = {.lex_state = 178}, [1925] = {.lex_state = 178}, @@ -15841,311 +16026,311 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1949] = {.lex_state = 178}, [1950] = {.lex_state = 178}, [1951] = {.lex_state = 178}, - [1952] = {.lex_state = 27}, - [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 25}, - [1956] = {.lex_state = 25}, - [1957] = {.lex_state = 25}, - [1958] = {.lex_state = 27}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 25}, - [1961] = {.lex_state = 25}, - [1962] = {.lex_state = 43}, - [1963] = {.lex_state = 185}, - [1964] = {.lex_state = 43}, - [1965] = {.lex_state = 43}, - [1966] = {.lex_state = 43}, - [1967] = {.lex_state = 55}, - [1968] = {.lex_state = 43}, - [1969] = {.lex_state = 55}, - [1970] = {.lex_state = 55}, - [1971] = {.lex_state = 55}, - [1972] = {.lex_state = 55}, - [1973] = {.lex_state = 55}, - [1974] = {.lex_state = 55}, - [1975] = {.lex_state = 55}, - [1976] = {.lex_state = 55}, - [1977] = {.lex_state = 43}, - [1978] = {.lex_state = 55}, - [1979] = {.lex_state = 43}, - [1980] = {.lex_state = 43}, - [1981] = {.lex_state = 43}, - [1982] = {.lex_state = 43}, - [1983] = {.lex_state = 43}, - [1984] = {.lex_state = 43}, - [1985] = {.lex_state = 43}, - [1986] = {.lex_state = 43}, - [1987] = {.lex_state = 43}, - [1988] = {.lex_state = 28}, - [1989] = {.lex_state = 47}, - [1990] = {.lex_state = 43}, + [1952] = {.lex_state = 26}, + [1953] = {.lex_state = 28}, + [1954] = {.lex_state = 26}, + [1955] = {.lex_state = 28}, + [1956] = {.lex_state = 26}, + [1957] = {.lex_state = 26}, + [1958] = {.lex_state = 26}, + [1959] = {.lex_state = 28}, + [1960] = {.lex_state = 28}, + [1961] = {.lex_state = 28}, + [1962] = {.lex_state = 185}, + [1963] = {.lex_state = 44}, + [1964] = {.lex_state = 44}, + [1965] = {.lex_state = 56}, + [1966] = {.lex_state = 56}, + [1967] = {.lex_state = 44}, + [1968] = {.lex_state = 44}, + [1969] = {.lex_state = 44}, + [1970] = {.lex_state = 56}, + [1971] = {.lex_state = 56}, + [1972] = {.lex_state = 44}, + [1973] = {.lex_state = 44}, + [1974] = {.lex_state = 44}, + [1975] = {.lex_state = 56}, + [1976] = {.lex_state = 44}, + [1977] = {.lex_state = 44}, + [1978] = {.lex_state = 44}, + [1979] = {.lex_state = 44}, + [1980] = {.lex_state = 56}, + [1981] = {.lex_state = 44}, + [1982] = {.lex_state = 56}, + [1983] = {.lex_state = 44}, + [1984] = {.lex_state = 56}, + [1985] = {.lex_state = 44}, + [1986] = {.lex_state = 56}, + [1987] = {.lex_state = 56}, + [1988] = {.lex_state = 6}, + [1989] = {.lex_state = 44}, + [1990] = {.lex_state = 6}, [1991] = {.lex_state = 6}, - [1992] = {.lex_state = 43}, - [1993] = {.lex_state = 47}, - [1994] = {.lex_state = 43}, - [1995] = {.lex_state = 28}, - [1996] = {.lex_state = 43}, - [1997] = {.lex_state = 45}, - [1998] = {.lex_state = 6}, - [1999] = {.lex_state = 6}, - [2000] = {.lex_state = 43}, - [2001] = {.lex_state = 6}, - [2002] = {.lex_state = 43}, - [2003] = {.lex_state = 6}, - [2004] = {.lex_state = 43}, - [2005] = {.lex_state = 45}, - [2006] = {.lex_state = 55}, - [2007] = {.lex_state = 43}, - [2008] = {.lex_state = 31}, - [2009] = {.lex_state = 31}, - [2010] = {.lex_state = 43}, - [2011] = {.lex_state = 43}, - [2012] = {.lex_state = 43}, - [2013] = {.lex_state = 43}, - [2014] = {.lex_state = 43}, - [2015] = {.lex_state = 55}, - [2016] = {.lex_state = 55}, - [2017] = {.lex_state = 43}, - [2018] = {.lex_state = 43}, - [2019] = {.lex_state = 55}, - [2020] = {.lex_state = 55}, - [2021] = {.lex_state = 14}, + [1992] = {.lex_state = 44}, + [1993] = {.lex_state = 44}, + [1994] = {.lex_state = 48}, + [1995] = {.lex_state = 44}, + [1996] = {.lex_state = 32}, + [1997] = {.lex_state = 44}, + [1998] = {.lex_state = 44}, + [1999] = {.lex_state = 32}, + [2000] = {.lex_state = 44}, + [2001] = {.lex_state = 29}, + [2002] = {.lex_state = 6}, + [2003] = {.lex_state = 46}, + [2004] = {.lex_state = 48}, + [2005] = {.lex_state = 44}, + [2006] = {.lex_state = 46}, + [2007] = {.lex_state = 29}, + [2008] = {.lex_state = 56}, + [2009] = {.lex_state = 6}, + [2010] = {.lex_state = 44}, + [2011] = {.lex_state = 44}, + [2012] = {.lex_state = 44}, + [2013] = {.lex_state = 56}, + [2014] = {.lex_state = 56}, + [2015] = {.lex_state = 44}, + [2016] = {.lex_state = 56}, + [2017] = {.lex_state = 56}, + [2018] = {.lex_state = 14}, + [2019] = {.lex_state = 44}, + [2020] = {.lex_state = 44}, + [2021] = {.lex_state = 44}, [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 43}, - [2024] = {.lex_state = 55}, - [2025] = {.lex_state = 55}, - [2026] = {.lex_state = 55}, - [2027] = {.lex_state = 43}, - [2028] = {.lex_state = 43}, - [2029] = {.lex_state = 43}, - [2030] = {.lex_state = 43}, - [2031] = {.lex_state = 43}, - [2032] = {.lex_state = 43}, - [2033] = {.lex_state = 55}, - [2034] = {.lex_state = 43}, - [2035] = {.lex_state = 43}, - [2036] = {.lex_state = 43}, - [2037] = {.lex_state = 43}, - [2038] = {.lex_state = 43}, - [2039] = {.lex_state = 43}, - [2040] = {.lex_state = 43}, - [2041] = {.lex_state = 43}, - [2042] = {.lex_state = 55}, - [2043] = {.lex_state = 55}, - [2044] = {.lex_state = 43}, - [2045] = {.lex_state = 43}, - [2046] = {.lex_state = 55}, - [2047] = {.lex_state = 43}, - [2048] = {.lex_state = 43}, - [2049] = {.lex_state = 43}, - [2050] = {.lex_state = 43}, - [2051] = {.lex_state = 43}, - [2052] = {.lex_state = 43}, - [2053] = {.lex_state = 43}, - [2054] = {.lex_state = 55}, - [2055] = {.lex_state = 55}, - [2056] = {.lex_state = 55}, - [2057] = {.lex_state = 43}, - [2058] = {.lex_state = 43}, - [2059] = {.lex_state = 43}, - [2060] = {.lex_state = 55}, - [2061] = {.lex_state = 43}, - [2062] = {.lex_state = 55}, - [2063] = {.lex_state = 55}, - [2064] = {.lex_state = 55}, - [2065] = {.lex_state = 55}, - [2066] = {.lex_state = 55}, - [2067] = {.lex_state = 55}, - [2068] = {.lex_state = 43}, - [2069] = {.lex_state = 43}, - [2070] = {.lex_state = 43}, - [2071] = {.lex_state = 55}, - [2072] = {.lex_state = 55}, - [2073] = {.lex_state = 43}, - [2074] = {.lex_state = 43}, - [2075] = {.lex_state = 55}, - [2076] = {.lex_state = 55}, - [2077] = {.lex_state = 43}, - [2078] = {.lex_state = 43}, - [2079] = {.lex_state = 55}, - [2080] = {.lex_state = 43}, - [2081] = {.lex_state = 43}, - [2082] = {.lex_state = 55}, - [2083] = {.lex_state = 43}, - [2084] = {.lex_state = 43}, - [2085] = {.lex_state = 43}, - [2086] = {.lex_state = 43}, - [2087] = {.lex_state = 43}, - [2088] = {.lex_state = 43}, - [2089] = {.lex_state = 55}, - [2090] = {.lex_state = 55}, - [2091] = {.lex_state = 55}, - [2092] = {.lex_state = 43}, - [2093] = {.lex_state = 55}, - [2094] = {.lex_state = 43}, - [2095] = {.lex_state = 43}, - [2096] = {.lex_state = 43}, - [2097] = {.lex_state = 43}, - [2098] = {.lex_state = 43}, - [2099] = {.lex_state = 55}, - [2100] = {.lex_state = 43}, - [2101] = {.lex_state = 55}, - [2102] = {.lex_state = 55}, - [2103] = {.lex_state = 55}, - [2104] = {.lex_state = 43}, - [2105] = {.lex_state = 55}, - [2106] = {.lex_state = 55}, - [2107] = {.lex_state = 55}, - [2108] = {.lex_state = 55}, - [2109] = {.lex_state = 55}, - [2110] = {.lex_state = 55}, - [2111] = {.lex_state = 55}, - [2112] = {.lex_state = 55}, - [2113] = {.lex_state = 55}, - [2114] = {.lex_state = 55}, - [2115] = {.lex_state = 55}, - [2116] = {.lex_state = 55}, - [2117] = {.lex_state = 55}, - [2118] = {.lex_state = 43}, - [2119] = {.lex_state = 55}, - [2120] = {.lex_state = 43}, - [2121] = {.lex_state = 55}, - [2122] = {.lex_state = 55}, - [2123] = {.lex_state = 55}, - [2124] = {.lex_state = 55}, - [2125] = {.lex_state = 55}, - [2126] = {.lex_state = 55}, - [2127] = {.lex_state = 43}, - [2128] = {.lex_state = 55}, - [2129] = {.lex_state = 43}, - [2130] = {.lex_state = 55}, - [2131] = {.lex_state = 43}, - [2132] = {.lex_state = 55}, - [2133] = {.lex_state = 43}, - [2134] = {.lex_state = 43}, - [2135] = {.lex_state = 55}, - [2136] = {.lex_state = 43}, - [2137] = {.lex_state = 55}, - [2138] = {.lex_state = 55}, - [2139] = {.lex_state = 55}, - [2140] = {.lex_state = 55}, - [2141] = {.lex_state = 55}, - [2142] = {.lex_state = 55}, - [2143] = {.lex_state = 43}, - [2144] = {.lex_state = 43}, - [2145] = {.lex_state = 43}, - [2146] = {.lex_state = 43}, - [2147] = {.lex_state = 43}, - [2148] = {.lex_state = 43}, - [2149] = {.lex_state = 55}, - [2150] = {.lex_state = 55}, - [2151] = {.lex_state = 55}, - [2152] = {.lex_state = 55}, - [2153] = {.lex_state = 55}, - [2154] = {.lex_state = 43}, - [2155] = {.lex_state = 43}, - [2156] = {.lex_state = 55}, - [2157] = {.lex_state = 43}, - [2158] = {.lex_state = 55}, - [2159] = {.lex_state = 43}, - [2160] = {.lex_state = 43}, - [2161] = {.lex_state = 43}, - [2162] = {.lex_state = 43}, - [2163] = {.lex_state = 55}, - [2164] = {.lex_state = 55}, - [2165] = {.lex_state = 14}, - [2166] = {.lex_state = 43}, - [2167] = {.lex_state = 55}, - [2168] = {.lex_state = 43}, - [2169] = {.lex_state = 43}, - [2170] = {.lex_state = 43}, - [2171] = {.lex_state = 43}, - [2172] = {.lex_state = 55}, - [2173] = {.lex_state = 43}, - [2174] = {.lex_state = 43}, - [2175] = {.lex_state = 43}, - [2176] = {.lex_state = 43}, - [2177] = {.lex_state = 43}, - [2178] = {.lex_state = 43}, - [2179] = {.lex_state = 55}, - [2180] = {.lex_state = 43}, - [2181] = {.lex_state = 43}, - [2182] = {.lex_state = 43}, - [2183] = {.lex_state = 43}, - [2184] = {.lex_state = 55}, - [2185] = {.lex_state = 43}, - [2186] = {.lex_state = 43}, - [2187] = {.lex_state = 43}, - [2188] = {.lex_state = 55}, - [2189] = {.lex_state = 55}, - [2190] = {.lex_state = 55}, - [2191] = {.lex_state = 55}, - [2192] = {.lex_state = 43}, - [2193] = {.lex_state = 55}, - [2194] = {.lex_state = 55}, - [2195] = {.lex_state = 55}, - [2196] = {.lex_state = 55}, - [2197] = {.lex_state = 55}, - [2198] = {.lex_state = 43}, - [2199] = {.lex_state = 43}, - [2200] = {.lex_state = 55}, - [2201] = {.lex_state = 55}, - [2202] = {.lex_state = 43}, - [2203] = {.lex_state = 43}, - [2204] = {.lex_state = 43}, - [2205] = {.lex_state = 55}, - [2206] = {.lex_state = 55}, - [2207] = {.lex_state = 55}, - [2208] = {.lex_state = 43}, - [2209] = {.lex_state = 55}, - [2210] = {.lex_state = 55}, - [2211] = {.lex_state = 55}, - [2212] = {.lex_state = 43}, - [2213] = {.lex_state = 55}, - [2214] = {.lex_state = 55}, - [2215] = {.lex_state = 55}, - [2216] = {.lex_state = 43}, - [2217] = {.lex_state = 43}, - [2218] = {.lex_state = 43}, - [2219] = {.lex_state = 55}, - [2220] = {.lex_state = 43}, - [2221] = {.lex_state = 43}, - [2222] = {.lex_state = 55}, - [2223] = {.lex_state = 43}, - [2224] = {.lex_state = 43}, - [2225] = {.lex_state = 43}, - [2226] = {.lex_state = 55}, - [2227] = {.lex_state = 55}, - [2228] = {.lex_state = 33}, - [2229] = {.lex_state = 33}, - [2230] = {.lex_state = 33}, - [2231] = {.lex_state = 33}, - [2232] = {.lex_state = 33}, + [2023] = {.lex_state = 44}, + [2024] = {.lex_state = 56}, + [2025] = {.lex_state = 56}, + [2026] = {.lex_state = 56}, + [2027] = {.lex_state = 56}, + [2028] = {.lex_state = 56}, + [2029] = {.lex_state = 44}, + [2030] = {.lex_state = 44}, + [2031] = {.lex_state = 44}, + [2032] = {.lex_state = 44}, + [2033] = {.lex_state = 44}, + [2034] = {.lex_state = 56}, + [2035] = {.lex_state = 44}, + [2036] = {.lex_state = 44}, + [2037] = {.lex_state = 44}, + [2038] = {.lex_state = 44}, + [2039] = {.lex_state = 44}, + [2040] = {.lex_state = 44}, + [2041] = {.lex_state = 44}, + [2042] = {.lex_state = 56}, + [2043] = {.lex_state = 44}, + [2044] = {.lex_state = 56}, + [2045] = {.lex_state = 44}, + [2046] = {.lex_state = 44}, + [2047] = {.lex_state = 56}, + [2048] = {.lex_state = 56}, + [2049] = {.lex_state = 44}, + [2050] = {.lex_state = 44}, + [2051] = {.lex_state = 44}, + [2052] = {.lex_state = 44}, + [2053] = {.lex_state = 56}, + [2054] = {.lex_state = 44}, + [2055] = {.lex_state = 56}, + [2056] = {.lex_state = 56}, + [2057] = {.lex_state = 56}, + [2058] = {.lex_state = 44}, + [2059] = {.lex_state = 44}, + [2060] = {.lex_state = 44}, + [2061] = {.lex_state = 44}, + [2062] = {.lex_state = 44}, + [2063] = {.lex_state = 44}, + [2064] = {.lex_state = 56}, + [2065] = {.lex_state = 56}, + [2066] = {.lex_state = 56}, + [2067] = {.lex_state = 56}, + [2068] = {.lex_state = 56}, + [2069] = {.lex_state = 56}, + [2070] = {.lex_state = 44}, + [2071] = {.lex_state = 44}, + [2072] = {.lex_state = 56}, + [2073] = {.lex_state = 56}, + [2074] = {.lex_state = 44}, + [2075] = {.lex_state = 44}, + [2076] = {.lex_state = 44}, + [2077] = {.lex_state = 44}, + [2078] = {.lex_state = 44}, + [2079] = {.lex_state = 44}, + [2080] = {.lex_state = 56}, + [2081] = {.lex_state = 44}, + [2082] = {.lex_state = 56}, + [2083] = {.lex_state = 56}, + [2084] = {.lex_state = 44}, + [2085] = {.lex_state = 44}, + [2086] = {.lex_state = 44}, + [2087] = {.lex_state = 44}, + [2088] = {.lex_state = 44}, + [2089] = {.lex_state = 44}, + [2090] = {.lex_state = 44}, + [2091] = {.lex_state = 44}, + [2092] = {.lex_state = 44}, + [2093] = {.lex_state = 44}, + [2094] = {.lex_state = 56}, + [2095] = {.lex_state = 44}, + [2096] = {.lex_state = 44}, + [2097] = {.lex_state = 44}, + [2098] = {.lex_state = 44}, + [2099] = {.lex_state = 44}, + [2100] = {.lex_state = 44}, + [2101] = {.lex_state = 44}, + [2102] = {.lex_state = 56}, + [2103] = {.lex_state = 56}, + [2104] = {.lex_state = 56}, + [2105] = {.lex_state = 44}, + [2106] = {.lex_state = 56}, + [2107] = {.lex_state = 44}, + [2108] = {.lex_state = 56}, + [2109] = {.lex_state = 44}, + [2110] = {.lex_state = 56}, + [2111] = {.lex_state = 56}, + [2112] = {.lex_state = 44}, + [2113] = {.lex_state = 56}, + [2114] = {.lex_state = 56}, + [2115] = {.lex_state = 56}, + [2116] = {.lex_state = 44}, + [2117] = {.lex_state = 56}, + [2118] = {.lex_state = 44}, + [2119] = {.lex_state = 44}, + [2120] = {.lex_state = 44}, + [2121] = {.lex_state = 56}, + [2122] = {.lex_state = 44}, + [2123] = {.lex_state = 56}, + [2124] = {.lex_state = 56}, + [2125] = {.lex_state = 56}, + [2126] = {.lex_state = 56}, + [2127] = {.lex_state = 56}, + [2128] = {.lex_state = 56}, + [2129] = {.lex_state = 56}, + [2130] = {.lex_state = 56}, + [2131] = {.lex_state = 56}, + [2132] = {.lex_state = 56}, + [2133] = {.lex_state = 56}, + [2134] = {.lex_state = 44}, + [2135] = {.lex_state = 44}, + [2136] = {.lex_state = 56}, + [2137] = {.lex_state = 56}, + [2138] = {.lex_state = 56}, + [2139] = {.lex_state = 56}, + [2140] = {.lex_state = 56}, + [2141] = {.lex_state = 44}, + [2142] = {.lex_state = 44}, + [2143] = {.lex_state = 56}, + [2144] = {.lex_state = 44}, + [2145] = {.lex_state = 56}, + [2146] = {.lex_state = 44}, + [2147] = {.lex_state = 56}, + [2148] = {.lex_state = 44}, + [2149] = {.lex_state = 44}, + [2150] = {.lex_state = 56}, + [2151] = {.lex_state = 56}, + [2152] = {.lex_state = 56}, + [2153] = {.lex_state = 44}, + [2154] = {.lex_state = 44}, + [2155] = {.lex_state = 56}, + [2156] = {.lex_state = 56}, + [2157] = {.lex_state = 56}, + [2158] = {.lex_state = 44}, + [2159] = {.lex_state = 56}, + [2160] = {.lex_state = 56}, + [2161] = {.lex_state = 56}, + [2162] = {.lex_state = 44}, + [2163] = {.lex_state = 56}, + [2164] = {.lex_state = 56}, + [2165] = {.lex_state = 44}, + [2166] = {.lex_state = 44}, + [2167] = {.lex_state = 56}, + [2168] = {.lex_state = 44}, + [2169] = {.lex_state = 44}, + [2170] = {.lex_state = 44}, + [2171] = {.lex_state = 44}, + [2172] = {.lex_state = 56}, + [2173] = {.lex_state = 56}, + [2174] = {.lex_state = 56}, + [2175] = {.lex_state = 56}, + [2176] = {.lex_state = 44}, + [2177] = {.lex_state = 44}, + [2178] = {.lex_state = 44}, + [2179] = {.lex_state = 44}, + [2180] = {.lex_state = 56}, + [2181] = {.lex_state = 56}, + [2182] = {.lex_state = 44}, + [2183] = {.lex_state = 44}, + [2184] = {.lex_state = 44}, + [2185] = {.lex_state = 44}, + [2186] = {.lex_state = 56}, + [2187] = {.lex_state = 44}, + [2188] = {.lex_state = 56}, + [2189] = {.lex_state = 44}, + [2190] = {.lex_state = 56}, + [2191] = {.lex_state = 56}, + [2192] = {.lex_state = 56}, + [2193] = {.lex_state = 44}, + [2194] = {.lex_state = 56}, + [2195] = {.lex_state = 56}, + [2196] = {.lex_state = 44}, + [2197] = {.lex_state = 56}, + [2198] = {.lex_state = 56}, + [2199] = {.lex_state = 14}, + [2200] = {.lex_state = 44}, + [2201] = {.lex_state = 56}, + [2202] = {.lex_state = 44}, + [2203] = {.lex_state = 44}, + [2204] = {.lex_state = 44}, + [2205] = {.lex_state = 44}, + [2206] = {.lex_state = 44}, + [2207] = {.lex_state = 44}, + [2208] = {.lex_state = 56}, + [2209] = {.lex_state = 56}, + [2210] = {.lex_state = 56}, + [2211] = {.lex_state = 56}, + [2212] = {.lex_state = 44}, + [2213] = {.lex_state = 44}, + [2214] = {.lex_state = 56}, + [2215] = {.lex_state = 56}, + [2216] = {.lex_state = 56}, + [2217] = {.lex_state = 44}, + [2218] = {.lex_state = 44}, + [2219] = {.lex_state = 44}, + [2220] = {.lex_state = 44}, + [2221] = {.lex_state = 56}, + [2222] = {.lex_state = 56}, + [2223] = {.lex_state = 56}, + [2224] = {.lex_state = 44}, + [2225] = {.lex_state = 56}, + [2226] = {.lex_state = 56}, + [2227] = {.lex_state = 56}, + [2228] = {.lex_state = 34}, + [2229] = {.lex_state = 34}, + [2230] = {.lex_state = 34}, + [2231] = {.lex_state = 34}, + [2232] = {.lex_state = 34}, [2233] = {.lex_state = 7}, [2234] = {.lex_state = 7}, - [2235] = {.lex_state = 43}, + [2235] = {.lex_state = 44}, [2236] = {.lex_state = 7}, - [2237] = {.lex_state = 63}, + [2237] = {.lex_state = 64}, [2238] = {.lex_state = 7}, [2239] = {.lex_state = 7}, - [2240] = {.lex_state = 7}, - [2241] = {.lex_state = 63}, - [2242] = {.lex_state = 7}, - [2243] = {.lex_state = 63}, - [2244] = {.lex_state = 10}, - [2245] = {.lex_state = 10}, - [2246] = {.lex_state = 7}, - [2247] = {.lex_state = 7}, - [2248] = {.lex_state = 7}, - [2249] = {.lex_state = 63}, - [2250] = {.lex_state = 10}, - [2251] = {.lex_state = 63}, - [2252] = {.lex_state = 63}, - [2253] = {.lex_state = 63}, - [2254] = {.lex_state = 63}, - [2255] = {.lex_state = 63}, - [2256] = {.lex_state = 63}, + [2240] = {.lex_state = 64}, + [2241] = {.lex_state = 10}, + [2242] = {.lex_state = 10}, + [2243] = {.lex_state = 64}, + [2244] = {.lex_state = 7}, + [2245] = {.lex_state = 64}, + [2246] = {.lex_state = 64}, + [2247] = {.lex_state = 10}, + [2248] = {.lex_state = 64}, + [2249] = {.lex_state = 64}, + [2250] = {.lex_state = 64}, + [2251] = {.lex_state = 7}, + [2252] = {.lex_state = 7}, + [2253] = {.lex_state = 7}, + [2254] = {.lex_state = 64}, + [2255] = {.lex_state = 64}, + [2256] = {.lex_state = 7}, [2257] = {.lex_state = 10}, [2258] = {.lex_state = 7}, [2259] = {.lex_state = 7}, @@ -16153,7 +16338,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 7}, [2262] = {.lex_state = 7}, [2263] = {.lex_state = 7}, - [2264] = {.lex_state = 7}, + [2264] = {.lex_state = 64}, [2265] = {.lex_state = 7}, [2266] = {.lex_state = 7}, [2267] = {.lex_state = 7}, @@ -16179,7 +16364,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2287] = {.lex_state = 7}, [2288] = {.lex_state = 7}, [2289] = {.lex_state = 7}, - [2290] = {.lex_state = 7}, + [2290] = {.lex_state = 38}, [2291] = {.lex_state = 7}, [2292] = {.lex_state = 7}, [2293] = {.lex_state = 7}, @@ -16193,14 +16378,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2301] = {.lex_state = 7}, [2302] = {.lex_state = 7}, [2303] = {.lex_state = 7}, - [2304] = {.lex_state = 7}, - [2305] = {.lex_state = 63}, - [2306] = {.lex_state = 7}, - [2307] = {.lex_state = 15}, - [2308] = {.lex_state = 7}, - [2309] = {.lex_state = 7}, + [2304] = {.lex_state = 38}, + [2305] = {.lex_state = 7}, + [2306] = {.lex_state = 38}, + [2307] = {.lex_state = 7}, + [2308] = {.lex_state = 38}, + [2309] = {.lex_state = 38}, [2310] = {.lex_state = 7}, - [2311] = {.lex_state = 63}, + [2311] = {.lex_state = 7}, [2312] = {.lex_state = 7}, [2313] = {.lex_state = 7}, [2314] = {.lex_state = 7}, @@ -16209,21 +16394,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2317] = {.lex_state = 7}, [2318] = {.lex_state = 7}, [2319] = {.lex_state = 7}, - [2320] = {.lex_state = 7}, + [2320] = {.lex_state = 64}, [2321] = {.lex_state = 7}, [2322] = {.lex_state = 7}, [2323] = {.lex_state = 7}, [2324] = {.lex_state = 7}, [2325] = {.lex_state = 7}, - [2326] = {.lex_state = 37}, + [2326] = {.lex_state = 7}, [2327] = {.lex_state = 7}, - [2328] = {.lex_state = 37}, - [2329] = {.lex_state = 37}, + [2328] = {.lex_state = 7}, + [2329] = {.lex_state = 7}, [2330] = {.lex_state = 7}, - [2331] = {.lex_state = 7}, - [2332] = {.lex_state = 63}, - [2333] = {.lex_state = 37}, - [2334] = {.lex_state = 37}, + [2331] = {.lex_state = 64}, + [2332] = {.lex_state = 7}, + [2333] = {.lex_state = 7}, + [2334] = {.lex_state = 7}, [2335] = {.lex_state = 7}, [2336] = {.lex_state = 7}, [2337] = {.lex_state = 7}, @@ -16232,12 +16417,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2340] = {.lex_state = 7}, [2341] = {.lex_state = 7}, [2342] = {.lex_state = 7}, - [2343] = {.lex_state = 7}, + [2343] = {.lex_state = 15}, [2344] = {.lex_state = 7}, - [2345] = {.lex_state = 7}, + [2345] = {.lex_state = 64}, [2346] = {.lex_state = 7}, [2347] = {.lex_state = 7}, - [2348] = {.lex_state = 63}, + [2348] = {.lex_state = 7}, [2349] = {.lex_state = 7}, [2350] = {.lex_state = 7}, [2351] = {.lex_state = 7}, @@ -16259,451 +16444,451 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2367] = {.lex_state = 7}, [2368] = {.lex_state = 7}, [2369] = {.lex_state = 7}, - [2370] = {.lex_state = 57}, - [2371] = {.lex_state = 57}, - [2372] = {.lex_state = 7}, - [2373] = {.lex_state = 7}, - [2374] = {.lex_state = 7}, - [2375] = {.lex_state = 7}, + [2370] = {.lex_state = 7}, + [2371] = {.lex_state = 7}, + [2372] = {.lex_state = 50}, + [2373] = {.lex_state = 50}, + [2374] = {.lex_state = 64}, + [2375] = {.lex_state = 58}, [2376] = {.lex_state = 7}, [2377] = {.lex_state = 7}, - [2378] = {.lex_state = 63}, + [2378] = {.lex_state = 58}, [2379] = {.lex_state = 7}, - [2380] = {.lex_state = 49}, + [2380] = {.lex_state = 7}, [2381] = {.lex_state = 7}, - [2382] = {.lex_state = 63}, - [2383] = {.lex_state = 49}, + [2382] = {.lex_state = 7}, + [2383] = {.lex_state = 58}, [2384] = {.lex_state = 7}, [2385] = {.lex_state = 7}, - [2386] = {.lex_state = 57}, + [2386] = {.lex_state = 64}, [2387] = {.lex_state = 7}, [2388] = {.lex_state = 7}, - [2389] = {.lex_state = 34}, - [2390] = {.lex_state = 34}, - [2391] = {.lex_state = 57}, - [2392] = {.lex_state = 7}, - [2393] = {.lex_state = 57}, + [2389] = {.lex_state = 35}, + [2390] = {.lex_state = 35}, + [2391] = {.lex_state = 7}, + [2392] = {.lex_state = 58}, + [2393] = {.lex_state = 58}, [2394] = {.lex_state = 7}, - [2395] = {.lex_state = 57}, - [2396] = {.lex_state = 57}, - [2397] = {.lex_state = 57}, - [2398] = {.lex_state = 57}, - [2399] = {.lex_state = 57}, - [2400] = {.lex_state = 57}, - [2401] = {.lex_state = 57}, - [2402] = {.lex_state = 57}, - [2403] = {.lex_state = 57}, - [2404] = {.lex_state = 57}, - [2405] = {.lex_state = 57}, - [2406] = {.lex_state = 57}, - [2407] = {.lex_state = 57}, - [2408] = {.lex_state = 57}, - [2409] = {.lex_state = 57}, - [2410] = {.lex_state = 57}, - [2411] = {.lex_state = 57}, - [2412] = {.lex_state = 57}, - [2413] = {.lex_state = 57}, - [2414] = {.lex_state = 57}, - [2415] = {.lex_state = 57}, - [2416] = {.lex_state = 57}, - [2417] = {.lex_state = 57}, - [2418] = {.lex_state = 57}, - [2419] = {.lex_state = 57}, - [2420] = {.lex_state = 57}, - [2421] = {.lex_state = 57}, - [2422] = {.lex_state = 57}, - [2423] = {.lex_state = 57}, - [2424] = {.lex_state = 57}, - [2425] = {.lex_state = 57}, - [2426] = {.lex_state = 57}, - [2427] = {.lex_state = 57}, - [2428] = {.lex_state = 57}, - [2429] = {.lex_state = 57}, - [2430] = {.lex_state = 57}, - [2431] = {.lex_state = 57}, - [2432] = {.lex_state = 57}, - [2433] = {.lex_state = 57}, - [2434] = {.lex_state = 57}, - [2435] = {.lex_state = 57}, - [2436] = {.lex_state = 57}, - [2437] = {.lex_state = 57}, - [2438] = {.lex_state = 57}, - [2439] = {.lex_state = 57}, - [2440] = {.lex_state = 57}, - [2441] = {.lex_state = 57}, - [2442] = {.lex_state = 57}, - [2443] = {.lex_state = 57}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 57}, - [2446] = {.lex_state = 57}, - [2447] = {.lex_state = 57}, - [2448] = {.lex_state = 57}, - [2449] = {.lex_state = 57}, - [2450] = {.lex_state = 57}, - [2451] = {.lex_state = 57}, - [2452] = {.lex_state = 57}, - [2453] = {.lex_state = 57}, - [2454] = {.lex_state = 57}, - [2455] = {.lex_state = 57}, - [2456] = {.lex_state = 57}, - [2457] = {.lex_state = 57}, - [2458] = {.lex_state = 57}, - [2459] = {.lex_state = 57}, - [2460] = {.lex_state = 57}, - [2461] = {.lex_state = 57}, - [2462] = {.lex_state = 57}, - [2463] = {.lex_state = 57}, - [2464] = {.lex_state = 57}, - [2465] = {.lex_state = 57}, - [2466] = {.lex_state = 57}, - [2467] = {.lex_state = 57}, - [2468] = {.lex_state = 57}, - [2469] = {.lex_state = 57}, - [2470] = {.lex_state = 57}, - [2471] = {.lex_state = 57}, - [2472] = {.lex_state = 57}, - [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 57}, - [2475] = {.lex_state = 57}, - [2476] = {.lex_state = 57}, - [2477] = {.lex_state = 57}, - [2478] = {.lex_state = 57}, - [2479] = {.lex_state = 57}, - [2480] = {.lex_state = 57}, - [2481] = {.lex_state = 57}, - [2482] = {.lex_state = 57}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 57}, - [2485] = {.lex_state = 57}, - [2486] = {.lex_state = 57}, - [2487] = {.lex_state = 57}, - [2488] = {.lex_state = 57}, - [2489] = {.lex_state = 57}, - [2490] = {.lex_state = 57}, - [2491] = {.lex_state = 57}, - [2492] = {.lex_state = 57}, - [2493] = {.lex_state = 57}, - [2494] = {.lex_state = 57}, - [2495] = {.lex_state = 57}, - [2496] = {.lex_state = 57}, - [2497] = {.lex_state = 57}, - [2498] = {.lex_state = 57}, - [2499] = {.lex_state = 57}, - [2500] = {.lex_state = 57}, - [2501] = {.lex_state = 57}, - [2502] = {.lex_state = 57}, - [2503] = {.lex_state = 57}, - [2504] = {.lex_state = 59}, - [2505] = {.lex_state = 57}, - [2506] = {.lex_state = 57}, - [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 17}, - [2509] = {.lex_state = 59}, - [2510] = {.lex_state = 57}, - [2511] = {.lex_state = 17}, - [2512] = {.lex_state = 12}, - [2513] = {.lex_state = 57}, - [2514] = {.lex_state = 59}, + [2395] = {.lex_state = 58}, + [2396] = {.lex_state = 58}, + [2397] = {.lex_state = 58}, + [2398] = {.lex_state = 58}, + [2399] = {.lex_state = 58}, + [2400] = {.lex_state = 58}, + [2401] = {.lex_state = 58}, + [2402] = {.lex_state = 58}, + [2403] = {.lex_state = 58}, + [2404] = {.lex_state = 58}, + [2405] = {.lex_state = 58}, + [2406] = {.lex_state = 58}, + [2407] = {.lex_state = 58}, + [2408] = {.lex_state = 58}, + [2409] = {.lex_state = 58}, + [2410] = {.lex_state = 58}, + [2411] = {.lex_state = 58}, + [2412] = {.lex_state = 58}, + [2413] = {.lex_state = 58}, + [2414] = {.lex_state = 58}, + [2415] = {.lex_state = 58}, + [2416] = {.lex_state = 58}, + [2417] = {.lex_state = 58}, + [2418] = {.lex_state = 58}, + [2419] = {.lex_state = 58}, + [2420] = {.lex_state = 58}, + [2421] = {.lex_state = 58}, + [2422] = {.lex_state = 58}, + [2423] = {.lex_state = 58}, + [2424] = {.lex_state = 58}, + [2425] = {.lex_state = 58}, + [2426] = {.lex_state = 58}, + [2427] = {.lex_state = 58}, + [2428] = {.lex_state = 58}, + [2429] = {.lex_state = 58}, + [2430] = {.lex_state = 58}, + [2431] = {.lex_state = 58}, + [2432] = {.lex_state = 58}, + [2433] = {.lex_state = 58}, + [2434] = {.lex_state = 58}, + [2435] = {.lex_state = 58}, + [2436] = {.lex_state = 58}, + [2437] = {.lex_state = 58}, + [2438] = {.lex_state = 58}, + [2439] = {.lex_state = 58}, + [2440] = {.lex_state = 58}, + [2441] = {.lex_state = 58}, + [2442] = {.lex_state = 58}, + [2443] = {.lex_state = 58}, + [2444] = {.lex_state = 58}, + [2445] = {.lex_state = 58}, + [2446] = {.lex_state = 58}, + [2447] = {.lex_state = 58}, + [2448] = {.lex_state = 58}, + [2449] = {.lex_state = 58}, + [2450] = {.lex_state = 58}, + [2451] = {.lex_state = 58}, + [2452] = {.lex_state = 58}, + [2453] = {.lex_state = 58}, + [2454] = {.lex_state = 58}, + [2455] = {.lex_state = 58}, + [2456] = {.lex_state = 58}, + [2457] = {.lex_state = 58}, + [2458] = {.lex_state = 58}, + [2459] = {.lex_state = 58}, + [2460] = {.lex_state = 58}, + [2461] = {.lex_state = 58}, + [2462] = {.lex_state = 58}, + [2463] = {.lex_state = 58}, + [2464] = {.lex_state = 58}, + [2465] = {.lex_state = 58}, + [2466] = {.lex_state = 58}, + [2467] = {.lex_state = 58}, + [2468] = {.lex_state = 58}, + [2469] = {.lex_state = 58}, + [2470] = {.lex_state = 58}, + [2471] = {.lex_state = 58}, + [2472] = {.lex_state = 58}, + [2473] = {.lex_state = 58}, + [2474] = {.lex_state = 58}, + [2475] = {.lex_state = 58}, + [2476] = {.lex_state = 58}, + [2477] = {.lex_state = 58}, + [2478] = {.lex_state = 58}, + [2479] = {.lex_state = 58}, + [2480] = {.lex_state = 58}, + [2481] = {.lex_state = 58}, + [2482] = {.lex_state = 58}, + [2483] = {.lex_state = 58}, + [2484] = {.lex_state = 58}, + [2485] = {.lex_state = 58}, + [2486] = {.lex_state = 58}, + [2487] = {.lex_state = 58}, + [2488] = {.lex_state = 58}, + [2489] = {.lex_state = 58}, + [2490] = {.lex_state = 58}, + [2491] = {.lex_state = 58}, + [2492] = {.lex_state = 58}, + [2493] = {.lex_state = 58}, + [2494] = {.lex_state = 58}, + [2495] = {.lex_state = 58}, + [2496] = {.lex_state = 58}, + [2497] = {.lex_state = 58}, + [2498] = {.lex_state = 58}, + [2499] = {.lex_state = 58}, + [2500] = {.lex_state = 58}, + [2501] = {.lex_state = 58}, + [2502] = {.lex_state = 58}, + [2503] = {.lex_state = 58}, + [2504] = {.lex_state = 12}, + [2505] = {.lex_state = 60}, + [2506] = {.lex_state = 58}, + [2507] = {.lex_state = 58}, + [2508] = {.lex_state = 58}, + [2509] = {.lex_state = 58}, + [2510] = {.lex_state = 58}, + [2511] = {.lex_state = 12}, + [2512] = {.lex_state = 58}, + [2513] = {.lex_state = 60}, + [2514] = {.lex_state = 58}, [2515] = {.lex_state = 12}, - [2516] = {.lex_state = 12}, - [2517] = {.lex_state = 57}, + [2516] = {.lex_state = 58}, + [2517] = {.lex_state = 60}, [2518] = {.lex_state = 12}, - [2519] = {.lex_state = 59}, - [2520] = {.lex_state = 59}, - [2521] = {.lex_state = 57}, - [2522] = {.lex_state = 57}, - [2523] = {.lex_state = 59}, - [2524] = {.lex_state = 15}, - [2525] = {.lex_state = 59}, - [2526] = {.lex_state = 59}, - [2527] = {.lex_state = 57}, + [2519] = {.lex_state = 58}, + [2520] = {.lex_state = 60}, + [2521] = {.lex_state = 58}, + [2522] = {.lex_state = 12}, + [2523] = {.lex_state = 12}, + [2524] = {.lex_state = 60}, + [2525] = {.lex_state = 15}, + [2526] = {.lex_state = 60}, + [2527] = {.lex_state = 12}, [2528] = {.lex_state = 12}, - [2529] = {.lex_state = 59}, - [2530] = {.lex_state = 57}, - [2531] = {.lex_state = 59}, - [2532] = {.lex_state = 12}, - [2533] = {.lex_state = 12}, - [2534] = {.lex_state = 12}, + [2529] = {.lex_state = 17}, + [2530] = {.lex_state = 12}, + [2531] = {.lex_state = 12}, + [2532] = {.lex_state = 17}, + [2533] = {.lex_state = 17}, + [2534] = {.lex_state = 60}, [2535] = {.lex_state = 12}, - [2536] = {.lex_state = 12}, - [2537] = {.lex_state = 12}, - [2538] = {.lex_state = 57}, - [2539] = {.lex_state = 59}, - [2540] = {.lex_state = 12}, - [2541] = {.lex_state = 57}, - [2542] = {.lex_state = 59}, - [2543] = {.lex_state = 59}, - [2544] = {.lex_state = 59}, - [2545] = {.lex_state = 10}, - [2546] = {.lex_state = 57}, - [2547] = {.lex_state = 57}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 57}, - [2550] = {.lex_state = 12}, - [2551] = {.lex_state = 57}, - [2552] = {.lex_state = 57}, + [2536] = {.lex_state = 60}, + [2537] = {.lex_state = 60}, + [2538] = {.lex_state = 60}, + [2539] = {.lex_state = 12}, + [2540] = {.lex_state = 60}, + [2541] = {.lex_state = 58}, + [2542] = {.lex_state = 58}, + [2543] = {.lex_state = 58}, + [2544] = {.lex_state = 58}, + [2545] = {.lex_state = 52}, + [2546] = {.lex_state = 58}, + [2547] = {.lex_state = 58}, + [2548] = {.lex_state = 60}, + [2549] = {.lex_state = 40}, + [2550] = {.lex_state = 40}, + [2551] = {.lex_state = 60}, + [2552] = {.lex_state = 58}, [2553] = {.lex_state = 7}, - [2554] = {.lex_state = 12}, - [2555] = {.lex_state = 51}, - [2556] = {.lex_state = 57}, - [2557] = {.lex_state = 57}, - [2558] = {.lex_state = 51}, - [2559] = {.lex_state = 57}, - [2560] = {.lex_state = 57}, - [2561] = {.lex_state = 59}, - [2562] = {.lex_state = 57}, - [2563] = {.lex_state = 57}, - [2564] = {.lex_state = 59}, - [2565] = {.lex_state = 39}, - [2566] = {.lex_state = 39}, - [2567] = {.lex_state = 59}, - [2568] = {.lex_state = 57}, - [2569] = {.lex_state = 57}, - [2570] = {.lex_state = 59}, - [2571] = {.lex_state = 59}, - [2572] = {.lex_state = 57}, - [2573] = {.lex_state = 7}, - [2574] = {.lex_state = 57}, - [2575] = {.lex_state = 59}, - [2576] = {.lex_state = 57}, - [2577] = {.lex_state = 57}, - [2578] = {.lex_state = 57}, - [2579] = {.lex_state = 59}, - [2580] = {.lex_state = 57}, - [2581] = {.lex_state = 57}, - [2582] = {.lex_state = 59}, - [2583] = {.lex_state = 57}, - [2584] = {.lex_state = 59}, - [2585] = {.lex_state = 57}, - [2586] = {.lex_state = 57}, - [2587] = {.lex_state = 57}, - [2588] = {.lex_state = 57}, - [2589] = {.lex_state = 12}, - [2590] = {.lex_state = 57}, - [2591] = {.lex_state = 59}, - [2592] = {.lex_state = 57}, - [2593] = {.lex_state = 57}, - [2594] = {.lex_state = 57}, - [2595] = {.lex_state = 57}, - [2596] = {.lex_state = 57}, - [2597] = {.lex_state = 57}, - [2598] = {.lex_state = 57}, - [2599] = {.lex_state = 57}, - [2600] = {.lex_state = 57}, - [2601] = {.lex_state = 57}, - [2602] = {.lex_state = 57}, - [2603] = {.lex_state = 57}, - [2604] = {.lex_state = 57}, - [2605] = {.lex_state = 57}, - [2606] = {.lex_state = 59}, - [2607] = {.lex_state = 12}, - [2608] = {.lex_state = 12}, - [2609] = {.lex_state = 57}, - [2610] = {.lex_state = 57}, - [2611] = {.lex_state = 57}, - [2612] = {.lex_state = 57}, - [2613] = {.lex_state = 57}, - [2614] = {.lex_state = 57}, - [2615] = {.lex_state = 57}, - [2616] = {.lex_state = 59}, - [2617] = {.lex_state = 59}, - [2618] = {.lex_state = 61}, - [2619] = {.lex_state = 57}, - [2620] = {.lex_state = 12}, + [2554] = {.lex_state = 58}, + [2555] = {.lex_state = 58}, + [2556] = {.lex_state = 7}, + [2557] = {.lex_state = 60}, + [2558] = {.lex_state = 58}, + [2559] = {.lex_state = 58}, + [2560] = {.lex_state = 58}, + [2561] = {.lex_state = 12}, + [2562] = {.lex_state = 58}, + [2563] = {.lex_state = 58}, + [2564] = {.lex_state = 12}, + [2565] = {.lex_state = 58}, + [2566] = {.lex_state = 60}, + [2567] = {.lex_state = 60}, + [2568] = {.lex_state = 60}, + [2569] = {.lex_state = 52}, + [2570] = {.lex_state = 58}, + [2571] = {.lex_state = 10}, + [2572] = {.lex_state = 10}, + [2573] = {.lex_state = 60}, + [2574] = {.lex_state = 60}, + [2575] = {.lex_state = 58}, + [2576] = {.lex_state = 60}, + [2577] = {.lex_state = 58}, + [2578] = {.lex_state = 60}, + [2579] = {.lex_state = 60}, + [2580] = {.lex_state = 58}, + [2581] = {.lex_state = 58}, + [2582] = {.lex_state = 58}, + [2583] = {.lex_state = 58}, + [2584] = {.lex_state = 58}, + [2585] = {.lex_state = 12}, + [2586] = {.lex_state = 58}, + [2587] = {.lex_state = 58}, + [2588] = {.lex_state = 58}, + [2589] = {.lex_state = 60}, + [2590] = {.lex_state = 58}, + [2591] = {.lex_state = 60}, + [2592] = {.lex_state = 58}, + [2593] = {.lex_state = 58}, + [2594] = {.lex_state = 58}, + [2595] = {.lex_state = 62}, + [2596] = {.lex_state = 58}, + [2597] = {.lex_state = 58}, + [2598] = {.lex_state = 58}, + [2599] = {.lex_state = 60}, + [2600] = {.lex_state = 58}, + [2601] = {.lex_state = 60}, + [2602] = {.lex_state = 58}, + [2603] = {.lex_state = 58}, + [2604] = {.lex_state = 58}, + [2605] = {.lex_state = 58}, + [2606] = {.lex_state = 60}, + [2607] = {.lex_state = 58}, + [2608] = {.lex_state = 58}, + [2609] = {.lex_state = 12}, + [2610] = {.lex_state = 58}, + [2611] = {.lex_state = 12}, + [2612] = {.lex_state = 58}, + [2613] = {.lex_state = 58}, + [2614] = {.lex_state = 58}, + [2615] = {.lex_state = 58}, + [2616] = {.lex_state = 58}, + [2617] = {.lex_state = 58}, + [2618] = {.lex_state = 12}, + [2619] = {.lex_state = 58}, + [2620] = {.lex_state = 58}, [2621] = {.lex_state = 12}, - [2622] = {.lex_state = 59}, - [2623] = {.lex_state = 12}, - [2624] = {.lex_state = 12}, - [2625] = {.lex_state = 59}, + [2622] = {.lex_state = 12}, + [2623] = {.lex_state = 60}, + [2624] = {.lex_state = 60}, + [2625] = {.lex_state = 12}, [2626] = {.lex_state = 12}, - [2627] = {.lex_state = 12}, + [2627] = {.lex_state = 60}, [2628] = {.lex_state = 12}, [2629] = {.lex_state = 12}, [2630] = {.lex_state = 12}, [2631] = {.lex_state = 12}, - [2632] = {.lex_state = 59}, - [2633] = {.lex_state = 59}, - [2634] = {.lex_state = 12}, - [2635] = {.lex_state = 12}, - [2636] = {.lex_state = 57}, - [2637] = {.lex_state = 59}, - [2638] = {.lex_state = 67}, - [2639] = {.lex_state = 59}, - [2640] = {.lex_state = 59}, - [2641] = {.lex_state = 57}, - [2642] = {.lex_state = 57}, - [2643] = {.lex_state = 57}, - [2644] = {.lex_state = 57}, - [2645] = {.lex_state = 57}, - [2646] = {.lex_state = 59}, - [2647] = {.lex_state = 59}, - [2648] = {.lex_state = 59}, - [2649] = {.lex_state = 59}, - [2650] = {.lex_state = 57}, - [2651] = {.lex_state = 59}, - [2652] = {.lex_state = 59}, - [2653] = {.lex_state = 67}, - [2654] = {.lex_state = 57}, - [2655] = {.lex_state = 61}, - [2656] = {.lex_state = 59}, - [2657] = {.lex_state = 59}, - [2658] = {.lex_state = 59}, - [2659] = {.lex_state = 59}, - [2660] = {.lex_state = 59}, - [2661] = {.lex_state = 59}, - [2662] = {.lex_state = 59}, - [2663] = {.lex_state = 59}, - [2664] = {.lex_state = 59}, - [2665] = {.lex_state = 59}, - [2666] = {.lex_state = 59}, - [2667] = {.lex_state = 59}, - [2668] = {.lex_state = 59}, - [2669] = {.lex_state = 59}, - [2670] = {.lex_state = 12}, - [2671] = {.lex_state = 59}, - [2672] = {.lex_state = 59}, - [2673] = {.lex_state = 12}, + [2632] = {.lex_state = 12}, + [2633] = {.lex_state = 12}, + [2634] = {.lex_state = 60}, + [2635] = {.lex_state = 60}, + [2636] = {.lex_state = 12}, + [2637] = {.lex_state = 12}, + [2638] = {.lex_state = 60}, + [2639] = {.lex_state = 68}, + [2640] = {.lex_state = 58}, + [2641] = {.lex_state = 60}, + [2642] = {.lex_state = 60}, + [2643] = {.lex_state = 58}, + [2644] = {.lex_state = 58}, + [2645] = {.lex_state = 68}, + [2646] = {.lex_state = 58}, + [2647] = {.lex_state = 58}, + [2648] = {.lex_state = 60}, + [2649] = {.lex_state = 60}, + [2650] = {.lex_state = 60}, + [2651] = {.lex_state = 60}, + [2652] = {.lex_state = 58}, + [2653] = {.lex_state = 60}, + [2654] = {.lex_state = 60}, + [2655] = {.lex_state = 58}, + [2656] = {.lex_state = 58}, + [2657] = {.lex_state = 62}, + [2658] = {.lex_state = 60}, + [2659] = {.lex_state = 60}, + [2660] = {.lex_state = 60}, + [2661] = {.lex_state = 60}, + [2662] = {.lex_state = 60}, + [2663] = {.lex_state = 60}, + [2664] = {.lex_state = 60}, + [2665] = {.lex_state = 60}, + [2666] = {.lex_state = 60}, + [2667] = {.lex_state = 60}, + [2668] = {.lex_state = 60}, + [2669] = {.lex_state = 12}, + [2670] = {.lex_state = 68}, + [2671] = {.lex_state = 12}, + [2672] = {.lex_state = 60}, + [2673] = {.lex_state = 60}, [2674] = {.lex_state = 12}, [2675] = {.lex_state = 12}, - [2676] = {.lex_state = 59}, - [2677] = {.lex_state = 59}, - [2678] = {.lex_state = 59}, - [2679] = {.lex_state = 59}, - [2680] = {.lex_state = 59}, - [2681] = {.lex_state = 59}, - [2682] = {.lex_state = 12}, - [2683] = {.lex_state = 59}, - [2684] = {.lex_state = 59}, - [2685] = {.lex_state = 59}, - [2686] = {.lex_state = 57}, - [2687] = {.lex_state = 57}, - [2688] = {.lex_state = 57}, - [2689] = {.lex_state = 59}, + [2676] = {.lex_state = 12}, + [2677] = {.lex_state = 60}, + [2678] = {.lex_state = 60}, + [2679] = {.lex_state = 60}, + [2680] = {.lex_state = 60}, + [2681] = {.lex_state = 60}, + [2682] = {.lex_state = 60}, + [2683] = {.lex_state = 60}, + [2684] = {.lex_state = 60}, + [2685] = {.lex_state = 60}, + [2686] = {.lex_state = 60}, + [2687] = {.lex_state = 58}, + [2688] = {.lex_state = 58}, + [2689] = {.lex_state = 58}, [2690] = {.lex_state = 12}, [2691] = {.lex_state = 12}, - [2692] = {.lex_state = 59}, - [2693] = {.lex_state = 57}, - [2694] = {.lex_state = 59}, - [2695] = {.lex_state = 59}, + [2692] = {.lex_state = 60}, + [2693] = {.lex_state = 60}, + [2694] = {.lex_state = 58}, + [2695] = {.lex_state = 60}, [2696] = {.lex_state = 12}, - [2697] = {.lex_state = 57}, - [2698] = {.lex_state = 59}, - [2699] = {.lex_state = 57}, - [2700] = {.lex_state = 57}, - [2701] = {.lex_state = 59}, - [2702] = {.lex_state = 57}, - [2703] = {.lex_state = 59}, - [2704] = {.lex_state = 59}, - [2705] = {.lex_state = 59}, - [2706] = {.lex_state = 59}, - [2707] = {.lex_state = 59}, - [2708] = {.lex_state = 67}, - [2709] = {.lex_state = 57}, - [2710] = {.lex_state = 53}, - [2711] = {.lex_state = 59}, - [2712] = {.lex_state = 59}, - [2713] = {.lex_state = 59}, + [2697] = {.lex_state = 60}, + [2698] = {.lex_state = 58}, + [2699] = {.lex_state = 60}, + [2700] = {.lex_state = 58}, + [2701] = {.lex_state = 58}, + [2702] = {.lex_state = 60}, + [2703] = {.lex_state = 58}, + [2704] = {.lex_state = 58}, + [2705] = {.lex_state = 60}, + [2706] = {.lex_state = 60}, + [2707] = {.lex_state = 60}, + [2708] = {.lex_state = 60}, + [2709] = {.lex_state = 60}, + [2710] = {.lex_state = 58}, + [2711] = {.lex_state = 54}, + [2712] = {.lex_state = 60}, + [2713] = {.lex_state = 60}, [2714] = {.lex_state = 12}, [2715] = {.lex_state = 12}, - [2716] = {.lex_state = 57}, - [2717] = {.lex_state = 59}, - [2718] = {.lex_state = 67}, - [2719] = {.lex_state = 57}, - [2720] = {.lex_state = 57}, - [2721] = {.lex_state = 59}, - [2722] = {.lex_state = 12}, - [2723] = {.lex_state = 59}, - [2724] = {.lex_state = 53}, - [2725] = {.lex_state = 57}, - [2726] = {.lex_state = 12}, + [2716] = {.lex_state = 58}, + [2717] = {.lex_state = 60}, + [2718] = {.lex_state = 68}, + [2719] = {.lex_state = 68}, + [2720] = {.lex_state = 58}, + [2721] = {.lex_state = 60}, + [2722] = {.lex_state = 60}, + [2723] = {.lex_state = 12}, + [2724] = {.lex_state = 12}, + [2725] = {.lex_state = 54}, + [2726] = {.lex_state = 58}, [2727] = {.lex_state = 12}, - [2728] = {.lex_state = 57}, + [2728] = {.lex_state = 58}, [2729] = {.lex_state = 12}, - [2730] = {.lex_state = 59}, - [2731] = {.lex_state = 59}, - [2732] = {.lex_state = 59}, - [2733] = {.lex_state = 12}, - [2734] = {.lex_state = 59}, - [2735] = {.lex_state = 59}, - [2736] = {.lex_state = 59}, - [2737] = {.lex_state = 59}, - [2738] = {.lex_state = 59}, - [2739] = {.lex_state = 59}, + [2730] = {.lex_state = 60}, + [2731] = {.lex_state = 60}, + [2732] = {.lex_state = 60}, + [2733] = {.lex_state = 60}, + [2734] = {.lex_state = 12}, + [2735] = {.lex_state = 60}, + [2736] = {.lex_state = 60}, + [2737] = {.lex_state = 60}, + [2738] = {.lex_state = 60}, + [2739] = {.lex_state = 60}, [2740] = {.lex_state = 12}, [2741] = {.lex_state = 12}, - [2742] = {.lex_state = 57}, - [2743] = {.lex_state = 57}, - [2744] = {.lex_state = 57}, - [2745] = {.lex_state = 12}, - [2746] = {.lex_state = 59}, - [2747] = {.lex_state = 59}, - [2748] = {.lex_state = 61}, - [2749] = {.lex_state = 41}, - [2750] = {.lex_state = 41}, - [2751] = {.lex_state = 59}, - [2752] = {.lex_state = 57}, - [2753] = {.lex_state = 59}, - [2754] = {.lex_state = 67}, - [2755] = {.lex_state = 57}, - [2756] = {.lex_state = 59}, - [2757] = {.lex_state = 57}, - [2758] = {.lex_state = 67}, - [2759] = {.lex_state = 59}, - [2760] = {.lex_state = 59}, - [2761] = {.lex_state = 59}, - [2762] = {.lex_state = 12}, - [2763] = {.lex_state = 59}, - [2764] = {.lex_state = 57}, - [2765] = {.lex_state = 57}, - [2766] = {.lex_state = 59}, - [2767] = {.lex_state = 57}, - [2768] = {.lex_state = 59}, - [2769] = {.lex_state = 59}, - [2770] = {.lex_state = 59}, - [2771] = {.lex_state = 59}, - [2772] = {.lex_state = 59}, - [2773] = {.lex_state = 67}, - [2774] = {.lex_state = 59}, - [2775] = {.lex_state = 59}, - [2776] = {.lex_state = 57}, - [2777] = {.lex_state = 57}, - [2778] = {.lex_state = 59}, - [2779] = {.lex_state = 57}, - [2780] = {.lex_state = 59}, - [2781] = {.lex_state = 59}, - [2782] = {.lex_state = 59}, - [2783] = {.lex_state = 57}, - [2784] = {.lex_state = 59}, - [2785] = {.lex_state = 59}, - [2786] = {.lex_state = 59}, - [2787] = {.lex_state = 59}, - [2788] = {.lex_state = 59}, - [2789] = {.lex_state = 59}, - [2790] = {.lex_state = 12}, - [2791] = {.lex_state = 59}, - [2792] = {.lex_state = 59}, + [2742] = {.lex_state = 12}, + [2743] = {.lex_state = 58}, + [2744] = {.lex_state = 58}, + [2745] = {.lex_state = 58}, + [2746] = {.lex_state = 42}, + [2747] = {.lex_state = 60}, + [2748] = {.lex_state = 60}, + [2749] = {.lex_state = 62}, + [2750] = {.lex_state = 68}, + [2751] = {.lex_state = 60}, + [2752] = {.lex_state = 60}, + [2753] = {.lex_state = 58}, + [2754] = {.lex_state = 42}, + [2755] = {.lex_state = 58}, + [2756] = {.lex_state = 58}, + [2757] = {.lex_state = 60}, + [2758] = {.lex_state = 58}, + [2759] = {.lex_state = 58}, + [2760] = {.lex_state = 60}, + [2761] = {.lex_state = 60}, + [2762] = {.lex_state = 60}, + [2763] = {.lex_state = 60}, + [2764] = {.lex_state = 60}, + [2765] = {.lex_state = 58}, + [2766] = {.lex_state = 58}, + [2767] = {.lex_state = 60}, + [2768] = {.lex_state = 68}, + [2769] = {.lex_state = 60}, + [2770] = {.lex_state = 60}, + [2771] = {.lex_state = 60}, + [2772] = {.lex_state = 60}, + [2773] = {.lex_state = 60}, + [2774] = {.lex_state = 58}, + [2775] = {.lex_state = 60}, + [2776] = {.lex_state = 60}, + [2777] = {.lex_state = 58}, + [2778] = {.lex_state = 60}, + [2779] = {.lex_state = 58}, + [2780] = {.lex_state = 68}, + [2781] = {.lex_state = 60}, + [2782] = {.lex_state = 60}, + [2783] = {.lex_state = 60}, + [2784] = {.lex_state = 60}, + [2785] = {.lex_state = 12}, + [2786] = {.lex_state = 60}, + [2787] = {.lex_state = 60}, + [2788] = {.lex_state = 60}, + [2789] = {.lex_state = 60}, + [2790] = {.lex_state = 60}, + [2791] = {.lex_state = 60}, + [2792] = {.lex_state = 60}, [2793] = {.lex_state = 12}, - [2794] = {.lex_state = 59}, - [2795] = {.lex_state = 12}, - [2796] = {.lex_state = 67}, - [2797] = {.lex_state = 67}, - [2798] = {.lex_state = 61}, - [2799] = {.lex_state = 57}, - [2800] = {.lex_state = 57}, - [2801] = {.lex_state = 59}, - [2802] = {.lex_state = 59}, + [2794] = {.lex_state = 58}, + [2795] = {.lex_state = 60}, + [2796] = {.lex_state = 68}, + [2797] = {.lex_state = 12}, + [2798] = {.lex_state = 60}, + [2799] = {.lex_state = 60}, + [2800] = {.lex_state = 62}, + [2801] = {.lex_state = 58}, + [2802] = {.lex_state = 60}, [2803] = {.lex_state = 12}, [2804] = {.lex_state = 12}, [2805] = {.lex_state = 12}, - [2806] = {.lex_state = 57}, - [2807] = {.lex_state = 12}, + [2806] = {.lex_state = 58}, + [2807] = {.lex_state = 58}, [2808] = {.lex_state = 12}, [2809] = {.lex_state = 12}, [2810] = {.lex_state = 12}, [2811] = {.lex_state = 12}, [2812] = {.lex_state = 12}, [2813] = {.lex_state = 12}, - [2814] = {.lex_state = 67}, + [2814] = {.lex_state = 68}, [2815] = {.lex_state = 12}, [2816] = {.lex_state = 12}, [2817] = {.lex_state = 12}, @@ -16719,20 +16904,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2827] = {.lex_state = 12}, [2828] = {.lex_state = 12}, [2829] = {.lex_state = 12}, - [2830] = {.lex_state = 59}, - [2831] = {.lex_state = 12}, - [2832] = {.lex_state = 59}, - [2833] = {.lex_state = 57}, - [2834] = {.lex_state = 67}, - [2835] = {.lex_state = 12}, + [2830] = {.lex_state = 12}, + [2831] = {.lex_state = 60}, + [2832] = {.lex_state = 68}, + [2833] = {.lex_state = 60}, + [2834] = {.lex_state = 12}, + [2835] = {.lex_state = 58}, [2836] = {.lex_state = 12}, [2837] = {.lex_state = 12}, [2838] = {.lex_state = 12}, - [2839] = {.lex_state = 12}, - [2840] = {.lex_state = 59}, - [2841] = {.lex_state = 12}, + [2839] = {.lex_state = 58}, + [2840] = {.lex_state = 12}, + [2841] = {.lex_state = 60}, [2842] = {.lex_state = 12}, - [2843] = {.lex_state = 57}, + [2843] = {.lex_state = 58}, [2844] = {.lex_state = 12}, [2845] = {.lex_state = 12}, [2846] = {.lex_state = 12}, @@ -16740,613 +16925,613 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2848] = {.lex_state = 12}, [2849] = {.lex_state = 12}, [2850] = {.lex_state = 12}, - [2851] = {.lex_state = 57}, - [2852] = {.lex_state = 59}, - [2853] = {.lex_state = 57}, + [2851] = {.lex_state = 12}, + [2852] = {.lex_state = 58}, + [2853] = {.lex_state = 60}, [2854] = {.lex_state = 12}, [2855] = {.lex_state = 12}, - [2856] = {.lex_state = 12}, + [2856] = {.lex_state = 58}, [2857] = {.lex_state = 12}, [2858] = {.lex_state = 12}, [2859] = {.lex_state = 12}, - [2860] = {.lex_state = 57}, - [2861] = {.lex_state = 12}, + [2860] = {.lex_state = 12}, + [2861] = {.lex_state = 58}, [2862] = {.lex_state = 12}, - [2863] = {.lex_state = 12}, - [2864] = {.lex_state = 57}, - [2865] = {.lex_state = 57}, - [2866] = {.lex_state = 57}, - [2867] = {.lex_state = 57}, - [2868] = {.lex_state = 57}, - [2869] = {.lex_state = 67}, - [2870] = {.lex_state = 57}, - [2871] = {.lex_state = 57}, - [2872] = {.lex_state = 12}, - [2873] = {.lex_state = 57}, - [2874] = {.lex_state = 57}, - [2875] = {.lex_state = 12}, - [2876] = {.lex_state = 57}, + [2863] = {.lex_state = 58}, + [2864] = {.lex_state = 12}, + [2865] = {.lex_state = 58}, + [2866] = {.lex_state = 58}, + [2867] = {.lex_state = 58}, + [2868] = {.lex_state = 68}, + [2869] = {.lex_state = 58}, + [2870] = {.lex_state = 58}, + [2871] = {.lex_state = 58}, + [2872] = {.lex_state = 58}, + [2873] = {.lex_state = 12}, + [2874] = {.lex_state = 68}, + [2875] = {.lex_state = 58}, + [2876] = {.lex_state = 12}, [2877] = {.lex_state = 12}, - [2878] = {.lex_state = 67}, - [2879] = {.lex_state = 67}, + [2878] = {.lex_state = 12}, + [2879] = {.lex_state = 68}, [2880] = {.lex_state = 12}, [2881] = {.lex_state = 12}, [2882] = {.lex_state = 12}, [2883] = {.lex_state = 12}, - [2884] = {.lex_state = 57}, - [2885] = {.lex_state = 12}, - [2886] = {.lex_state = 67}, - [2887] = {.lex_state = 12}, - [2888] = {.lex_state = 57}, - [2889] = {.lex_state = 57}, - [2890] = {.lex_state = 57}, + [2884] = {.lex_state = 12}, + [2885] = {.lex_state = 58}, + [2886] = {.lex_state = 68}, + [2887] = {.lex_state = 58}, + [2888] = {.lex_state = 12}, + [2889] = {.lex_state = 12}, + [2890] = {.lex_state = 58}, [2891] = {.lex_state = 12}, - [2892] = {.lex_state = 57}, - [2893] = {.lex_state = 12}, - [2894] = {.lex_state = 57}, + [2892] = {.lex_state = 58}, + [2893] = {.lex_state = 58}, + [2894] = {.lex_state = 68}, [2895] = {.lex_state = 12}, - [2896] = {.lex_state = 67}, - [2897] = {.lex_state = 57}, - [2898] = {.lex_state = 57}, - [2899] = {.lex_state = 57}, - [2900] = {.lex_state = 67}, - [2901] = {.lex_state = 57}, + [2896] = {.lex_state = 58}, + [2897] = {.lex_state = 12}, + [2898] = {.lex_state = 58}, + [2899] = {.lex_state = 68}, + [2900] = {.lex_state = 58}, + [2901] = {.lex_state = 58}, [2902] = {.lex_state = 12}, - [2903] = {.lex_state = 57}, - [2904] = {.lex_state = 57}, - [2905] = {.lex_state = 57}, - [2906] = {.lex_state = 57}, - [2907] = {.lex_state = 57}, - [2908] = {.lex_state = 57}, - [2909] = {.lex_state = 57}, - [2910] = {.lex_state = 57}, - [2911] = {.lex_state = 65}, - [2912] = {.lex_state = 57}, - [2913] = {.lex_state = 57}, - [2914] = {.lex_state = 57}, - [2915] = {.lex_state = 57}, - [2916] = {.lex_state = 57}, - [2917] = {.lex_state = 57}, - [2918] = {.lex_state = 65}, - [2919] = {.lex_state = 57}, - [2920] = {.lex_state = 57}, - [2921] = {.lex_state = 57}, - [2922] = {.lex_state = 61}, - [2923] = {.lex_state = 65}, - [2924] = {.lex_state = 57}, - [2925] = {.lex_state = 57}, - [2926] = {.lex_state = 61}, - [2927] = {.lex_state = 57}, - [2928] = {.lex_state = 57}, - [2929] = {.lex_state = 65}, - [2930] = {.lex_state = 61}, - [2931] = {.lex_state = 61}, - [2932] = {.lex_state = 57}, - [2933] = {.lex_state = 57}, - [2934] = {.lex_state = 57}, - [2935] = {.lex_state = 17}, - [2936] = {.lex_state = 61}, - [2937] = {.lex_state = 57}, - [2938] = {.lex_state = 57}, - [2939] = {.lex_state = 61}, - [2940] = {.lex_state = 67}, - [2941] = {.lex_state = 57}, - [2942] = {.lex_state = 57}, - [2943] = {.lex_state = 57}, - [2944] = {.lex_state = 61}, - [2945] = {.lex_state = 57}, - [2946] = {.lex_state = 61}, - [2947] = {.lex_state = 17}, - [2948] = {.lex_state = 17}, - [2949] = {.lex_state = 57}, - [2950] = {.lex_state = 61}, - [2951] = {.lex_state = 57}, - [2952] = {.lex_state = 61}, - [2953] = {.lex_state = 57}, - [2954] = {.lex_state = 57}, - [2955] = {.lex_state = 61}, - [2956] = {.lex_state = 61}, - [2957] = {.lex_state = 61}, - [2958] = {.lex_state = 61}, - [2959] = {.lex_state = 67}, - [2960] = {.lex_state = 61}, - [2961] = {.lex_state = 61}, - [2962] = {.lex_state = 61}, - [2963] = {.lex_state = 61}, - [2964] = {.lex_state = 61}, - [2965] = {.lex_state = 57}, - [2966] = {.lex_state = 67}, - [2967] = {.lex_state = 61}, - [2968] = {.lex_state = 61}, - [2969] = {.lex_state = 61}, - [2970] = {.lex_state = 61}, - [2971] = {.lex_state = 61}, - [2972] = {.lex_state = 61}, - [2973] = {.lex_state = 57}, - [2974] = {.lex_state = 61}, - [2975] = {.lex_state = 67}, - [2976] = {.lex_state = 61}, - [2977] = {.lex_state = 61}, - [2978] = {.lex_state = 61}, - [2979] = {.lex_state = 61}, - [2980] = {.lex_state = 61}, - [2981] = {.lex_state = 57}, - [2982] = {.lex_state = 57}, - [2983] = {.lex_state = 57}, - [2984] = {.lex_state = 57}, - [2985] = {.lex_state = 57}, - [2986] = {.lex_state = 57}, - [2987] = {.lex_state = 57}, - [2988] = {.lex_state = 57}, - [2989] = {.lex_state = 57}, - [2990] = {.lex_state = 57}, - [2991] = {.lex_state = 57}, - [2992] = {.lex_state = 57}, - [2993] = {.lex_state = 57}, - [2994] = {.lex_state = 57}, - [2995] = {.lex_state = 57}, - [2996] = {.lex_state = 57}, - [2997] = {.lex_state = 57}, - [2998] = {.lex_state = 57}, - [2999] = {.lex_state = 57}, - [3000] = {.lex_state = 57}, - [3001] = {.lex_state = 57}, - [3002] = {.lex_state = 57}, - [3003] = {.lex_state = 57}, - [3004] = {.lex_state = 57}, - [3005] = {.lex_state = 57}, - [3006] = {.lex_state = 57}, - [3007] = {.lex_state = 57}, - [3008] = {.lex_state = 57}, - [3009] = {.lex_state = 57}, - [3010] = {.lex_state = 57}, - [3011] = {.lex_state = 57}, - [3012] = {.lex_state = 57}, - [3013] = {.lex_state = 57}, - [3014] = {.lex_state = 57}, - [3015] = {.lex_state = 57}, - [3016] = {.lex_state = 57}, - [3017] = {.lex_state = 57}, - [3018] = {.lex_state = 57}, - [3019] = {.lex_state = 57}, - [3020] = {.lex_state = 57}, - [3021] = {.lex_state = 57}, - [3022] = {.lex_state = 57}, - [3023] = {.lex_state = 57}, - [3024] = {.lex_state = 57}, - [3025] = {.lex_state = 57}, - [3026] = {.lex_state = 57}, - [3027] = {.lex_state = 57}, - [3028] = {.lex_state = 57}, - [3029] = {.lex_state = 57}, - [3030] = {.lex_state = 57}, - [3031] = {.lex_state = 57}, - [3032] = {.lex_state = 57}, - [3033] = {.lex_state = 57}, - [3034] = {.lex_state = 57}, - [3035] = {.lex_state = 57}, - [3036] = {.lex_state = 57}, - [3037] = {.lex_state = 57}, - [3038] = {.lex_state = 57}, - [3039] = {.lex_state = 57}, - [3040] = {.lex_state = 57}, - [3041] = {.lex_state = 57}, - [3042] = {.lex_state = 57}, - [3043] = {.lex_state = 57}, - [3044] = {.lex_state = 57}, - [3045] = {.lex_state = 57}, - [3046] = {.lex_state = 57}, - [3047] = {.lex_state = 57}, - [3048] = {.lex_state = 57}, - [3049] = {.lex_state = 57}, - [3050] = {.lex_state = 57}, - [3051] = {.lex_state = 57}, - [3052] = {.lex_state = 57}, - [3053] = {.lex_state = 57}, - [3054] = {.lex_state = 57}, - [3055] = {.lex_state = 57}, - [3056] = {.lex_state = 57}, - [3057] = {.lex_state = 57}, - [3058] = {.lex_state = 57}, - [3059] = {.lex_state = 57}, - [3060] = {.lex_state = 67}, - [3061] = {.lex_state = 67}, - [3062] = {.lex_state = 67}, - [3063] = {.lex_state = 67}, - [3064] = {.lex_state = 67}, - [3065] = {.lex_state = 67}, - [3066] = {.lex_state = 67}, - [3067] = {.lex_state = 67}, - [3068] = {.lex_state = 67}, - [3069] = {.lex_state = 67}, - [3070] = {.lex_state = 67}, - [3071] = {.lex_state = 67}, - [3072] = {.lex_state = 67}, - [3073] = {.lex_state = 67}, - [3074] = {.lex_state = 67}, - [3075] = {.lex_state = 67}, - [3076] = {.lex_state = 67}, - [3077] = {.lex_state = 67}, - [3078] = {.lex_state = 67}, - [3079] = {.lex_state = 67}, - [3080] = {.lex_state = 67}, - [3081] = {.lex_state = 67}, - [3082] = {.lex_state = 67}, - [3083] = {.lex_state = 67}, - [3084] = {.lex_state = 67}, - [3085] = {.lex_state = 67}, - [3086] = {.lex_state = 67}, - [3087] = {.lex_state = 67}, - [3088] = {.lex_state = 67}, - [3089] = {.lex_state = 67}, - [3090] = {.lex_state = 67}, - [3091] = {.lex_state = 67}, - [3092] = {.lex_state = 67}, - [3093] = {.lex_state = 67}, - [3094] = {.lex_state = 67}, - [3095] = {.lex_state = 67}, - [3096] = {.lex_state = 67}, - [3097] = {.lex_state = 67}, - [3098] = {.lex_state = 67}, - [3099] = {.lex_state = 67}, - [3100] = {.lex_state = 67}, - [3101] = {.lex_state = 67}, - [3102] = {.lex_state = 67}, - [3103] = {.lex_state = 67}, - [3104] = {.lex_state = 67}, - [3105] = {.lex_state = 67}, - [3106] = {.lex_state = 67}, - [3107] = {.lex_state = 67}, - [3108] = {.lex_state = 67}, - [3109] = {.lex_state = 67}, - [3110] = {.lex_state = 67}, - [3111] = {.lex_state = 67}, - [3112] = {.lex_state = 67}, - [3113] = {.lex_state = 67}, - [3114] = {.lex_state = 67}, - [3115] = {.lex_state = 67}, - [3116] = {.lex_state = 67}, - [3117] = {.lex_state = 67}, - [3118] = {.lex_state = 67}, - [3119] = {.lex_state = 67}, - [3120] = {.lex_state = 67}, - [3121] = {.lex_state = 67}, - [3122] = {.lex_state = 67}, - [3123] = {.lex_state = 67}, - [3124] = {.lex_state = 67}, - [3125] = {.lex_state = 67}, - [3126] = {.lex_state = 67}, - [3127] = {.lex_state = 67}, - [3128] = {.lex_state = 67}, - [3129] = {.lex_state = 67}, - [3130] = {.lex_state = 67}, - [3131] = {.lex_state = 67}, - [3132] = {.lex_state = 67}, - [3133] = {.lex_state = 67}, - [3134] = {.lex_state = 67}, - [3135] = {.lex_state = 67}, - [3136] = {.lex_state = 67}, - [3137] = {.lex_state = 67}, - [3138] = {.lex_state = 67}, - [3139] = {.lex_state = 67}, - [3140] = {.lex_state = 67}, - [3141] = {.lex_state = 67}, - [3142] = {.lex_state = 67}, - [3143] = {.lex_state = 67}, - [3144] = {.lex_state = 67}, - [3145] = {.lex_state = 67}, - [3146] = {.lex_state = 67}, - [3147] = {.lex_state = 67}, - [3148] = {.lex_state = 67}, - [3149] = {.lex_state = 67}, - [3150] = {.lex_state = 67}, - [3151] = {.lex_state = 67}, - [3152] = {.lex_state = 67}, - [3153] = {.lex_state = 67}, - [3154] = {.lex_state = 67}, - [3155] = {.lex_state = 67}, - [3156] = {.lex_state = 67}, - [3157] = {.lex_state = 67}, - [3158] = {.lex_state = 67}, - [3159] = {.lex_state = 67}, - [3160] = {.lex_state = 67}, - [3161] = {.lex_state = 67}, - [3162] = {.lex_state = 67}, - [3163] = {.lex_state = 67}, - [3164] = {.lex_state = 67}, - [3165] = {.lex_state = 67}, - [3166] = {.lex_state = 67}, - [3167] = {.lex_state = 67}, - [3168] = {.lex_state = 67}, - [3169] = {.lex_state = 67}, - [3170] = {.lex_state = 67}, - [3171] = {.lex_state = 67}, - [3172] = {.lex_state = 67}, - [3173] = {.lex_state = 67}, - [3174] = {.lex_state = 67}, - [3175] = {.lex_state = 67}, - [3176] = {.lex_state = 67}, - [3177] = {.lex_state = 67}, - [3178] = {.lex_state = 67}, - [3179] = {.lex_state = 67}, - [3180] = {.lex_state = 67}, - [3181] = {.lex_state = 67}, - [3182] = {.lex_state = 67}, - [3183] = {.lex_state = 67}, - [3184] = {.lex_state = 67}, - [3185] = {.lex_state = 67}, - [3186] = {.lex_state = 67}, - [3187] = {.lex_state = 67}, - [3188] = {.lex_state = 67}, - [3189] = {.lex_state = 67}, - [3190] = {.lex_state = 67}, - [3191] = {.lex_state = 67}, - [3192] = {.lex_state = 67}, - [3193] = {.lex_state = 67}, - [3194] = {.lex_state = 67}, - [3195] = {.lex_state = 67}, - [3196] = {.lex_state = 67}, - [3197] = {.lex_state = 67}, - [3198] = {.lex_state = 67}, - [3199] = {.lex_state = 67}, - [3200] = {.lex_state = 67}, - [3201] = {.lex_state = 67}, - [3202] = {.lex_state = 67}, - [3203] = {.lex_state = 67}, - [3204] = {.lex_state = 67}, - [3205] = {.lex_state = 67}, - [3206] = {.lex_state = 67}, - [3207] = {.lex_state = 67}, - [3208] = {.lex_state = 67}, - [3209] = {.lex_state = 67}, - [3210] = {.lex_state = 67}, - [3211] = {.lex_state = 67}, - [3212] = {.lex_state = 67}, - [3213] = {.lex_state = 67}, - [3214] = {.lex_state = 67}, - [3215] = {.lex_state = 67}, - [3216] = {.lex_state = 67}, - [3217] = {.lex_state = 67}, - [3218] = {.lex_state = 67}, - [3219] = {.lex_state = 67}, - [3220] = {.lex_state = 67}, - [3221] = {.lex_state = 67}, - [3222] = {.lex_state = 67}, - [3223] = {.lex_state = 67}, - [3224] = {.lex_state = 67}, - [3225] = {.lex_state = 67}, - [3226] = {.lex_state = 67}, - [3227] = {.lex_state = 67}, - [3228] = {.lex_state = 67}, - [3229] = {.lex_state = 67}, - [3230] = {.lex_state = 67}, - [3231] = {.lex_state = 67}, - [3232] = {.lex_state = 67}, - [3233] = {.lex_state = 67}, - [3234] = {.lex_state = 67}, - [3235] = {.lex_state = 67}, - [3236] = {.lex_state = 67}, - [3237] = {.lex_state = 67}, - [3238] = {.lex_state = 67}, - [3239] = {.lex_state = 67}, - [3240] = {.lex_state = 67}, - [3241] = {.lex_state = 67}, - [3242] = {.lex_state = 67}, - [3243] = {.lex_state = 67}, - [3244] = {.lex_state = 67}, - [3245] = {.lex_state = 67}, - [3246] = {.lex_state = 67}, - [3247] = {.lex_state = 67}, - [3248] = {.lex_state = 67}, - [3249] = {.lex_state = 67}, - [3250] = {.lex_state = 67}, - [3251] = {.lex_state = 67}, - [3252] = {.lex_state = 67}, - [3253] = {.lex_state = 67}, - [3254] = {.lex_state = 67}, - [3255] = {.lex_state = 67}, - [3256] = {.lex_state = 67}, - [3257] = {.lex_state = 67}, - [3258] = {.lex_state = 67}, - [3259] = {.lex_state = 67}, - [3260] = {.lex_state = 67}, - [3261] = {.lex_state = 67}, - [3262] = {.lex_state = 67}, - [3263] = {.lex_state = 67}, - [3264] = {.lex_state = 67}, - [3265] = {.lex_state = 67}, - [3266] = {.lex_state = 67}, - [3267] = {.lex_state = 67}, - [3268] = {.lex_state = 67}, - [3269] = {.lex_state = 67}, - [3270] = {.lex_state = 67}, - [3271] = {.lex_state = 67}, - [3272] = {.lex_state = 67}, - [3273] = {.lex_state = 67}, - [3274] = {.lex_state = 67}, - [3275] = {.lex_state = 67}, - [3276] = {.lex_state = 67}, - [3277] = {.lex_state = 67}, - [3278] = {.lex_state = 67}, - [3279] = {.lex_state = 67}, - [3280] = {.lex_state = 67}, - [3281] = {.lex_state = 67}, - [3282] = {.lex_state = 67}, - [3283] = {.lex_state = 67}, - [3284] = {.lex_state = 67}, - [3285] = {.lex_state = 67}, - [3286] = {.lex_state = 67}, - [3287] = {.lex_state = 67}, - [3288] = {.lex_state = 67}, - [3289] = {.lex_state = 67}, - [3290] = {.lex_state = 67}, - [3291] = {.lex_state = 67}, - [3292] = {.lex_state = 67}, - [3293] = {.lex_state = 67}, - [3294] = {.lex_state = 67}, - [3295] = {.lex_state = 67}, - [3296] = {.lex_state = 67}, - [3297] = {.lex_state = 67}, - [3298] = {.lex_state = 67}, - [3299] = {.lex_state = 67}, - [3300] = {.lex_state = 67}, - [3301] = {.lex_state = 67}, - [3302] = {.lex_state = 67}, - [3303] = {.lex_state = 67}, - [3304] = {.lex_state = 67}, - [3305] = {.lex_state = 67}, - [3306] = {.lex_state = 67}, - [3307] = {.lex_state = 67}, - [3308] = {.lex_state = 67}, - [3309] = {.lex_state = 67}, - [3310] = {.lex_state = 67}, - [3311] = {.lex_state = 67}, - [3312] = {.lex_state = 67}, - [3313] = {.lex_state = 67}, - [3314] = {.lex_state = 67}, - [3315] = {.lex_state = 67}, - [3316] = {.lex_state = 67}, - [3317] = {.lex_state = 67}, - [3318] = {.lex_state = 67}, - [3319] = {.lex_state = 67}, - [3320] = {.lex_state = 67}, - [3321] = {.lex_state = 67}, - [3322] = {.lex_state = 67}, - [3323] = {.lex_state = 67}, - [3324] = {.lex_state = 67}, - [3325] = {.lex_state = 67}, - [3326] = {.lex_state = 67}, - [3327] = {.lex_state = 67}, - [3328] = {.lex_state = 67}, - [3329] = {.lex_state = 67}, - [3330] = {.lex_state = 67}, - [3331] = {.lex_state = 67}, - [3332] = {.lex_state = 67}, - [3333] = {.lex_state = 67}, - [3334] = {.lex_state = 67}, - [3335] = {.lex_state = 67}, - [3336] = {.lex_state = 67}, - [3337] = {.lex_state = 67}, - [3338] = {.lex_state = 67}, - [3339] = {.lex_state = 67}, - [3340] = {.lex_state = 67}, - [3341] = {.lex_state = 67}, - [3342] = {.lex_state = 67}, - [3343] = {.lex_state = 67}, - [3344] = {.lex_state = 67}, - [3345] = {.lex_state = 67}, - [3346] = {.lex_state = 67}, - [3347] = {.lex_state = 67}, - [3348] = {.lex_state = 67}, - [3349] = {.lex_state = 67}, - [3350] = {.lex_state = 67}, - [3351] = {.lex_state = 67}, - [3352] = {.lex_state = 67}, - [3353] = {.lex_state = 71}, - [3354] = {.lex_state = 67}, - [3355] = {.lex_state = 67}, - [3356] = {.lex_state = 67}, - [3357] = {.lex_state = 71}, - [3358] = {.lex_state = 67}, - [3359] = {.lex_state = 67}, - [3360] = {.lex_state = 67}, - [3361] = {.lex_state = 67}, - [3362] = {.lex_state = 70}, + [2903] = {.lex_state = 58}, + [2904] = {.lex_state = 58}, + [2905] = {.lex_state = 66}, + [2906] = {.lex_state = 58}, + [2907] = {.lex_state = 58}, + [2908] = {.lex_state = 58}, + [2909] = {.lex_state = 66}, + [2910] = {.lex_state = 58}, + [2911] = {.lex_state = 58}, + [2912] = {.lex_state = 62}, + [2913] = {.lex_state = 58}, + [2914] = {.lex_state = 58}, + [2915] = {.lex_state = 58}, + [2916] = {.lex_state = 66}, + [2917] = {.lex_state = 58}, + [2918] = {.lex_state = 62}, + [2919] = {.lex_state = 58}, + [2920] = {.lex_state = 58}, + [2921] = {.lex_state = 58}, + [2922] = {.lex_state = 58}, + [2923] = {.lex_state = 58}, + [2924] = {.lex_state = 58}, + [2925] = {.lex_state = 58}, + [2926] = {.lex_state = 58}, + [2927] = {.lex_state = 58}, + [2928] = {.lex_state = 58}, + [2929] = {.lex_state = 66}, + [2930] = {.lex_state = 58}, + [2931] = {.lex_state = 68}, + [2932] = {.lex_state = 62}, + [2933] = {.lex_state = 58}, + [2934] = {.lex_state = 58}, + [2935] = {.lex_state = 62}, + [2936] = {.lex_state = 58}, + [2937] = {.lex_state = 62}, + [2938] = {.lex_state = 17}, + [2939] = {.lex_state = 62}, + [2940] = {.lex_state = 17}, + [2941] = {.lex_state = 68}, + [2942] = {.lex_state = 62}, + [2943] = {.lex_state = 58}, + [2944] = {.lex_state = 58}, + [2945] = {.lex_state = 58}, + [2946] = {.lex_state = 58}, + [2947] = {.lex_state = 62}, + [2948] = {.lex_state = 58}, + [2949] = {.lex_state = 62}, + [2950] = {.lex_state = 58}, + [2951] = {.lex_state = 58}, + [2952] = {.lex_state = 62}, + [2953] = {.lex_state = 68}, + [2954] = {.lex_state = 62}, + [2955] = {.lex_state = 62}, + [2956] = {.lex_state = 62}, + [2957] = {.lex_state = 62}, + [2958] = {.lex_state = 58}, + [2959] = {.lex_state = 17}, + [2960] = {.lex_state = 58}, + [2961] = {.lex_state = 62}, + [2962] = {.lex_state = 62}, + [2963] = {.lex_state = 68}, + [2964] = {.lex_state = 62}, + [2965] = {.lex_state = 62}, + [2966] = {.lex_state = 62}, + [2967] = {.lex_state = 58}, + [2968] = {.lex_state = 62}, + [2969] = {.lex_state = 62}, + [2970] = {.lex_state = 62}, + [2971] = {.lex_state = 62}, + [2972] = {.lex_state = 62}, + [2973] = {.lex_state = 62}, + [2974] = {.lex_state = 58}, + [2975] = {.lex_state = 62}, + [2976] = {.lex_state = 62}, + [2977] = {.lex_state = 62}, + [2978] = {.lex_state = 62}, + [2979] = {.lex_state = 62}, + [2980] = {.lex_state = 62}, + [2981] = {.lex_state = 58}, + [2982] = {.lex_state = 58}, + [2983] = {.lex_state = 58}, + [2984] = {.lex_state = 58}, + [2985] = {.lex_state = 58}, + [2986] = {.lex_state = 58}, + [2987] = {.lex_state = 58}, + [2988] = {.lex_state = 58}, + [2989] = {.lex_state = 58}, + [2990] = {.lex_state = 58}, + [2991] = {.lex_state = 58}, + [2992] = {.lex_state = 58}, + [2993] = {.lex_state = 58}, + [2994] = {.lex_state = 58}, + [2995] = {.lex_state = 58}, + [2996] = {.lex_state = 58}, + [2997] = {.lex_state = 58}, + [2998] = {.lex_state = 58}, + [2999] = {.lex_state = 58}, + [3000] = {.lex_state = 58}, + [3001] = {.lex_state = 58}, + [3002] = {.lex_state = 58}, + [3003] = {.lex_state = 58}, + [3004] = {.lex_state = 58}, + [3005] = {.lex_state = 58}, + [3006] = {.lex_state = 58}, + [3007] = {.lex_state = 58}, + [3008] = {.lex_state = 58}, + [3009] = {.lex_state = 58}, + [3010] = {.lex_state = 58}, + [3011] = {.lex_state = 58}, + [3012] = {.lex_state = 58}, + [3013] = {.lex_state = 58}, + [3014] = {.lex_state = 58}, + [3015] = {.lex_state = 58}, + [3016] = {.lex_state = 58}, + [3017] = {.lex_state = 58}, + [3018] = {.lex_state = 58}, + [3019] = {.lex_state = 58}, + [3020] = {.lex_state = 58}, + [3021] = {.lex_state = 58}, + [3022] = {.lex_state = 58}, + [3023] = {.lex_state = 58}, + [3024] = {.lex_state = 58}, + [3025] = {.lex_state = 58}, + [3026] = {.lex_state = 58}, + [3027] = {.lex_state = 58}, + [3028] = {.lex_state = 58}, + [3029] = {.lex_state = 58}, + [3030] = {.lex_state = 58}, + [3031] = {.lex_state = 58}, + [3032] = {.lex_state = 58}, + [3033] = {.lex_state = 58}, + [3034] = {.lex_state = 58}, + [3035] = {.lex_state = 58}, + [3036] = {.lex_state = 58}, + [3037] = {.lex_state = 58}, + [3038] = {.lex_state = 58}, + [3039] = {.lex_state = 58}, + [3040] = {.lex_state = 58}, + [3041] = {.lex_state = 58}, + [3042] = {.lex_state = 58}, + [3043] = {.lex_state = 58}, + [3044] = {.lex_state = 58}, + [3045] = {.lex_state = 58}, + [3046] = {.lex_state = 58}, + [3047] = {.lex_state = 58}, + [3048] = {.lex_state = 58}, + [3049] = {.lex_state = 58}, + [3050] = {.lex_state = 58}, + [3051] = {.lex_state = 58}, + [3052] = {.lex_state = 58}, + [3053] = {.lex_state = 58}, + [3054] = {.lex_state = 58}, + [3055] = {.lex_state = 58}, + [3056] = {.lex_state = 58}, + [3057] = {.lex_state = 58}, + [3058] = {.lex_state = 58}, + [3059] = {.lex_state = 58}, + [3060] = {.lex_state = 68}, + [3061] = {.lex_state = 68}, + [3062] = {.lex_state = 68}, + [3063] = {.lex_state = 68}, + [3064] = {.lex_state = 68}, + [3065] = {.lex_state = 68}, + [3066] = {.lex_state = 68}, + [3067] = {.lex_state = 68}, + [3068] = {.lex_state = 68}, + [3069] = {.lex_state = 68}, + [3070] = {.lex_state = 68}, + [3071] = {.lex_state = 68}, + [3072] = {.lex_state = 68}, + [3073] = {.lex_state = 68}, + [3074] = {.lex_state = 68}, + [3075] = {.lex_state = 68}, + [3076] = {.lex_state = 68}, + [3077] = {.lex_state = 68}, + [3078] = {.lex_state = 68}, + [3079] = {.lex_state = 68}, + [3080] = {.lex_state = 68}, + [3081] = {.lex_state = 68}, + [3082] = {.lex_state = 68}, + [3083] = {.lex_state = 68}, + [3084] = {.lex_state = 68}, + [3085] = {.lex_state = 68}, + [3086] = {.lex_state = 68}, + [3087] = {.lex_state = 68}, + [3088] = {.lex_state = 68}, + [3089] = {.lex_state = 68}, + [3090] = {.lex_state = 68}, + [3091] = {.lex_state = 68}, + [3092] = {.lex_state = 68}, + [3093] = {.lex_state = 68}, + [3094] = {.lex_state = 68}, + [3095] = {.lex_state = 68}, + [3096] = {.lex_state = 68}, + [3097] = {.lex_state = 68}, + [3098] = {.lex_state = 68}, + [3099] = {.lex_state = 68}, + [3100] = {.lex_state = 68}, + [3101] = {.lex_state = 68}, + [3102] = {.lex_state = 68}, + [3103] = {.lex_state = 68}, + [3104] = {.lex_state = 68}, + [3105] = {.lex_state = 68}, + [3106] = {.lex_state = 68}, + [3107] = {.lex_state = 68}, + [3108] = {.lex_state = 68}, + [3109] = {.lex_state = 68}, + [3110] = {.lex_state = 68}, + [3111] = {.lex_state = 68}, + [3112] = {.lex_state = 68}, + [3113] = {.lex_state = 68}, + [3114] = {.lex_state = 68}, + [3115] = {.lex_state = 68}, + [3116] = {.lex_state = 68}, + [3117] = {.lex_state = 68}, + [3118] = {.lex_state = 68}, + [3119] = {.lex_state = 68}, + [3120] = {.lex_state = 68}, + [3121] = {.lex_state = 68}, + [3122] = {.lex_state = 68}, + [3123] = {.lex_state = 68}, + [3124] = {.lex_state = 68}, + [3125] = {.lex_state = 68}, + [3126] = {.lex_state = 68}, + [3127] = {.lex_state = 68}, + [3128] = {.lex_state = 68}, + [3129] = {.lex_state = 68}, + [3130] = {.lex_state = 68}, + [3131] = {.lex_state = 68}, + [3132] = {.lex_state = 68}, + [3133] = {.lex_state = 68}, + [3134] = {.lex_state = 68}, + [3135] = {.lex_state = 68}, + [3136] = {.lex_state = 68}, + [3137] = {.lex_state = 68}, + [3138] = {.lex_state = 68}, + [3139] = {.lex_state = 68}, + [3140] = {.lex_state = 68}, + [3141] = {.lex_state = 68}, + [3142] = {.lex_state = 68}, + [3143] = {.lex_state = 68}, + [3144] = {.lex_state = 68}, + [3145] = {.lex_state = 68}, + [3146] = {.lex_state = 68}, + [3147] = {.lex_state = 68}, + [3148] = {.lex_state = 68}, + [3149] = {.lex_state = 68}, + [3150] = {.lex_state = 68}, + [3151] = {.lex_state = 68}, + [3152] = {.lex_state = 68}, + [3153] = {.lex_state = 68}, + [3154] = {.lex_state = 68}, + [3155] = {.lex_state = 68}, + [3156] = {.lex_state = 68}, + [3157] = {.lex_state = 68}, + [3158] = {.lex_state = 68}, + [3159] = {.lex_state = 68}, + [3160] = {.lex_state = 68}, + [3161] = {.lex_state = 68}, + [3162] = {.lex_state = 68}, + [3163] = {.lex_state = 68}, + [3164] = {.lex_state = 68}, + [3165] = {.lex_state = 68}, + [3166] = {.lex_state = 68}, + [3167] = {.lex_state = 68}, + [3168] = {.lex_state = 68}, + [3169] = {.lex_state = 68}, + [3170] = {.lex_state = 68}, + [3171] = {.lex_state = 68}, + [3172] = {.lex_state = 68}, + [3173] = {.lex_state = 68}, + [3174] = {.lex_state = 68}, + [3175] = {.lex_state = 68}, + [3176] = {.lex_state = 68}, + [3177] = {.lex_state = 68}, + [3178] = {.lex_state = 68}, + [3179] = {.lex_state = 68}, + [3180] = {.lex_state = 68}, + [3181] = {.lex_state = 68}, + [3182] = {.lex_state = 68}, + [3183] = {.lex_state = 68}, + [3184] = {.lex_state = 68}, + [3185] = {.lex_state = 68}, + [3186] = {.lex_state = 68}, + [3187] = {.lex_state = 68}, + [3188] = {.lex_state = 68}, + [3189] = {.lex_state = 68}, + [3190] = {.lex_state = 68}, + [3191] = {.lex_state = 68}, + [3192] = {.lex_state = 68}, + [3193] = {.lex_state = 68}, + [3194] = {.lex_state = 68}, + [3195] = {.lex_state = 68}, + [3196] = {.lex_state = 68}, + [3197] = {.lex_state = 68}, + [3198] = {.lex_state = 68}, + [3199] = {.lex_state = 68}, + [3200] = {.lex_state = 68}, + [3201] = {.lex_state = 68}, + [3202] = {.lex_state = 68}, + [3203] = {.lex_state = 68}, + [3204] = {.lex_state = 68}, + [3205] = {.lex_state = 68}, + [3206] = {.lex_state = 68}, + [3207] = {.lex_state = 68}, + [3208] = {.lex_state = 68}, + [3209] = {.lex_state = 68}, + [3210] = {.lex_state = 68}, + [3211] = {.lex_state = 68}, + [3212] = {.lex_state = 68}, + [3213] = {.lex_state = 68}, + [3214] = {.lex_state = 68}, + [3215] = {.lex_state = 68}, + [3216] = {.lex_state = 68}, + [3217] = {.lex_state = 68}, + [3218] = {.lex_state = 68}, + [3219] = {.lex_state = 68}, + [3220] = {.lex_state = 68}, + [3221] = {.lex_state = 68}, + [3222] = {.lex_state = 68}, + [3223] = {.lex_state = 68}, + [3224] = {.lex_state = 68}, + [3225] = {.lex_state = 68}, + [3226] = {.lex_state = 68}, + [3227] = {.lex_state = 68}, + [3228] = {.lex_state = 68}, + [3229] = {.lex_state = 68}, + [3230] = {.lex_state = 68}, + [3231] = {.lex_state = 68}, + [3232] = {.lex_state = 68}, + [3233] = {.lex_state = 68}, + [3234] = {.lex_state = 68}, + [3235] = {.lex_state = 68}, + [3236] = {.lex_state = 68}, + [3237] = {.lex_state = 68}, + [3238] = {.lex_state = 68}, + [3239] = {.lex_state = 68}, + [3240] = {.lex_state = 68}, + [3241] = {.lex_state = 68}, + [3242] = {.lex_state = 68}, + [3243] = {.lex_state = 68}, + [3244] = {.lex_state = 68}, + [3245] = {.lex_state = 68}, + [3246] = {.lex_state = 68}, + [3247] = {.lex_state = 68}, + [3248] = {.lex_state = 68}, + [3249] = {.lex_state = 68}, + [3250] = {.lex_state = 68}, + [3251] = {.lex_state = 68}, + [3252] = {.lex_state = 68}, + [3253] = {.lex_state = 68}, + [3254] = {.lex_state = 68}, + [3255] = {.lex_state = 68}, + [3256] = {.lex_state = 68}, + [3257] = {.lex_state = 68}, + [3258] = {.lex_state = 68}, + [3259] = {.lex_state = 68}, + [3260] = {.lex_state = 68}, + [3261] = {.lex_state = 68}, + [3262] = {.lex_state = 68}, + [3263] = {.lex_state = 68}, + [3264] = {.lex_state = 68}, + [3265] = {.lex_state = 68}, + [3266] = {.lex_state = 68}, + [3267] = {.lex_state = 68}, + [3268] = {.lex_state = 68}, + [3269] = {.lex_state = 68}, + [3270] = {.lex_state = 68}, + [3271] = {.lex_state = 68}, + [3272] = {.lex_state = 68}, + [3273] = {.lex_state = 68}, + [3274] = {.lex_state = 68}, + [3275] = {.lex_state = 68}, + [3276] = {.lex_state = 68}, + [3277] = {.lex_state = 68}, + [3278] = {.lex_state = 68}, + [3279] = {.lex_state = 68}, + [3280] = {.lex_state = 68}, + [3281] = {.lex_state = 68}, + [3282] = {.lex_state = 68}, + [3283] = {.lex_state = 68}, + [3284] = {.lex_state = 68}, + [3285] = {.lex_state = 68}, + [3286] = {.lex_state = 68}, + [3287] = {.lex_state = 68}, + [3288] = {.lex_state = 68}, + [3289] = {.lex_state = 68}, + [3290] = {.lex_state = 68}, + [3291] = {.lex_state = 68}, + [3292] = {.lex_state = 68}, + [3293] = {.lex_state = 68}, + [3294] = {.lex_state = 68}, + [3295] = {.lex_state = 68}, + [3296] = {.lex_state = 68}, + [3297] = {.lex_state = 68}, + [3298] = {.lex_state = 68}, + [3299] = {.lex_state = 68}, + [3300] = {.lex_state = 68}, + [3301] = {.lex_state = 68}, + [3302] = {.lex_state = 68}, + [3303] = {.lex_state = 68}, + [3304] = {.lex_state = 68}, + [3305] = {.lex_state = 68}, + [3306] = {.lex_state = 68}, + [3307] = {.lex_state = 68}, + [3308] = {.lex_state = 68}, + [3309] = {.lex_state = 68}, + [3310] = {.lex_state = 68}, + [3311] = {.lex_state = 68}, + [3312] = {.lex_state = 68}, + [3313] = {.lex_state = 68}, + [3314] = {.lex_state = 68}, + [3315] = {.lex_state = 68}, + [3316] = {.lex_state = 68}, + [3317] = {.lex_state = 68}, + [3318] = {.lex_state = 68}, + [3319] = {.lex_state = 68}, + [3320] = {.lex_state = 68}, + [3321] = {.lex_state = 68}, + [3322] = {.lex_state = 68}, + [3323] = {.lex_state = 68}, + [3324] = {.lex_state = 68}, + [3325] = {.lex_state = 68}, + [3326] = {.lex_state = 68}, + [3327] = {.lex_state = 68}, + [3328] = {.lex_state = 68}, + [3329] = {.lex_state = 68}, + [3330] = {.lex_state = 68}, + [3331] = {.lex_state = 68}, + [3332] = {.lex_state = 68}, + [3333] = {.lex_state = 68}, + [3334] = {.lex_state = 68}, + [3335] = {.lex_state = 68}, + [3336] = {.lex_state = 68}, + [3337] = {.lex_state = 68}, + [3338] = {.lex_state = 68}, + [3339] = {.lex_state = 68}, + [3340] = {.lex_state = 68}, + [3341] = {.lex_state = 68}, + [3342] = {.lex_state = 68}, + [3343] = {.lex_state = 68}, + [3344] = {.lex_state = 68}, + [3345] = {.lex_state = 68}, + [3346] = {.lex_state = 68}, + [3347] = {.lex_state = 72}, + [3348] = {.lex_state = 68}, + [3349] = {.lex_state = 68}, + [3350] = {.lex_state = 68}, + [3351] = {.lex_state = 68}, + [3352] = {.lex_state = 68}, + [3353] = {.lex_state = 68}, + [3354] = {.lex_state = 68}, + [3355] = {.lex_state = 72}, + [3356] = {.lex_state = 68}, + [3357] = {.lex_state = 68}, + [3358] = {.lex_state = 68}, + [3359] = {.lex_state = 68}, + [3360] = {.lex_state = 68}, + [3361] = {.lex_state = 68}, + [3362] = {.lex_state = 71}, [3363] = {.lex_state = 17}, [3364] = {.lex_state = 17}, [3365] = {.lex_state = 17}, [3366] = {.lex_state = 17}, [3367] = {.lex_state = 17}, - [3368] = {.lex_state = 69}, - [3369] = {.lex_state = 67}, - [3370] = {.lex_state = 71}, - [3371] = {.lex_state = 69}, - [3372] = {.lex_state = 67}, - [3373] = {.lex_state = 67}, - [3374] = {.lex_state = 69}, - [3375] = {.lex_state = 67}, - [3376] = {.lex_state = 67}, - [3377] = {.lex_state = 25}, - [3378] = {.lex_state = 67}, - [3379] = {.lex_state = 25}, - [3380] = {.lex_state = 25}, + [3368] = {.lex_state = 68}, + [3369] = {.lex_state = 68}, + [3370] = {.lex_state = 68}, + [3371] = {.lex_state = 70}, + [3372] = {.lex_state = 70}, + [3373] = {.lex_state = 72}, + [3374] = {.lex_state = 68}, + [3375] = {.lex_state = 68}, + [3376] = {.lex_state = 70}, + [3377] = {.lex_state = 26}, + [3378] = {.lex_state = 18}, + [3379] = {.lex_state = 26}, + [3380] = {.lex_state = 26}, [3381] = {.lex_state = 18}, - [3382] = {.lex_state = 18}, - [3383] = {.lex_state = 25}, - [3384] = {.lex_state = 67}, - [3385] = {.lex_state = 25}, - [3386] = {.lex_state = 25}, - [3387] = {.lex_state = 25}, - [3388] = {.lex_state = 25}, - [3389] = {.lex_state = 25}, - [3390] = {.lex_state = 25}, - [3391] = {.lex_state = 25}, - [3392] = {.lex_state = 25}, - [3393] = {.lex_state = 67}, - [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 70}, - [3396] = {.lex_state = 70}, - [3397] = {.lex_state = 67}, - [3398] = {.lex_state = 70}, - [3399] = {.lex_state = 70}, - [3400] = {.lex_state = 69}, - [3401] = {.lex_state = 25}, - [3402] = {.lex_state = 70}, - [3403] = {.lex_state = 69}, - [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 70}, + [3382] = {.lex_state = 68}, + [3383] = {.lex_state = 26}, + [3384] = {.lex_state = 68}, + [3385] = {.lex_state = 26}, + [3386] = {.lex_state = 26}, + [3387] = {.lex_state = 26}, + [3388] = {.lex_state = 26}, + [3389] = {.lex_state = 26}, + [3390] = {.lex_state = 26}, + [3391] = {.lex_state = 26}, + [3392] = {.lex_state = 26}, + [3393] = {.lex_state = 68}, + [3394] = {.lex_state = 68}, + [3395] = {.lex_state = 71}, + [3396] = {.lex_state = 71}, + [3397] = {.lex_state = 71}, + [3398] = {.lex_state = 71}, + [3399] = {.lex_state = 19}, + [3400] = {.lex_state = 71}, + [3401] = {.lex_state = 71}, + [3402] = {.lex_state = 71}, + [3403] = {.lex_state = 71}, + [3404] = {.lex_state = 26}, + [3405] = {.lex_state = 71}, [3406] = {.lex_state = 19}, - [3407] = {.lex_state = 70}, - [3408] = {.lex_state = 70}, - [3409] = {.lex_state = 69}, - [3410] = {.lex_state = 70}, - [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 25}, - [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 25}, + [3407] = {.lex_state = 18}, + [3408] = {.lex_state = 71}, + [3409] = {.lex_state = 71}, + [3410] = {.lex_state = 71}, + [3411] = {.lex_state = 71}, + [3412] = {.lex_state = 71}, + [3413] = {.lex_state = 71}, + [3414] = {.lex_state = 71}, + [3415] = {.lex_state = 71}, [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 70}, - [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 70}, - [3420] = {.lex_state = 70}, - [3421] = {.lex_state = 70}, - [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 70}, - [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 69}, - [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 19}, - [3428] = {.lex_state = 19}, - [3429] = {.lex_state = 70}, - [3430] = {.lex_state = 18}, - [3431] = {.lex_state = 69}, + [3417] = {.lex_state = 71}, + [3418] = {.lex_state = 71}, + [3419] = {.lex_state = 71}, + [3420] = {.lex_state = 71}, + [3421] = {.lex_state = 71}, + [3422] = {.lex_state = 71}, + [3423] = {.lex_state = 19}, + [3424] = {.lex_state = 19}, + [3425] = {.lex_state = 71}, + [3426] = {.lex_state = 71}, + [3427] = {.lex_state = 71}, + [3428] = {.lex_state = 71}, + [3429] = {.lex_state = 71}, + [3430] = {.lex_state = 70}, + [3431] = {.lex_state = 26}, [3432] = {.lex_state = 70}, [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 19}, - [3435] = {.lex_state = 25}, - [3436] = {.lex_state = 69}, - [3437] = {.lex_state = 69}, - [3438] = {.lex_state = 70}, - [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 69}, + [3434] = {.lex_state = 71}, + [3435] = {.lex_state = 71}, + [3436] = {.lex_state = 26}, + [3437] = {.lex_state = 71}, + [3438] = {.lex_state = 71}, + [3439] = {.lex_state = 71}, + [3440] = {.lex_state = 70}, [3441] = {.lex_state = 70}, [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 70}, - [3445] = {.lex_state = 70}, - [3446] = {.lex_state = 18}, + [3444] = {.lex_state = 71}, + [3445] = {.lex_state = 26}, + [3446] = {.lex_state = 70}, [3447] = {.lex_state = 18}, - [3448] = {.lex_state = 69}, - [3449] = {.lex_state = 69}, + [3448] = {.lex_state = 18}, + [3449] = {.lex_state = 70}, [3450] = {.lex_state = 18}, - [3451] = {.lex_state = 69}, - [3452] = {.lex_state = 69}, - [3453] = {.lex_state = 18}, + [3451] = {.lex_state = 70}, + [3452] = {.lex_state = 18}, + [3453] = {.lex_state = 70}, [3454] = {.lex_state = 18}, [3455] = {.lex_state = 18}, [3456] = {.lex_state = 18}, - [3457] = {.lex_state = 18}, + [3457] = {.lex_state = 19}, [3458] = {.lex_state = 18}, [3459] = {.lex_state = 18}, [3460] = {.lex_state = 18}, @@ -17359,37 +17544,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3467] = {.lex_state = 18}, [3468] = {.lex_state = 18}, [3469] = {.lex_state = 18}, - [3470] = {.lex_state = 18}, + [3470] = {.lex_state = 70}, [3471] = {.lex_state = 18}, [3472] = {.lex_state = 18}, - [3473] = {.lex_state = 69}, + [3473] = {.lex_state = 18}, [3474] = {.lex_state = 18}, - [3475] = {.lex_state = 19}, + [3475] = {.lex_state = 18}, [3476] = {.lex_state = 18}, [3477] = {.lex_state = 18}, [3478] = {.lex_state = 18}, - [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 70}, + [3479] = {.lex_state = 71}, + [3480] = {.lex_state = 71}, [3481] = {.lex_state = 19}, - [3482] = {.lex_state = 65}, - [3483] = {.lex_state = 65}, - [3484] = {.lex_state = 70}, - [3485] = {.lex_state = 65}, - [3486] = {.lex_state = 18}, - [3487] = {.lex_state = 65}, - [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 65}, - [3490] = {.lex_state = 65}, - [3491] = {.lex_state = 65}, - [3492] = {.lex_state = 65}, - [3493] = {.lex_state = 65}, - [3494] = {.lex_state = 65}, + [3482] = {.lex_state = 66}, + [3483] = {.lex_state = 18}, + [3484] = {.lex_state = 66}, + [3485] = {.lex_state = 66}, + [3486] = {.lex_state = 66}, + [3487] = {.lex_state = 71}, + [3488] = {.lex_state = 66}, + [3489] = {.lex_state = 18}, + [3490] = {.lex_state = 66}, + [3491] = {.lex_state = 66}, + [3492] = {.lex_state = 66}, + [3493] = {.lex_state = 66}, + [3494] = {.lex_state = 18}, [3495] = {.lex_state = 18}, - [3496] = {.lex_state = 65}, - [3497] = {.lex_state = 18}, - [3498] = {.lex_state = 65}, - [3499] = {.lex_state = 18}, - [3500] = {.lex_state = 12}, + [3496] = {.lex_state = 66}, + [3497] = {.lex_state = 71}, + [3498] = {.lex_state = 66}, + [3499] = {.lex_state = 66}, + [3500] = {.lex_state = 18}, [3501] = {.lex_state = 18}, [3502] = {.lex_state = 12}, [3503] = {.lex_state = 18}, @@ -17399,346 +17584,346 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3507] = {.lex_state = 18}, [3508] = {.lex_state = 18}, [3509] = {.lex_state = 18}, - [3510] = {.lex_state = 18}, + [3510] = {.lex_state = 71}, [3511] = {.lex_state = 12}, - [3512] = {.lex_state = 18}, - [3513] = {.lex_state = 18}, - [3514] = {.lex_state = 12}, - [3515] = {.lex_state = 18}, - [3516] = {.lex_state = 79}, - [3517] = {.lex_state = 65}, - [3518] = {.lex_state = 79}, - [3519] = {.lex_state = 79}, - [3520] = {.lex_state = 72}, - [3521] = {.lex_state = 79}, - [3522] = {.lex_state = 18}, - [3523] = {.lex_state = 79}, - [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 79}, - [3527] = {.lex_state = 79}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 72}, - [3530] = {.lex_state = 65}, - [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 65}, - [3533] = {.lex_state = 72}, - [3534] = {.lex_state = 65}, - [3535] = {.lex_state = 79}, - [3536] = {.lex_state = 72}, - [3537] = {.lex_state = 72}, - [3538] = {.lex_state = 79}, - [3539] = {.lex_state = 12}, - [3540] = {.lex_state = 65}, - [3541] = {.lex_state = 70}, - [3542] = {.lex_state = 72}, - [3543] = {.lex_state = 79}, - [3544] = {.lex_state = 72}, - [3545] = {.lex_state = 79}, - [3546] = {.lex_state = 65}, - [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 79}, - [3549] = {.lex_state = 65}, - [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 72}, - [3552] = {.lex_state = 65}, - [3553] = {.lex_state = 79}, - [3554] = {.lex_state = 79}, - [3555] = {.lex_state = 72}, - [3556] = {.lex_state = 79}, - [3557] = {.lex_state = 72}, - [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 79}, - [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 79}, - [3562] = {.lex_state = 79}, - [3563] = {.lex_state = 70}, - [3564] = {.lex_state = 79}, - [3565] = {.lex_state = 65}, - [3566] = {.lex_state = 72}, - [3567] = {.lex_state = 79}, - [3568] = {.lex_state = 79}, - [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 79}, - [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 79}, - [3574] = {.lex_state = 65}, - [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72}, - [3577] = {.lex_state = 79}, - [3578] = {.lex_state = 72}, - [3579] = {.lex_state = 70}, - [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 79}, - [3582] = {.lex_state = 72}, - [3583] = {.lex_state = 79}, - [3584] = {.lex_state = 65}, - [3585] = {.lex_state = 70}, - [3586] = {.lex_state = 65}, - [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 65}, - [3589] = {.lex_state = 79}, - [3590] = {.lex_state = 79}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 79}, - [3593] = {.lex_state = 72}, - [3594] = {.lex_state = 79}, - [3595] = {.lex_state = 79}, - [3596] = {.lex_state = 72}, - [3597] = {.lex_state = 79}, - [3598] = {.lex_state = 72}, - [3599] = {.lex_state = 79}, - [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 79}, - [3602] = {.lex_state = 72}, - [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 79}, - [3605] = {.lex_state = 65}, - [3606] = {.lex_state = 72}, - [3607] = {.lex_state = 79}, - [3608] = {.lex_state = 79}, - [3609] = {.lex_state = 72}, - [3610] = {.lex_state = 72}, - [3611] = {.lex_state = 79}, - [3612] = {.lex_state = 79}, - [3613] = {.lex_state = 79}, - [3614] = {.lex_state = 12}, - [3615] = {.lex_state = 72}, - [3616] = {.lex_state = 72}, - [3617] = {.lex_state = 79}, - [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 65}, - [3620] = {.lex_state = 65}, - [3621] = {.lex_state = 72}, - [3622] = {.lex_state = 65}, - [3623] = {.lex_state = 65}, - [3624] = {.lex_state = 79}, - [3625] = {.lex_state = 65}, - [3626] = {.lex_state = 72}, - [3627] = {.lex_state = 79}, - [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 79}, - [3630] = {.lex_state = 65}, - [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 65}, - [3633] = {.lex_state = 79}, - [3634] = {.lex_state = 70}, - [3635] = {.lex_state = 72}, - [3636] = {.lex_state = 79}, - [3637] = {.lex_state = 72}, - [3638] = {.lex_state = 79}, - [3639] = {.lex_state = 65}, - [3640] = {.lex_state = 65}, - [3641] = {.lex_state = 65}, - [3642] = {.lex_state = 72}, - [3643] = {.lex_state = 72}, - [3644] = {.lex_state = 79}, - [3645] = {.lex_state = 72}, - [3646] = {.lex_state = 79}, - [3647] = {.lex_state = 178}, - [3648] = {.lex_state = 0}, - [3649] = {.lex_state = 178}, - [3650] = {.lex_state = 70}, - [3651] = {.lex_state = 178}, - [3652] = {.lex_state = 74}, + [3512] = {.lex_state = 12}, + [3513] = {.lex_state = 12}, + [3514] = {.lex_state = 18}, + [3515] = {.lex_state = 71}, + [3516] = {.lex_state = 18}, + [3517] = {.lex_state = 18}, + [3518] = {.lex_state = 12}, + [3519] = {.lex_state = 80}, + [3520] = {.lex_state = 80}, + [3521] = {.lex_state = 73}, + [3522] = {.lex_state = 80}, + [3523] = {.lex_state = 73}, + [3524] = {.lex_state = 80}, + [3525] = {.lex_state = 73}, + [3526] = {.lex_state = 66}, + [3527] = {.lex_state = 73}, + [3528] = {.lex_state = 80}, + [3529] = {.lex_state = 73}, + [3530] = {.lex_state = 80}, + [3531] = {.lex_state = 12}, + [3532] = {.lex_state = 66}, + [3533] = {.lex_state = 80}, + [3534] = {.lex_state = 73}, + [3535] = {.lex_state = 66}, + [3536] = {.lex_state = 66}, + [3537] = {.lex_state = 73}, + [3538] = {.lex_state = 73}, + [3539] = {.lex_state = 80}, + [3540] = {.lex_state = 66}, + [3541] = {.lex_state = 73}, + [3542] = {.lex_state = 80}, + [3543] = {.lex_state = 66}, + [3544] = {.lex_state = 80}, + [3545] = {.lex_state = 73}, + [3546] = {.lex_state = 73}, + [3547] = {.lex_state = 71}, + [3548] = {.lex_state = 73}, + [3549] = {.lex_state = 80}, + [3550] = {.lex_state = 73}, + [3551] = {.lex_state = 80}, + [3552] = {.lex_state = 80}, + [3553] = {.lex_state = 73}, + [3554] = {.lex_state = 80}, + [3555] = {.lex_state = 73}, + [3556] = {.lex_state = 66}, + [3557] = {.lex_state = 80}, + [3558] = {.lex_state = 73}, + [3559] = {.lex_state = 80}, + [3560] = {.lex_state = 80}, + [3561] = {.lex_state = 66}, + [3562] = {.lex_state = 66}, + [3563] = {.lex_state = 71}, + [3564] = {.lex_state = 66}, + [3565] = {.lex_state = 73}, + [3566] = {.lex_state = 80}, + [3567] = {.lex_state = 73}, + [3568] = {.lex_state = 80}, + [3569] = {.lex_state = 80}, + [3570] = {.lex_state = 80}, + [3571] = {.lex_state = 73}, + [3572] = {.lex_state = 80}, + [3573] = {.lex_state = 73}, + [3574] = {.lex_state = 73}, + [3575] = {.lex_state = 73}, + [3576] = {.lex_state = 80}, + [3577] = {.lex_state = 73}, + [3578] = {.lex_state = 80}, + [3579] = {.lex_state = 71}, + [3580] = {.lex_state = 73}, + [3581] = {.lex_state = 80}, + [3582] = {.lex_state = 73}, + [3583] = {.lex_state = 80}, + [3584] = {.lex_state = 66}, + [3585] = {.lex_state = 80}, + [3586] = {.lex_state = 73}, + [3587] = {.lex_state = 66}, + [3588] = {.lex_state = 80}, + [3589] = {.lex_state = 80}, + [3590] = {.lex_state = 73}, + [3591] = {.lex_state = 80}, + [3592] = {.lex_state = 80}, + [3593] = {.lex_state = 73}, + [3594] = {.lex_state = 73}, + [3595] = {.lex_state = 18}, + [3596] = {.lex_state = 80}, + [3597] = {.lex_state = 73}, + [3598] = {.lex_state = 80}, + [3599] = {.lex_state = 73}, + [3600] = {.lex_state = 80}, + [3601] = {.lex_state = 73}, + [3602] = {.lex_state = 66}, + [3603] = {.lex_state = 73}, + [3604] = {.lex_state = 73}, + [3605] = {.lex_state = 66}, + [3606] = {.lex_state = 80}, + [3607] = {.lex_state = 73}, + [3608] = {.lex_state = 73}, + [3609] = {.lex_state = 80}, + [3610] = {.lex_state = 66}, + [3611] = {.lex_state = 66}, + [3612] = {.lex_state = 80}, + [3613] = {.lex_state = 73}, + [3614] = {.lex_state = 66}, + [3615] = {.lex_state = 66}, + [3616] = {.lex_state = 71}, + [3617] = {.lex_state = 73}, + [3618] = {.lex_state = 80}, + [3619] = {.lex_state = 73}, + [3620] = {.lex_state = 80}, + [3621] = {.lex_state = 66}, + [3622] = {.lex_state = 73}, + [3623] = {.lex_state = 80}, + [3624] = {.lex_state = 73}, + [3625] = {.lex_state = 80}, + [3626] = {.lex_state = 73}, + [3627] = {.lex_state = 80}, + [3628] = {.lex_state = 80}, + [3629] = {.lex_state = 66}, + [3630] = {.lex_state = 66}, + [3631] = {.lex_state = 66}, + [3632] = {.lex_state = 80}, + [3633] = {.lex_state = 73}, + [3634] = {.lex_state = 73}, + [3635] = {.lex_state = 80}, + [3636] = {.lex_state = 73}, + [3637] = {.lex_state = 73}, + [3638] = {.lex_state = 66}, + [3639] = {.lex_state = 80}, + [3640] = {.lex_state = 80}, + [3641] = {.lex_state = 73}, + [3642] = {.lex_state = 73}, + [3643] = {.lex_state = 80}, + [3644] = {.lex_state = 73}, + [3645] = {.lex_state = 80}, + [3646] = {.lex_state = 66}, + [3647] = {.lex_state = 71}, + [3648] = {.lex_state = 178}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 75}, + [3651] = {.lex_state = 0}, + [3652] = {.lex_state = 71}, [3653] = {.lex_state = 178}, - [3654] = {.lex_state = 0}, - [3655] = {.lex_state = 70}, - [3656] = {.lex_state = 70}, - [3657] = {.lex_state = 18}, - [3658] = {.lex_state = 79}, - [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 70}, - [3661] = {.lex_state = 65}, - [3662] = {.lex_state = 79}, - [3663] = {.lex_state = 79}, - [3664] = {.lex_state = 0}, - [3665] = {.lex_state = 184}, - [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 70}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 70}, - [3671] = {.lex_state = 65}, - [3672] = {.lex_state = 65}, - [3673] = {.lex_state = 79}, - [3674] = {.lex_state = 178}, + [3654] = {.lex_state = 71}, + [3655] = {.lex_state = 178}, + [3656] = {.lex_state = 178}, + [3657] = {.lex_state = 80}, + [3658] = {.lex_state = 71}, + [3659] = {.lex_state = 66}, + [3660] = {.lex_state = 71}, + [3661] = {.lex_state = 66}, + [3662] = {.lex_state = 0}, + [3663] = {.lex_state = 73}, + [3664] = {.lex_state = 73}, + [3665] = {.lex_state = 66}, + [3666] = {.lex_state = 18}, + [3667] = {.lex_state = 71}, + [3668] = {.lex_state = 178}, + [3669] = {.lex_state = 184}, + [3670] = {.lex_state = 73}, + [3671] = {.lex_state = 178}, + [3672] = {.lex_state = 71}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 66}, [3675] = {.lex_state = 18}, - [3676] = {.lex_state = 65}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 70}, - [3679] = {.lex_state = 70}, - [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 72}, - [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 18}, - [3684] = {.lex_state = 72}, - [3685] = {.lex_state = 65}, - [3686] = {.lex_state = 65}, - [3687] = {.lex_state = 65}, + [3676] = {.lex_state = 66}, + [3677] = {.lex_state = 80}, + [3678] = {.lex_state = 71}, + [3679] = {.lex_state = 66}, + [3680] = {.lex_state = 18}, + [3681] = {.lex_state = 66}, + [3682] = {.lex_state = 66}, + [3683] = {.lex_state = 0}, + [3684] = {.lex_state = 73}, + [3685] = {.lex_state = 80}, + [3686] = {.lex_state = 0}, + [3687] = {.lex_state = 0}, [3688] = {.lex_state = 0}, [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 178}, - [3691] = {.lex_state = 65}, - [3692] = {.lex_state = 70}, - [3693] = {.lex_state = 70}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 84}, - [3696] = {.lex_state = 70}, + [3690] = {.lex_state = 80}, + [3691] = {.lex_state = 71}, + [3692] = {.lex_state = 0}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 71}, + [3695] = {.lex_state = 85}, + [3696] = {.lex_state = 71}, [3697] = {.lex_state = 0}, - [3698] = {.lex_state = 70}, - [3699] = {.lex_state = 43}, + [3698] = {.lex_state = 44}, + [3699] = {.lex_state = 44}, [3700] = {.lex_state = 0}, - [3701] = {.lex_state = 0}, + [3701] = {.lex_state = 71}, [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 43}, - [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 70}, - [3706] = {.lex_state = 70}, + [3703] = {.lex_state = 0}, + [3704] = {.lex_state = 71}, + [3705] = {.lex_state = 0}, + [3706] = {.lex_state = 71}, [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 0}, + [3708] = {.lex_state = 71}, [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 70}, - [3711] = {.lex_state = 70}, - [3712] = {.lex_state = 43}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 43}, - [3716] = {.lex_state = 70}, - [3717] = {.lex_state = 178}, - [3718] = {.lex_state = 43}, - [3719] = {.lex_state = 70}, - [3720] = {.lex_state = 0}, - [3721] = {.lex_state = 43}, - [3722] = {.lex_state = 84}, + [3710] = {.lex_state = 71}, + [3711] = {.lex_state = 0}, + [3712] = {.lex_state = 71}, + [3713] = {.lex_state = 71}, + [3714] = {.lex_state = 44}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 44}, + [3717] = {.lex_state = 44}, + [3718] = {.lex_state = 178}, + [3719] = {.lex_state = 85}, + [3720] = {.lex_state = 71}, + [3721] = {.lex_state = 0}, + [3722] = {.lex_state = 44}, [3723] = {.lex_state = 178}, - [3724] = {.lex_state = 43}, - [3725] = {.lex_state = 70}, - [3726] = {.lex_state = 70}, - [3727] = {.lex_state = 70}, - [3728] = {.lex_state = 70}, - [3729] = {.lex_state = 65}, - [3730] = {.lex_state = 0}, - [3731] = {.lex_state = 0}, - [3732] = {.lex_state = 65}, - [3733] = {.lex_state = 43}, - [3734] = {.lex_state = 70}, + [3724] = {.lex_state = 44}, + [3725] = {.lex_state = 71}, + [3726] = {.lex_state = 71}, + [3727] = {.lex_state = 0}, + [3728] = {.lex_state = 71}, + [3729] = {.lex_state = 66}, + [3730] = {.lex_state = 44}, + [3731] = {.lex_state = 71}, + [3732] = {.lex_state = 66}, + [3733] = {.lex_state = 71}, + [3734] = {.lex_state = 0}, [3735] = {.lex_state = 0}, [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 0}, - [3738] = {.lex_state = 184}, - [3739] = {.lex_state = 74}, - [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 43}, - [3742] = {.lex_state = 70}, - [3743] = {.lex_state = 43}, - [3744] = {.lex_state = 70}, + [3737] = {.lex_state = 184}, + [3738] = {.lex_state = 75}, + [3739] = {.lex_state = 44}, + [3740] = {.lex_state = 71}, + [3741] = {.lex_state = 0}, + [3742] = {.lex_state = 44}, + [3743] = {.lex_state = 71}, + [3744] = {.lex_state = 44}, [3745] = {.lex_state = 0}, - [3746] = {.lex_state = 43}, - [3747] = {.lex_state = 70}, - [3748] = {.lex_state = 74}, - [3749] = {.lex_state = 184}, - [3750] = {.lex_state = 43}, - [3751] = {.lex_state = 43}, - [3752] = {.lex_state = 70}, - [3753] = {.lex_state = 0}, + [3746] = {.lex_state = 75}, + [3747] = {.lex_state = 71}, + [3748] = {.lex_state = 44}, + [3749] = {.lex_state = 44}, + [3750] = {.lex_state = 0}, + [3751] = {.lex_state = 44}, + [3752] = {.lex_state = 71}, + [3753] = {.lex_state = 71}, [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 43}, - [3756] = {.lex_state = 70}, - [3757] = {.lex_state = 70}, - [3758] = {.lex_state = 43}, - [3759] = {.lex_state = 70}, - [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 70}, - [3762] = {.lex_state = 43}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 43}, - [3765] = {.lex_state = 70}, - [3766] = {.lex_state = 178}, - [3767] = {.lex_state = 70}, - [3768] = {.lex_state = 43}, + [3755] = {.lex_state = 71}, + [3756] = {.lex_state = 71}, + [3757] = {.lex_state = 184}, + [3758] = {.lex_state = 44}, + [3759] = {.lex_state = 0}, + [3760] = {.lex_state = 71}, + [3761] = {.lex_state = 44}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 44}, + [3764] = {.lex_state = 178}, + [3765] = {.lex_state = 71}, + [3766] = {.lex_state = 71}, + [3767] = {.lex_state = 44}, + [3768] = {.lex_state = 44}, [3769] = {.lex_state = 0}, - [3770] = {.lex_state = 43}, - [3771] = {.lex_state = 178}, - [3772] = {.lex_state = 70}, - [3773] = {.lex_state = 70}, - [3774] = {.lex_state = 70}, - [3775] = {.lex_state = 43}, - [3776] = {.lex_state = 43}, - [3777] = {.lex_state = 70}, - [3778] = {.lex_state = 70}, - [3779] = {.lex_state = 65}, - [3780] = {.lex_state = 70}, - [3781] = {.lex_state = 0}, - [3782] = {.lex_state = 70}, + [3770] = {.lex_state = 71}, + [3771] = {.lex_state = 71}, + [3772] = {.lex_state = 0}, + [3773] = {.lex_state = 71}, + [3774] = {.lex_state = 44}, + [3775] = {.lex_state = 44}, + [3776] = {.lex_state = 71}, + [3777] = {.lex_state = 71}, + [3778] = {.lex_state = 178}, + [3779] = {.lex_state = 71}, + [3780] = {.lex_state = 66}, + [3781] = {.lex_state = 44}, + [3782] = {.lex_state = 0}, [3783] = {.lex_state = 0}, - [3784] = {.lex_state = 0}, - [3785] = {.lex_state = 178}, + [3784] = {.lex_state = 178}, + [3785] = {.lex_state = 71}, [3786] = {.lex_state = 178}, - [3787] = {.lex_state = 43}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 70}, + [3787] = {.lex_state = 0}, + [3788] = {.lex_state = 71}, + [3789] = {.lex_state = 0}, [3790] = {.lex_state = 0}, [3791] = {.lex_state = 0}, [3792] = {.lex_state = 0}, [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 70}, + [3794] = {.lex_state = 0}, [3795] = {.lex_state = 0}, [3796] = {.lex_state = 0}, - [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 70}, - [3799] = {.lex_state = 43}, + [3797] = {.lex_state = 71}, + [3798] = {.lex_state = 44}, + [3799] = {.lex_state = 44}, [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 84}, - [3802] = {.lex_state = 43}, - [3803] = {.lex_state = 70}, - [3804] = {.lex_state = 70}, + [3801] = {.lex_state = 85}, + [3802] = {.lex_state = 71}, + [3803] = {.lex_state = 0}, + [3804] = {.lex_state = 71}, [3805] = {.lex_state = 0}, [3806] = {.lex_state = 178}, [3807] = {.lex_state = 0}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 43}, - [3810] = {.lex_state = 70}, - [3811] = {.lex_state = 0}, + [3808] = {.lex_state = 44}, + [3809] = {.lex_state = 71}, + [3810] = {.lex_state = 0}, + [3811] = {.lex_state = 71}, [3812] = {.lex_state = 0}, - [3813] = {.lex_state = 70}, + [3813] = {.lex_state = 0}, [3814] = {.lex_state = 178}, - [3815] = {.lex_state = 0}, + [3815] = {.lex_state = 71}, [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 70}, - [3818] = {.lex_state = 70}, - [3819] = {.lex_state = 70}, - [3820] = {.lex_state = 43}, - [3821] = {.lex_state = 43}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 70}, + [3817] = {.lex_state = 0}, + [3818] = {.lex_state = 71}, + [3819] = {.lex_state = 0}, + [3820] = {.lex_state = 71}, + [3821] = {.lex_state = 44}, + [3822] = {.lex_state = 44}, + [3823] = {.lex_state = 0}, [3824] = {.lex_state = 0}, [3825] = {.lex_state = 178}, - [3826] = {.lex_state = 70}, + [3826] = {.lex_state = 71}, [3827] = {.lex_state = 0}, [3828] = {.lex_state = 0}, [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 0}, + [3830] = {.lex_state = 44}, [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 43}, - [3833] = {.lex_state = 0}, + [3832] = {.lex_state = 0}, + [3833] = {.lex_state = 71}, [3834] = {.lex_state = 0}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 70}, - [3838] = {.lex_state = 70}, - [3839] = {.lex_state = 43}, - [3840] = {.lex_state = 0}, - [3841] = {.lex_state = 184}, - [3842] = {.lex_state = 43}, - [3843] = {.lex_state = 0}, + [3836] = {.lex_state = 71}, + [3837] = {.lex_state = 0}, + [3838] = {.lex_state = 44}, + [3839] = {.lex_state = 71}, + [3840] = {.lex_state = 44}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 184}, + [3843] = {.lex_state = 184}, [3844] = {.lex_state = 0}, - [3845] = {.lex_state = 80}, - [3846] = {.lex_state = 0}, - [3847] = {.lex_state = 73}, - [3848] = {.lex_state = 70}, - [3849] = {.lex_state = 184}, + [3845] = {.lex_state = 71}, + [3846] = {.lex_state = 81}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 74}, + [3849] = {.lex_state = 0}, [3850] = {.lex_state = 0}, [3851] = {.lex_state = 0}, [3852] = {.lex_state = 0}, @@ -17747,28 +17932,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3855] = {.lex_state = 0}, [3856] = {.lex_state = 184}, [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 80}, + [3858] = {.lex_state = 0}, [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 73}, - [3861] = {.lex_state = 0}, + [3860] = {.lex_state = 0}, + [3861] = {.lex_state = 81}, [3862] = {.lex_state = 0}, - [3863] = {.lex_state = 70}, - [3864] = {.lex_state = 0}, + [3863] = {.lex_state = 74}, + [3864] = {.lex_state = 71}, [3865] = {.lex_state = 0}, [3866] = {.lex_state = 0}, [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 80}, - [3869] = {.lex_state = 73}, - [3870] = {.lex_state = 0}, + [3868] = {.lex_state = 0}, + [3869] = {.lex_state = 81}, + [3870] = {.lex_state = 74}, [3871] = {.lex_state = 0}, [3872] = {.lex_state = 0}, [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 70}, + [3874] = {.lex_state = 71}, [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 0}, + [3876] = {.lex_state = 74}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 73}, - [3879] = {.lex_state = 0}, + [3878] = {.lex_state = 0}, + [3879] = {.lex_state = 81}, [3880] = {.lex_state = 0}, [3881] = {.lex_state = 0}, [3882] = {.lex_state = 0}, @@ -17777,101 +17962,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3885] = {.lex_state = 0}, [3886] = {.lex_state = 0}, [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 80}, + [3888] = {.lex_state = 0}, [3889] = {.lex_state = 0}, [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 0}, + [3891] = {.lex_state = 74}, [3892] = {.lex_state = 0}, [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 73}, + [3894] = {.lex_state = 81}, [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 80}, - [3897] = {.lex_state = 73}, - [3898] = {.lex_state = 80}, - [3899] = {.lex_state = 70}, + [3896] = {.lex_state = 0}, + [3897] = {.lex_state = 81}, + [3898] = {.lex_state = 74}, + [3899] = {.lex_state = 0}, [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 80}, - [3902] = {.lex_state = 73}, + [3901] = {.lex_state = 71}, + [3902] = {.lex_state = 81}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 0}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 73}, - [3907] = {.lex_state = 80}, - [3908] = {.lex_state = 0}, + [3904] = {.lex_state = 74}, + [3905] = {.lex_state = 74}, + [3906] = {.lex_state = 0}, + [3907] = {.lex_state = 0}, + [3908] = {.lex_state = 81}, [3909] = {.lex_state = 0}, [3910] = {.lex_state = 0}, [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 80}, - [3913] = {.lex_state = 80}, - [3914] = {.lex_state = 73}, - [3915] = {.lex_state = 70}, - [3916] = {.lex_state = 70}, - [3917] = {.lex_state = 43}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 184}, - [3921] = {.lex_state = 0}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 74}, + [3914] = {.lex_state = 71}, + [3915] = {.lex_state = 81}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 71}, + [3919] = {.lex_state = 44}, + [3920] = {.lex_state = 0}, + [3921] = {.lex_state = 74}, [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 70}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, - [3926] = {.lex_state = 73}, - [3927] = {.lex_state = 70}, + [3923] = {.lex_state = 74}, + [3924] = {.lex_state = 184}, + [3925] = {.lex_state = 71}, + [3926] = {.lex_state = 81}, + [3927] = {.lex_state = 71}, [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 80}, - [3930] = {.lex_state = 73}, - [3931] = {.lex_state = 80}, - [3932] = {.lex_state = 70}, - [3933] = {.lex_state = 0}, + [3929] = {.lex_state = 0}, + [3930] = {.lex_state = 71}, + [3931] = {.lex_state = 74}, + [3932] = {.lex_state = 81}, + [3933] = {.lex_state = 71}, [3934] = {.lex_state = 0}, [3935] = {.lex_state = 0}, - [3936] = {.lex_state = 70}, + [3936] = {.lex_state = 0}, [3937] = {.lex_state = 0}, [3938] = {.lex_state = 0}, [3939] = {.lex_state = 0}, [3940] = {.lex_state = 0}, [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 0}, + [3942] = {.lex_state = 74}, + [3943] = {.lex_state = 81}, [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 73}, - [3946] = {.lex_state = 80}, - [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 70}, - [3949] = {.lex_state = 73}, - [3950] = {.lex_state = 73}, + [3945] = {.lex_state = 0}, + [3946] = {.lex_state = 0}, + [3947] = {.lex_state = 44}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 71}, + [3950] = {.lex_state = 74}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 43}, - [3953] = {.lex_state = 73}, - [3954] = {.lex_state = 80}, - [3955] = {.lex_state = 0}, + [3952] = {.lex_state = 71}, + [3953] = {.lex_state = 81}, + [3954] = {.lex_state = 74}, + [3955] = {.lex_state = 81}, [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 70}, + [3957] = {.lex_state = 0}, [3958] = {.lex_state = 0}, [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 70}, - [3961] = {.lex_state = 0}, + [3960] = {.lex_state = 66}, + [3961] = {.lex_state = 71}, [3962] = {.lex_state = 0}, [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 65}, - [3965] = {.lex_state = 80}, - [3966] = {.lex_state = 73}, - [3967] = {.lex_state = 184}, + [3964] = {.lex_state = 0}, + [3965] = {.lex_state = 0}, + [3966] = {.lex_state = 81}, + [3967] = {.lex_state = 74}, [3968] = {.lex_state = 0}, [3969] = {.lex_state = 0}, [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 65}, + [3971] = {.lex_state = 66}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 70}, - [3975] = {.lex_state = 80}, + [3973] = {.lex_state = 71}, + [3974] = {.lex_state = 81}, + [3975] = {.lex_state = 0}, [3976] = {.lex_state = 0}, [3977] = {.lex_state = 0}, [3978] = {.lex_state = 0}, [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 184}, + [3981] = {.lex_state = 184}, + [3982] = {.lex_state = 0}, [3983] = {.lex_state = 0}, [3984] = {.lex_state = 0}, [3985] = {.lex_state = 0}, @@ -17880,45 +18065,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3988] = {.lex_state = 0}, [3989] = {.lex_state = 0}, [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 70}, - [3992] = {.lex_state = 80}, - [3993] = {.lex_state = 80}, - [3994] = {.lex_state = 73}, - [3995] = {.lex_state = 0}, + [3991] = {.lex_state = 0}, + [3992] = {.lex_state = 0}, + [3993] = {.lex_state = 0}, + [3994] = {.lex_state = 81}, + [3995] = {.lex_state = 74}, [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 73}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 70}, - [4000] = {.lex_state = 0}, + [3997] = {.lex_state = 71}, + [3998] = {.lex_state = 81}, + [3999] = {.lex_state = 74}, + [4000] = {.lex_state = 71}, [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 65}, + [4002] = {.lex_state = 0}, [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, + [4005] = {.lex_state = 66}, [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 70}, - [4010] = {.lex_state = 80}, - [4011] = {.lex_state = 73}, - [4012] = {.lex_state = 0}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 0}, + [4012] = {.lex_state = 71}, [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 0}, + [4014] = {.lex_state = 81}, + [4015] = {.lex_state = 74}, + [4016] = {.lex_state = 66}, [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 65}, - [4022] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 66}, [4023] = {.lex_state = 0}, [4024] = {.lex_state = 0}, [4025] = {.lex_state = 0}, [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 65}, + [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, @@ -17939,57 +18124,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4047] = {.lex_state = 0}, [4048] = {.lex_state = 0}, [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 43}, + [4050] = {.lex_state = 44}, [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, - [4053] = {.lex_state = 73}, - [4054] = {.lex_state = 184}, - [4055] = {.lex_state = 70}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 70}, - [4058] = {.lex_state = 80}, - [4059] = {.lex_state = 84}, - [4060] = {.lex_state = 73}, + [4052] = {.lex_state = 74}, + [4053] = {.lex_state = 81}, + [4054] = {.lex_state = 85}, + [4055] = {.lex_state = 74}, + [4056] = {.lex_state = 71}, + [4057] = {.lex_state = 184}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 0}, + [4060] = {.lex_state = 81}, [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 80}, - [4063] = {.lex_state = 0}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 71}, [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, [4066] = {.lex_state = 0}, [4067] = {.lex_state = 0}, [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 73}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 80}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 73}, + [4069] = {.lex_state = 74}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 81}, + [4072] = {.lex_state = 0}, + [4073] = {.lex_state = 74}, + [4074] = {.lex_state = 81}, [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 80}, - [4077] = {.lex_state = 0}, + [4076] = {.lex_state = 71}, + [4077] = {.lex_state = 184}, [4078] = {.lex_state = 0}, [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 70}, - [4081] = {.lex_state = 73}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 73}, - [4084] = {.lex_state = 80}, - [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 80}, + [4080] = {.lex_state = 0}, + [4081] = {.lex_state = 74}, + [4082] = {.lex_state = 81}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 0}, + [4085] = {.lex_state = 74}, + [4086] = {.lex_state = 81}, + [4087] = {.lex_state = 0}, [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 70}, - [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 70}, - [4092] = {.lex_state = 70}, - [4093] = {.lex_state = 70}, + [4089] = {.lex_state = 71}, + [4090] = {.lex_state = 71}, + [4091] = {.lex_state = 71}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 71}, [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4096] = {.lex_state = 184}, [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, - [4100] = {.lex_state = 70}, + [4099] = {.lex_state = 71}, + [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, [4103] = {.lex_state = 0}, @@ -18010,17 +18195,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 70}, - [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 70}, - [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 70}, + [4121] = {.lex_state = 71}, + [4122] = {.lex_state = 71}, + [4123] = {.lex_state = 0}, + [4124] = {.lex_state = 71}, + [4125] = {.lex_state = 0}, [4126] = {.lex_state = 0}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 184}, + [4131] = {.lex_state = 0}, [4132] = {.lex_state = 0}, [4133] = {.lex_state = 0}, [4134] = {.lex_state = 0}, @@ -18028,8 +18213,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 70}, + [4139] = {.lex_state = 71}, + [4140] = {.lex_state = 71}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, @@ -18037,24 +18222,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 70}, + [4148] = {.lex_state = 44}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 43}, + [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, [4153] = {.lex_state = 0}, [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 70}, - [4156] = {.lex_state = 0}, + [4155] = {.lex_state = 0}, + [4156] = {.lex_state = 71}, [4157] = {.lex_state = 0}, [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 70}, - [4164] = {.lex_state = 70}, - [4165] = {.lex_state = 0}, + [4162] = {.lex_state = 71}, + [4163] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 71}, [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, @@ -18063,7 +18248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 70}, + [4174] = {.lex_state = 71}, [4175] = {.lex_state = 0}, [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, @@ -18076,10 +18261,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, + [4187] = {.lex_state = 71}, [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 70}, + [4190] = {.lex_state = 0}, [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, @@ -18089,20 +18274,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 70}, - [4201] = {.lex_state = 0}, + [4200] = {.lex_state = 0}, + [4201] = {.lex_state = 71}, [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 70}, + [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 70}, - [4206] = {.lex_state = 0}, + [4205] = {.lex_state = 0}, + [4206] = {.lex_state = 71}, [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 70}, + [4208] = {.lex_state = 71}, + [4209] = {.lex_state = 0}, [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 0}, + [4213] = {.lex_state = 71}, [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, [4216] = {.lex_state = 0}, @@ -18115,11 +18300,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 70}, + [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 70}, - [4230] = {.lex_state = 0}, + [4229] = {.lex_state = 0}, + [4230] = {.lex_state = 71}, [4231] = {.lex_state = 0}, [4232] = {.lex_state = 0}, [4233] = {.lex_state = 0}, @@ -18129,9 +18314,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4237] = {.lex_state = 0}, [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 70}, + [4240] = {.lex_state = 71}, + [4241] = {.lex_state = 71}, + [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, @@ -18145,61 +18330,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, + [4256] = {.lex_state = 71}, [4257] = {.lex_state = 0}, [4258] = {.lex_state = 0}, [4259] = {.lex_state = 0}, - [4260] = {.lex_state = 70}, - [4261] = {.lex_state = 70}, + [4260] = {.lex_state = 0}, + [4261] = {.lex_state = 0}, [4262] = {.lex_state = 0}, [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 0}, + [4264] = {.lex_state = 71}, [4265] = {.lex_state = 0}, [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 70}, - [4268] = {.lex_state = 0}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 71}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 80}, + [4271] = {.lex_state = 81}, [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 70}, - [4274] = {.lex_state = 73}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 43}, + [4273] = {.lex_state = 74}, + [4274] = {.lex_state = 71}, + [4275] = {.lex_state = 71}, + [4276] = {.lex_state = 44}, [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, [4279] = {.lex_state = 0}, [4280] = {.lex_state = 0}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 70}, + [4282] = {.lex_state = 71}, [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 70}, - [4287] = {.lex_state = 70}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 70}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 71}, + [4289] = {.lex_state = 71}, [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 70}, + [4291] = {.lex_state = 71}, [4292] = {.lex_state = 0}, [4293] = {.lex_state = 0}, - [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 70}, + [4294] = {.lex_state = 71}, + [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, [4298] = {.lex_state = 0}, [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, + [4300] = {.lex_state = 71}, [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 70}, + [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, [4305] = {.lex_state = 0}, [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 70}, + [4309] = {.lex_state = 71}, + [4310] = {.lex_state = 0}, [4311] = {.lex_state = 0}, [4312] = {.lex_state = 0}, [4313] = {.lex_state = 0}, @@ -18208,47 +18393,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 43}, - [4320] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, + [4320] = {.lex_state = 44}, [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 0}, [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, + [4325] = {.lex_state = 71}, [4326] = {.lex_state = 0}, [4327] = {.lex_state = 0}, [4328] = {.lex_state = 0}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 70}, - [4332] = {.lex_state = 0}, + [4331] = {.lex_state = 0}, + [4332] = {.lex_state = 71}, [4333] = {.lex_state = 0}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, [4336] = {.lex_state = 0}, [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 70}, + [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, + [4340] = {.lex_state = 71}, [4341] = {.lex_state = 0}, [4342] = {.lex_state = 0}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 70}, + [4346] = {.lex_state = 0}, [4347] = {.lex_state = 0}, [4348] = {.lex_state = 0}, [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, - [4352] = {.lex_state = 70}, + [4352] = {.lex_state = 71}, [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 70}, - [4355] = {.lex_state = 70}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 70}, - [4359] = {.lex_state = 0}, + [4354] = {.lex_state = 71}, + [4355] = {.lex_state = 0}, + [4356] = {.lex_state = 71}, + [4357] = {.lex_state = 71}, + [4358] = {.lex_state = 0}, + [4359] = {.lex_state = 71}, [4360] = {.lex_state = 0}, [4361] = {.lex_state = 0}, [4362] = {.lex_state = 0}, @@ -18259,29 +18444,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 70}, + [4370] = {.lex_state = 0}, [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 70}, + [4377] = {.lex_state = 71}, [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 70}, + [4382] = {.lex_state = 71}, [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, [4385] = {.lex_state = 0}, [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 70}, + [4387] = {.lex_state = 71}, + [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, + [4392] = {.lex_state = 71}, [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, @@ -18292,53 +18477,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 70}, - [4405] = {.lex_state = 70}, + [4403] = {.lex_state = 71}, + [4404] = {.lex_state = 0}, + [4405] = {.lex_state = 0}, [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 70}, - [4408] = {.lex_state = 0}, + [4407] = {.lex_state = 0}, + [4408] = {.lex_state = 71}, [4409] = {.lex_state = 0}, [4410] = {.lex_state = 0}, [4411] = {.lex_state = 0}, [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 70}, + [4413] = {.lex_state = 71}, [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 92}, + [4419] = {.lex_state = 93}, + [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, [4422] = {.lex_state = 0}, [4423] = {.lex_state = 0}, [4424] = {.lex_state = 0}, [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 92}, + [4426] = {.lex_state = 0}, [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, + [4428] = {.lex_state = 93}, [4429] = {.lex_state = 0}, [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, + [4433] = {.lex_state = 26}, [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 25}, - [4439] = {.lex_state = 92}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 93}, [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 70}, + [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, + [4443] = {.lex_state = 71}, [4444] = {.lex_state = 0}, [4445] = {.lex_state = 0}, [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 92}, + [4447] = {.lex_state = 0}, [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 0}, + [4449] = {.lex_state = 93}, [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, [4452] = {.lex_state = 0}, @@ -18357,9 +18542,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4465] = {.lex_state = 0}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 92}, + [4468] = {.lex_state = 0}, [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, + [4470] = {.lex_state = 93}, [4471] = {.lex_state = 0}, [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, @@ -18367,29 +18552,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4475] = {.lex_state = 0}, [4476] = {.lex_state = 0}, [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 0}, + [4478] = {.lex_state = 71}, [4479] = {.lex_state = 0}, [4480] = {.lex_state = 0}, [4481] = {.lex_state = 0}, [4482] = {.lex_state = 0}, [4483] = {.lex_state = 0}, [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 0}, + [4485] = {.lex_state = 93}, [4486] = {.lex_state = 0}, [4487] = {.lex_state = 0}, [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 92}, + [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, [4491] = {.lex_state = 0}, [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 92}, + [4493] = {.lex_state = 0}, [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 = 70}, + [4500] = {.lex_state = 0}, [4501] = {.lex_state = 0}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, @@ -18398,19 +18583,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 92}, + [4509] = {.lex_state = 93}, + [4510] = {.lex_state = 0}, [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, + [4512] = {.lex_state = 93}, [4513] = {.lex_state = 0}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 92}, - [4517] = {.lex_state = 70}, - [4518] = {.lex_state = 70}, - [4519] = {.lex_state = 70}, - [4520] = {.lex_state = 0}, - [4521] = {.lex_state = 0}, + [4516] = {.lex_state = 0}, + [4517] = {.lex_state = 0}, + [4518] = {.lex_state = 0}, + [4519] = {.lex_state = 71}, + [4520] = {.lex_state = 71}, + [4521] = {.lex_state = 71}, [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, @@ -18420,34 +18605,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4528] = {.lex_state = 0}, [4529] = {.lex_state = 0}, [4530] = {.lex_state = 0}, - [4531] = {.lex_state = 92}, + [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 70}, + [4533] = {.lex_state = 93}, [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 70}, - [4537] = {.lex_state = 70}, - [4538] = {.lex_state = 70}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 70}, + [4535] = {.lex_state = 71}, + [4536] = {.lex_state = 0}, + [4537] = {.lex_state = 0}, + [4538] = {.lex_state = 71}, + [4539] = {.lex_state = 71}, + [4540] = {.lex_state = 71}, [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, + [4542] = {.lex_state = 71}, [4543] = {.lex_state = 0}, [4544] = {.lex_state = 0}, [4545] = {.lex_state = 0}, [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 92}, + [4547] = {.lex_state = 0}, [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 0}, + [4549] = {.lex_state = 93}, [4550] = {.lex_state = 0}, [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 92}, + [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 0}, - [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 92}, + [4554] = {.lex_state = 93}, + [4555] = {.lex_state = 71}, + [4556] = {.lex_state = 0}, [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 0}, + [4558] = {.lex_state = 93}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, @@ -18455,34 +18640,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4563] = {.lex_state = 0}, [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, + [4566] = {.lex_state = 93}, [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 70}, - [4570] = {.lex_state = 70}, - [4571] = {.lex_state = 0}, + [4568] = {.lex_state = 71}, + [4569] = {.lex_state = 71}, + [4570] = {.lex_state = 0}, + [4571] = {.lex_state = 71}, [4572] = {.lex_state = 0}, [4573] = {.lex_state = 0}, [4574] = {.lex_state = 0}, [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 43}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 70}, + [4576] = {.lex_state = 0}, + [4577] = {.lex_state = 26}, + [4578] = {.lex_state = 44}, [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 25}, + [4580] = {.lex_state = 71}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, [4583] = {.lex_state = 0}, [4584] = {.lex_state = 0}, [4585] = {.lex_state = 0}, [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 92}, - [4588] = {.lex_state = 0}, + [4587] = {.lex_state = 0}, + [4588] = {.lex_state = 93}, [4589] = {.lex_state = 0}, [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 92}, + [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, + [4593] = {.lex_state = 93}, [4594] = {.lex_state = 0}, [4595] = {.lex_state = 0}, [4596] = {.lex_state = 0}, @@ -18491,10 +18676,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4599] = {.lex_state = 0}, [4600] = {.lex_state = 0}, [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 70}, + [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, + [4605] = {.lex_state = 71}, [4606] = {.lex_state = 0}, [4607] = {.lex_state = 0}, [4608] = {.lex_state = 0}, @@ -18513,19 +18698,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4621] = {.lex_state = 0}, [4622] = {.lex_state = 0}, [4623] = {.lex_state = 0}, - [4624] = {.lex_state = 194}, + [4624] = {.lex_state = 0}, [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, + [4626] = {.lex_state = 194}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 70}, + [4631] = {.lex_state = 0}, [4632] = {.lex_state = 0}, [4633] = {.lex_state = 0}, [4634] = {.lex_state = 0}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 25}, + [4636] = {.lex_state = 0}, [4637] = {.lex_state = 0}, [4638] = {.lex_state = 0}, [4639] = {.lex_state = 0}, @@ -18533,7 +18718,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, + [4644] = {.lex_state = 26}, [4645] = {.lex_state = 0}, [4646] = {.lex_state = 0}, [4647] = {.lex_state = 0}, @@ -18542,11 +18727,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4650] = {.lex_state = 0}, [4651] = {.lex_state = 0}, [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 194}, + [4653] = {.lex_state = 0}, [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 70}, + [4655] = {.lex_state = 194}, [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, + [4657] = {.lex_state = 71}, [4658] = {.lex_state = 0}, [4659] = {.lex_state = 0}, [4660] = {.lex_state = 0}, @@ -18558,27 +18743,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4666] = {.lex_state = 0}, [4667] = {.lex_state = 0}, [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 70}, + [4669] = {.lex_state = 0}, [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 93}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 0}, + [4671] = {.lex_state = 71}, + [4672] = {.lex_state = 71}, + [4673] = {.lex_state = 94}, [4674] = {.lex_state = 0}, [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 70}, + [4676] = {.lex_state = 0}, [4677] = {.lex_state = 0}, [4678] = {.lex_state = 0}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, [4681] = {.lex_state = 0}, [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 185}, + [4683] = {.lex_state = 0}, [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 0}, + [4685] = {.lex_state = 185}, [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 93}, + [4687] = {.lex_state = 0}, [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 70}, + [4689] = {.lex_state = 94}, [4690] = {.lex_state = 0}, [4691] = {.lex_state = 0}, [4692] = {.lex_state = 0}, @@ -18586,24 +18771,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4694] = {.lex_state = 0}, [4695] = {.lex_state = 0}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 70}, - [4698] = {.lex_state = 70}, - [4699] = {.lex_state = 70}, - [4700] = {.lex_state = 70}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 70}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 71}, + [4699] = {.lex_state = 71}, + [4700] = {.lex_state = 71}, + [4701] = {.lex_state = 71}, + [4702] = {.lex_state = 0}, [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, + [4704] = {.lex_state = 71}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 70}, + [4707] = {.lex_state = 0}, [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, + [4709] = {.lex_state = 71}, [4710] = {.lex_state = 0}, [4711] = {.lex_state = 0}, - [4712] = {(TSStateId)(-1)}, - [4713] = {(TSStateId)(-1)}, + [4712] = {.lex_state = 0}, + [4713] = {.lex_state = 0}, [4714] = {(TSStateId)(-1)}, + [4715] = {(TSStateId)(-1)}, + [4716] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18740,110 +18927,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACK] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4665), + [sym_source_file] = STATE(4667), [sym_shebang] = STATE(2), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(12), - [sym_import_declaration] = STATE(1919), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym_import_list] = STATE(5), + [sym_import_declaration] = STATE(1920), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3479), - [sym_attribute] = STATE(3430), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3480), + [sym_attribute] = STATE(3407), [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_import_list_repeat1] = STATE(1784), - [aux_sym_attributes_repeat1] = STATE(3448), + [aux_sym_import_list_repeat1] = STATE(1805), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_POUND_BANG] = ACTIONS(11), @@ -18921,104 +19108,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = STATE(2), [sym_module_clause] = STATE(3), [sym_import_list] = STATE(9), - [sym_import_declaration] = STATE(1919), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym_import_declaration] = STATE(1920), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3479), - [sym_attribute] = STATE(3430), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3480), + [sym_attribute] = STATE(3407), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_import_list_repeat1] = STATE(1784), - [aux_sym_attributes_repeat1] = STATE(3448), + [aux_sym_import_list_repeat1] = STATE(1805), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19094,104 +19281,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [sym_import_list] = STATE(8), - [sym_import_declaration] = STATE(1919), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym_import_declaration] = STATE(1920), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1784), - [aux_sym_attributes_repeat1] = STATE(3448), + [aux_sym_import_list_repeat1] = STATE(1805), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19266,104 +19453,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [sym_import_list] = STATE(9), - [sym_import_declaration] = STATE(1919), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym_import_declaration] = STATE(1920), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_import_list_repeat1] = STATE(1784), - [aux_sym_attributes_repeat1] = STATE(3448), + [aux_sym_import_list_repeat1] = STATE(1805), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19437,271 +19624,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(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), - [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), - [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), - [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym___global] = ACTIONS(150), - [anon_sym_type] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(159), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_struct] = ACTIONS(165), - [anon_sym_union] = ACTIONS(168), - [anon_sym_pub] = ACTIONS(171), - [anon_sym_mut] = ACTIONS(174), - [anon_sym_enum] = ACTIONS(177), - [anon_sym_interface] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_go] = ACTIONS(189), - [anon_sym_spawn] = ACTIONS(192), - [anon_sym_json_DOTdecode] = ACTIONS(195), - [anon_sym_LBRACK2] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_CARET] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(204), - [sym_none] = ACTIONS(207), - [sym_true] = ACTIONS(207), - [sym_false] = ACTIONS(207), - [sym_nil] = ACTIONS(207), - [anon_sym_if] = ACTIONS(210), - [anon_sym_DOLLARif] = ACTIONS(213), - [anon_sym_match] = ACTIONS(216), - [anon_sym_select] = ACTIONS(219), - [anon_sym_lock] = ACTIONS(222), - [anon_sym_rlock] = ACTIONS(222), - [anon_sym_unsafe] = ACTIONS(225), - [anon_sym_sql] = ACTIONS(228), - [sym_int_literal] = ACTIONS(207), - [sym_float_literal] = ACTIONS(231), - [sym_rune_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_c_SQUOTE] = ACTIONS(240), - [anon_sym_c_DQUOTE] = ACTIONS(243), - [anon_sym_r_SQUOTE] = ACTIONS(246), - [anon_sym_r_DQUOTE] = ACTIONS(249), - [sym_pseudo_compile_time_identifier] = ACTIONS(252), - [anon_sym_shared] = ACTIONS(255), - [anon_sym_map_LBRACK] = ACTIONS(258), - [anon_sym_chan] = ACTIONS(261), - [anon_sym_thread] = ACTIONS(264), - [anon_sym_atomic] = ACTIONS(267), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_defer] = ACTIONS(273), - [anon_sym_goto] = ACTIONS(276), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_return] = ACTIONS(285), - [anon_sym_DOLLARfor] = ACTIONS(288), - [anon_sym_for] = ACTIONS(291), - [anon_sym_POUND] = ACTIONS(294), - [anon_sym_asm] = ACTIONS(297), - [anon_sym_AT_LBRACK] = ACTIONS(300), - }, - [6] = { - [sym_line_comment] = STATE(6), - [sym_block_comment] = STATE(6), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(303), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19770,106 +19789,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [7] = { - [sym_line_comment] = STATE(7), - [sym_block_comment] = STATE(7), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [6] = { + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(305), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19938,106 +19957,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [8] = { - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [7] = { + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(305), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(135), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20106,106 +20125,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [9] = { - [sym_line_comment] = STATE(9), - [sym_block_comment] = STATE(9), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [8] = { + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(135), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20274,105 +20293,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [10] = { - [sym_line_comment] = STATE(10), - [sym_block_comment] = STATE(10), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [9] = { + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3448), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -20442,106 +20461,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [11] = { - [sym_line_comment] = STATE(11), - [sym_block_comment] = STATE(11), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [10] = { + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3448), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20610,105 +20629,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [12] = { - [sym_line_comment] = STATE(12), - [sym_block_comment] = STATE(12), - [sym_const_declaration] = STATE(1785), - [sym_global_var_declaration] = STATE(1785), - [sym_type_declaration] = STATE(1785), - [sym_function_declaration] = STATE(1785), - [sym_static_method_declaration] = STATE(1785), - [sym_struct_declaration] = STATE(1785), - [sym_enum_declaration] = STATE(1785), - [sym_interface_declaration] = STATE(1785), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [11] = { + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_visibility_modifiers] = STATE(3524), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1785), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), - [sym_attributes] = STATE(3484), - [sym_attribute] = STATE(3430), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3448), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3449), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -20778,92 +20797,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, + [12] = { + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [sym_const_declaration] = STATE(1788), + [sym_global_var_declaration] = STATE(1788), + [sym_type_declaration] = STATE(1788), + [sym_function_declaration] = STATE(1788), + [sym_static_method_declaration] = STATE(1788), + [sym_struct_declaration] = STATE(1788), + [sym_enum_declaration] = STATE(1788), + [sym_interface_declaration] = STATE(1788), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), + [sym_literal] = STATE(446), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_visibility_modifiers] = STATE(3616), + [sym_mutability_modifiers] = STATE(932), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1788), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), + [sym_label_definition] = STATE(13), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), + [sym_attributes] = STATE(3487), + [sym_attribute] = STATE(3407), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3449), + [ts_builtin_sym_end] = ACTIONS(137), + [sym_identifier] = ACTIONS(139), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(142), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym___global] = ACTIONS(154), + [anon_sym_type] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_struct] = ACTIONS(169), + [anon_sym_union] = ACTIONS(172), + [anon_sym_pub] = ACTIONS(175), + [anon_sym_mut] = ACTIONS(178), + [anon_sym_enum] = ACTIONS(181), + [anon_sym_interface] = ACTIONS(184), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(190), + [anon_sym_go] = ACTIONS(193), + [anon_sym_spawn] = ACTIONS(196), + [anon_sym_json_DOTdecode] = ACTIONS(199), + [anon_sym_LBRACK2] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_LT_DASH] = ACTIONS(208), + [sym_none] = ACTIONS(211), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_nil] = ACTIONS(211), + [anon_sym_if] = ACTIONS(214), + [anon_sym_DOLLARif] = ACTIONS(217), + [anon_sym_match] = ACTIONS(220), + [anon_sym_select] = ACTIONS(223), + [anon_sym_lock] = ACTIONS(226), + [anon_sym_rlock] = ACTIONS(226), + [anon_sym_unsafe] = ACTIONS(229), + [anon_sym_sql] = ACTIONS(232), + [sym_int_literal] = ACTIONS(211), + [sym_float_literal] = ACTIONS(235), + [sym_rune_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(241), + [anon_sym_c_SQUOTE] = ACTIONS(244), + [anon_sym_c_DQUOTE] = ACTIONS(247), + [anon_sym_r_SQUOTE] = ACTIONS(250), + [anon_sym_r_DQUOTE] = ACTIONS(253), + [sym_pseudo_compile_time_identifier] = ACTIONS(256), + [anon_sym_shared] = ACTIONS(259), + [anon_sym_map_LBRACK] = ACTIONS(262), + [anon_sym_chan] = ACTIONS(265), + [anon_sym_thread] = ACTIONS(268), + [anon_sym_atomic] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(274), + [anon_sym_defer] = ACTIONS(277), + [anon_sym_goto] = ACTIONS(280), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(286), + [anon_sym_return] = ACTIONS(289), + [anon_sym_DOLLARfor] = ACTIONS(292), + [anon_sym_for] = ACTIONS(295), + [anon_sym_POUND] = ACTIONS(298), + [anon_sym_asm] = ACTIONS(301), + [anon_sym_AT_LBRACK] = ACTIONS(304), + }, [13] = { [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym__expression] = STATE(243), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_strictly_expression_list] = STATE(1790), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_strictly_expression_list] = STATE(1796), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), [sym_mutability_modifiers] = STATE(932), - [sym_mutable_expression] = STATE(3391), - [sym_expression_list] = STATE(3415), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1781), - [sym_simple_statement] = STATE(1796), - [sym_assert_statement] = STATE(1796), - [sym_append_statement] = STATE(1796), - [sym_send_statement] = STATE(1796), - [sym_var_declaration] = STATE(1790), - [sym_assignment_statement] = STATE(1790), - [sym_block] = STATE(1796), - [sym_defer_statement] = STATE(1796), - [sym_goto_statement] = STATE(1796), - [sym_break_statement] = STATE(1796), - [sym_continue_statement] = STATE(1796), - [sym_return_statement] = STATE(1796), + [sym_mutable_expression] = STATE(3390), + [sym_expression_list] = STATE(3404), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1782), + [sym_simple_statement] = STATE(1804), + [sym_assert_statement] = STATE(1804), + [sym_append_statement] = STATE(1804), + [sym_send_statement] = STATE(1804), + [sym_var_declaration] = STATE(1796), + [sym_assignment_statement] = STATE(1796), + [sym_block] = STATE(1804), + [sym_defer_statement] = STATE(1804), + [sym_goto_statement] = STATE(1804), + [sym_break_statement] = STATE(1804), + [sym_continue_statement] = STATE(1804), + [sym_return_statement] = STATE(1804), [sym_label_definition] = STATE(13), - [sym_labeled_statement] = STATE(1796), - [sym_compile_time_for_statement] = STATE(1796), - [sym_for_statement] = STATE(1796), - [sym_hash_statement] = STATE(1796), - [sym_asm_statement] = STATE(1796), + [sym_labeled_statement] = STATE(1804), + [sym_compile_time_for_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_hash_statement] = STATE(1804), + [sym_asm_statement] = STATE(1804), [ts_builtin_sym_end] = ACTIONS(307), [sym_identifier] = ACTIONS(9), [anon_sym_LF] = ACTIONS(309), @@ -20940,88 +21127,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1939), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1935), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), [sym_identifier] = ACTIONS(353), [anon_sym_LF] = ACTIONS(309), [anon_sym_CR] = ACTIONS(309), @@ -21090,92 +21277,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(42), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(46), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21240,92 +21427,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(55), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(56), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21390,92 +21577,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(309), - [aux_sym_block_repeat1] = STATE(52), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21540,92 +21727,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(45), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(54), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21690,92 +21877,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(71), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(78), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21840,92 +22027,92 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(71), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(82), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21990,98 +22177,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(324), - [aux_sym_block_repeat1] = STATE(52), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22140,98 +22327,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(42), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(304), + [aux_sym_block_repeat1] = STATE(45), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22290,98 +22477,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(56), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(46), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22440,98 +22627,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(67), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22590,98 +22777,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(64), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(56), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(487), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22740,98 +22927,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(86), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(43), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -22890,98 +23077,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(56), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(84), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(491), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23040,98 +23227,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(66), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(78), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23190,98 +23377,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(284), - [aux_sym_block_repeat1] = STATE(81), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(54), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(495), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23340,98 +23527,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(71), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(43), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23490,98 +23677,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(71), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(323), + [aux_sym_block_repeat1] = STATE(75), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(499), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23640,98 +23827,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(86), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(49), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23790,98 +23977,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(45), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(85), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(503), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -23940,98 +24127,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(51), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(69), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24090,98 +24277,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(44), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(277), + [aux_sym_block_repeat1] = STATE(45), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24240,98 +24427,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(78), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(304), + [aux_sym_block_repeat1] = STATE(75), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(499), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24390,98 +24577,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(66), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(56), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(473), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24540,98 +24727,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(309), - [aux_sym_block_repeat1] = STATE(81), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(53), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24690,98 +24877,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(84), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(48), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24840,98 +25027,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(84), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -24990,98 +25177,98 @@ 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(895), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(894), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_block_repeat1] = STATE(42), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_block_repeat1] = STATE(69), [sym_identifier] = ACTIONS(433), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -25141,89 +25328,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(48), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25289,89 +25476,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25437,89 +25624,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(82), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25585,89 +25772,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25733,89 +25920,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(43), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25881,89 +26068,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(51), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(56), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26029,89 +26216,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(83), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26177,89 +26364,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(44), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26325,89 +26512,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(66), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26473,89 +26660,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(88), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26621,89 +26808,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(72), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26769,89 +26956,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26917,89 +27104,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(59), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27065,89 +27252,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27213,89 +27400,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27361,89 +27548,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(42), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(53), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27509,89 +27696,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(55), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(79), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27657,89 +27844,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(45), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27805,89 +27992,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(53), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(54), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27953,89 +28140,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(56), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28101,89 +28288,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(74), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28249,89 +28436,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(62), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28397,89 +28584,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(84), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28545,88 +28732,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), [aux_sym_block_repeat1] = STATE(70), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -28693,89 +28880,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(49), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28841,89 +29028,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(61), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28989,89 +29176,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(71), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(78), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -29137,243 +29324,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), - [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(569), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(583), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(604), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(610), - [anon_sym_LBRACK2] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(616), - [anon_sym_LT_DASH] = ACTIONS(619), - [sym_none] = ACTIONS(622), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_nil] = ACTIONS(622), - [anon_sym_if] = ACTIONS(625), - [anon_sym_DOLLARif] = ACTIONS(628), - [anon_sym_match] = ACTIONS(631), - [anon_sym_select] = ACTIONS(634), - [anon_sym_lock] = ACTIONS(637), - [anon_sym_rlock] = ACTIONS(637), - [anon_sym_unsafe] = ACTIONS(640), - [anon_sym_sql] = ACTIONS(643), - [sym_int_literal] = ACTIONS(622), - [sym_float_literal] = ACTIONS(646), - [sym_rune_literal] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_c_SQUOTE] = ACTIONS(655), - [anon_sym_c_DQUOTE] = ACTIONS(658), - [anon_sym_r_SQUOTE] = ACTIONS(661), - [anon_sym_r_DQUOTE] = ACTIONS(664), - [sym_pseudo_compile_time_identifier] = ACTIONS(667), - [anon_sym_shared] = ACTIONS(670), - [anon_sym_map_LBRACK] = ACTIONS(673), - [anon_sym_chan] = ACTIONS(676), - [anon_sym_thread] = ACTIONS(679), - [anon_sym_atomic] = ACTIONS(682), - [anon_sym_assert] = ACTIONS(685), - [anon_sym_defer] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(691), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_return] = ACTIONS(700), - [anon_sym_DOLLARfor] = ACTIONS(703), - [anon_sym_for] = ACTIONS(706), - [anon_sym_POUND] = ACTIONS(709), - [anon_sym_asm] = ACTIONS(712), - }, - [70] = { - [sym_line_comment] = STATE(70), - [sym_block_comment] = STATE(70), - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(569), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -29429,99 +29468,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [71] = { - [sym_line_comment] = STATE(71), - [sym_block_comment] = STATE(71), + [70] = { + [sym_line_comment] = STATE(70), + [sym_block_comment] = STATE(70), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -29577,99 +29616,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [72] = { - [sym_line_comment] = STATE(72), - [sym_block_comment] = STATE(72), + [71] = { + [sym_line_comment] = STATE(71), + [sym_block_comment] = STATE(71), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(63), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(75), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(573), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -29725,99 +29764,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [73] = { - [sym_line_comment] = STATE(73), - [sym_block_comment] = STATE(73), + [72] = { + [sym_line_comment] = STATE(72), + [sym_block_comment] = STATE(72), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(67), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -29873,99 +29912,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [74] = { - [sym_line_comment] = STATE(74), - [sym_block_comment] = STATE(74), + [73] = { + [sym_line_comment] = STATE(73), + [sym_block_comment] = STATE(73), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(46), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(577), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30021,99 +30060,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [75] = { - [sym_line_comment] = STATE(75), - [sym_block_comment] = STATE(75), + [74] = { + [sym_line_comment] = STATE(74), + [sym_block_comment] = STATE(74), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(84), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(50), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(579), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30169,99 +30208,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [76] = { - [sym_line_comment] = STATE(76), - [sym_block_comment] = STATE(76), + [75] = { + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(86), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(581), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30317,99 +30356,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [77] = { - [sym_line_comment] = STATE(77), - [sym_block_comment] = STATE(77), + [76] = { + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(82), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(87), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30465,99 +30504,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [78] = { - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), + [77] = { + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(43), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30613,99 +30652,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [79] = { - [sym_line_comment] = STATE(79), - [sym_block_comment] = STATE(79), + [78] = { + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(52), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30761,99 +30800,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [80] = { - [sym_line_comment] = STATE(80), - [sym_block_comment] = STATE(80), + [79] = { + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(64), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -30909,99 +30948,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, - [81] = { - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), + [80] = { + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), [aux_sym_block_repeat1] = STATE(69), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(439), [anon_sym_fn] = ACTIONS(361), [anon_sym_PLUS] = ACTIONS(441), @@ -31057,93 +31096,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(469), [anon_sym_asm] = ACTIONS(431), }, + [81] = { + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), + [sym_label_definition] = STATE(14), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(593), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_go] = ACTIONS(628), + [anon_sym_spawn] = ACTIONS(631), + [anon_sym_json_DOTdecode] = ACTIONS(634), + [anon_sym_LBRACK2] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(643), + [sym_none] = ACTIONS(646), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_nil] = ACTIONS(646), + [anon_sym_if] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(652), + [anon_sym_match] = ACTIONS(655), + [anon_sym_select] = ACTIONS(658), + [anon_sym_lock] = ACTIONS(661), + [anon_sym_rlock] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_sql] = ACTIONS(667), + [sym_int_literal] = ACTIONS(646), + [sym_float_literal] = ACTIONS(670), + [sym_rune_literal] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_c_SQUOTE] = ACTIONS(679), + [anon_sym_c_DQUOTE] = ACTIONS(682), + [anon_sym_r_SQUOTE] = ACTIONS(685), + [anon_sym_r_DQUOTE] = ACTIONS(688), + [sym_pseudo_compile_time_identifier] = ACTIONS(691), + [anon_sym_shared] = ACTIONS(694), + [anon_sym_map_LBRACK] = ACTIONS(697), + [anon_sym_chan] = ACTIONS(700), + [anon_sym_thread] = ACTIONS(703), + [anon_sym_atomic] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(709), + [anon_sym_defer] = ACTIONS(712), + [anon_sym_goto] = ACTIONS(715), + [anon_sym_break] = ACTIONS(718), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_return] = ACTIONS(724), + [anon_sym_DOLLARfor] = ACTIONS(727), + [anon_sym_for] = ACTIONS(730), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_asm] = ACTIONS(736), + }, [82] = { [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31209,89 +31396,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31357,89 +31544,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31505,89 +31692,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(78), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31653,89 +31840,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(69), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(85), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31801,89 +31988,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), - [aux_sym_block_repeat1] = STATE(45), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), + [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31949,88 +32136,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_strictly_expression_list] = STATE(1951), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_strictly_expression_list] = STATE(1933), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3401), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__statement] = STATE(1950), - [sym_simple_statement] = STATE(1934), - [sym_assert_statement] = STATE(1934), - [sym_append_statement] = STATE(1934), - [sym_send_statement] = STATE(1934), - [sym_var_declaration] = STATE(1951), - [sym_assignment_statement] = STATE(1951), - [sym_block] = STATE(1934), - [sym_defer_statement] = STATE(1934), - [sym_goto_statement] = STATE(1934), - [sym_break_statement] = STATE(1934), - [sym_continue_statement] = STATE(1934), - [sym_return_statement] = STATE(1934), + [sym_mutability_modifiers] = STATE(788), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1932), + [sym_simple_statement] = STATE(1950), + [sym_assert_statement] = STATE(1950), + [sym_append_statement] = STATE(1950), + [sym_send_statement] = STATE(1950), + [sym_var_declaration] = STATE(1933), + [sym_assignment_statement] = STATE(1933), + [sym_block] = STATE(1950), + [sym_defer_statement] = STATE(1950), + [sym_goto_statement] = STATE(1950), + [sym_break_statement] = STATE(1950), + [sym_continue_statement] = STATE(1950), + [sym_return_statement] = STATE(1950), [sym_label_definition] = STATE(14), - [sym_labeled_statement] = STATE(1934), - [sym_compile_time_for_statement] = STATE(1934), - [sym_for_statement] = STATE(1934), - [sym_hash_statement] = STATE(1934), - [sym_asm_statement] = STATE(1934), + [sym_labeled_statement] = STATE(1950), + [sym_compile_time_for_statement] = STATE(1950), + [sym_for_statement] = STATE(1950), + [sym_hash_statement] = STATE(1950), + [sym_asm_statement] = STATE(1950), [aux_sym_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(353), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -32097,68 +32284,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), [sym__expression] = STATE(1119), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(621), - [sym_mutable_expression] = STATE(1720), - [sym_expression_list] = STATE(1870), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_mutable_expression] = STATE(1715), + [sym_expression_list] = STATE(1892), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [ts_builtin_sym_end] = ACTIONS(753), [sym_identifier] = ACTIONS(755), [anon_sym_LF] = ACTIONS(757), @@ -32234,26 +32421,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [90] = { [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [sym_reference_expression] = STATE(4524), - [sym_type_reference_expression] = STATE(292), - [sym_plain_type] = STATE(515), - [sym__plain_type_without_special] = STATE(428), - [sym_anon_struct_type] = STATE(440), - [sym_multi_return_type] = STATE(428), - [sym_result_type] = STATE(428), - [sym_option_type] = STATE(428), - [sym_qualified_type] = STATE(292), - [sym_fixed_array_type] = STATE(440), - [sym_array_type] = STATE(440), - [sym_pointer_type] = STATE(440), - [sym_wrong_pointer_type] = STATE(440), - [sym_map_type] = STATE(440), - [sym_channel_type] = STATE(440), - [sym_shared_type] = STATE(440), - [sym_thread_type] = STATE(440), - [sym_atomic_type] = STATE(440), - [sym_generic_type] = STATE(440), - [sym_function_type] = STATE(440), + [sym_reference_expression] = STATE(4523), + [sym_type_reference_expression] = STATE(291), + [sym_plain_type] = STATE(493), + [sym__plain_type_without_special] = STATE(429), + [sym_anon_struct_type] = STATE(442), + [sym_multi_return_type] = STATE(429), + [sym_result_type] = STATE(429), + [sym_option_type] = STATE(429), + [sym_qualified_type] = STATE(291), + [sym_fixed_array_type] = STATE(442), + [sym_array_type] = STATE(442), + [sym_pointer_type] = STATE(442), + [sym_wrong_pointer_type] = STATE(442), + [sym_map_type] = STATE(442), + [sym_channel_type] = STATE(442), + [sym_shared_type] = STATE(442), + [sym_thread_type] = STATE(442), + [sym_atomic_type] = STATE(442), + [sym_generic_type] = STATE(442), + [sym_function_type] = STATE(442), [ts_builtin_sym_end] = ACTIONS(817), [sym_identifier] = ACTIONS(819), [anon_sym_LF] = ACTIONS(821), @@ -32370,26 +32557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [91] = { [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [ts_builtin_sym_end] = ACTIONS(849), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), @@ -32506,477 +32693,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [92] = { [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_reference_expression] = STATE(4523), + [sym_type_reference_expression] = STATE(291), + [sym_plain_type] = STATE(514), + [sym__plain_type_without_special] = STATE(429), + [sym_anon_struct_type] = STATE(442), + [sym_multi_return_type] = STATE(429), + [sym_result_type] = STATE(429), + [sym_option_type] = STATE(429), + [sym_qualified_type] = STATE(291), + [sym_fixed_array_type] = STATE(442), + [sym_array_type] = STATE(442), + [sym_pointer_type] = STATE(442), + [sym_wrong_pointer_type] = STATE(442), + [sym_map_type] = STATE(442), + [sym_channel_type] = STATE(442), + [sym_shared_type] = STATE(442), + [sym_thread_type] = STATE(442), + [sym_atomic_type] = STATE(442), + [sym_generic_type] = STATE(442), + [sym_function_type] = STATE(442), [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_const] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym___global] = ACTIONS(857), - [anon_sym_type] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_union] = ACTIONS(857), - [anon_sym_pub] = ACTIONS(857), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), - [anon_sym_json_DOTdecode] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(857), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_STAR_EQ] = ACTIONS(857), - [anon_sym_SLASH_EQ] = ACTIONS(857), - [anon_sym_PERCENT_EQ] = ACTIONS(857), - [anon_sym_LT_LT_EQ] = ACTIONS(857), - [anon_sym_GT_GT_EQ] = ACTIONS(857), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(857), - [anon_sym_AMP_EQ] = ACTIONS(857), - [anon_sym_AMP_CARET_EQ] = ACTIONS(857), - [anon_sym_PLUS_EQ] = ACTIONS(857), - [anon_sym_DASH_EQ] = ACTIONS(857), - [anon_sym_PIPE_EQ] = ACTIONS(857), - [anon_sym_CARET_EQ] = ACTIONS(857), - [anon_sym_COLON_EQ] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_c_SQUOTE] = ACTIONS(857), - [anon_sym_c_DQUOTE] = ACTIONS(857), - [anon_sym_r_SQUOTE] = ACTIONS(857), - [anon_sym_r_DQUOTE] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_goto] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_DOLLARfor] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(857), - [anon_sym_asm] = ACTIONS(857), - [anon_sym_AT_LBRACK] = ACTIONS(857), - }, - [93] = { - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [sym_reference_expression] = STATE(4524), - [sym_type_reference_expression] = STATE(292), - [sym_plain_type] = STATE(485), - [sym__plain_type_without_special] = STATE(428), - [sym_anon_struct_type] = STATE(440), - [sym_multi_return_type] = STATE(428), - [sym_result_type] = STATE(428), - [sym_option_type] = STATE(428), - [sym_qualified_type] = STATE(292), - [sym_fixed_array_type] = STATE(440), - [sym_array_type] = STATE(440), - [sym_pointer_type] = STATE(440), - [sym_wrong_pointer_type] = STATE(440), - [sym_map_type] = STATE(440), - [sym_channel_type] = STATE(440), - [sym_shared_type] = STATE(440), - [sym_thread_type] = STATE(440), - [sym_atomic_type] = STATE(440), - [sym_generic_type] = STATE(440), - [sym_function_type] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(875), [sym_identifier] = ACTIONS(819), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_const] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym___global] = ACTIONS(877), - [anon_sym_type] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym___global] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), [anon_sym_fn] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), [anon_sym_struct] = ACTIONS(829), - [anon_sym_union] = ACTIONS(877), - [anon_sym_pub] = ACTIONS(877), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_union] = ACTIONS(855), + [anon_sym_pub] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_interface] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), [anon_sym_QMARK] = ACTIONS(831), [anon_sym_BANG] = ACTIONS(833), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_PERCENT_EQ] = ACTIONS(877), - [anon_sym_LT_LT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(877), - [anon_sym_AMP_EQ] = ACTIONS(877), - [anon_sym_AMP_CARET_EQ] = ACTIONS(877), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_PIPE_EQ] = ACTIONS(877), - [anon_sym_CARET_EQ] = ACTIONS(877), - [anon_sym_COLON_EQ] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), + [anon_sym_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_STAR_EQ] = ACTIONS(855), + [anon_sym_SLASH_EQ] = ACTIONS(855), + [anon_sym_PERCENT_EQ] = ACTIONS(855), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_GT_GT_EQ] = ACTIONS(855), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(855), + [anon_sym_AMP_EQ] = ACTIONS(855), + [anon_sym_AMP_CARET_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(855), + [anon_sym_PIPE_EQ] = ACTIONS(855), + [anon_sym_CARET_EQ] = ACTIONS(855), + [anon_sym_COLON_EQ] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(839), [anon_sym_map_LBRACK] = ACTIONS(841), [anon_sym_chan] = ACTIONS(843), [anon_sym_thread] = ACTIONS(845), [anon_sym_atomic] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - [anon_sym_AT_LBRACK] = ACTIONS(877), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + [anon_sym_AT_LBRACK] = ACTIONS(855), }, - [94] = { - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [sym_reference_expression] = STATE(4524), - [sym_type_reference_expression] = STATE(292), - [sym_plain_type] = STATE(523), - [sym__plain_type_without_special] = STATE(428), - [sym_anon_struct_type] = STATE(440), - [sym_multi_return_type] = STATE(428), - [sym_result_type] = STATE(428), - [sym_option_type] = STATE(428), - [sym_qualified_type] = STATE(292), - [sym_fixed_array_type] = STATE(440), - [sym_array_type] = STATE(440), - [sym_pointer_type] = STATE(440), - [sym_wrong_pointer_type] = STATE(440), - [sym_map_type] = STATE(440), - [sym_channel_type] = STATE(440), - [sym_shared_type] = STATE(440), - [sym_thread_type] = STATE(440), - [sym_atomic_type] = STATE(440), - [sym_generic_type] = STATE(440), - [sym_function_type] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(879), + [93] = { + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_reference_expression] = STATE(4523), + [sym_type_reference_expression] = STATE(291), + [sym_plain_type] = STATE(528), + [sym__plain_type_without_special] = STATE(429), + [sym_anon_struct_type] = STATE(442), + [sym_multi_return_type] = STATE(429), + [sym_result_type] = STATE(429), + [sym_option_type] = STATE(429), + [sym_qualified_type] = STATE(291), + [sym_fixed_array_type] = STATE(442), + [sym_array_type] = STATE(442), + [sym_pointer_type] = STATE(442), + [sym_wrong_pointer_type] = STATE(442), + [sym_map_type] = STATE(442), + [sym_channel_type] = STATE(442), + [sym_shared_type] = STATE(442), + [sym_thread_type] = STATE(442), + [sym_atomic_type] = STATE(442), + [sym_generic_type] = STATE(442), + [sym_function_type] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(857), [sym_identifier] = ACTIONS(819), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_const] = ACTIONS(881), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(881), - [anon_sym___global] = ACTIONS(881), - [anon_sym_type] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym___global] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), [anon_sym_fn] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), [anon_sym_struct] = ACTIONS(829), - [anon_sym_union] = ACTIONS(881), - [anon_sym_pub] = ACTIONS(881), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_union] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_interface] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), [anon_sym_QMARK] = ACTIONS(831), [anon_sym_BANG] = ACTIONS(833), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_STAR_EQ] = ACTIONS(881), - [anon_sym_SLASH_EQ] = ACTIONS(881), - [anon_sym_PERCENT_EQ] = ACTIONS(881), - [anon_sym_LT_LT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(881), - [anon_sym_AMP_EQ] = ACTIONS(881), - [anon_sym_AMP_CARET_EQ] = ACTIONS(881), - [anon_sym_PLUS_EQ] = ACTIONS(881), - [anon_sym_DASH_EQ] = ACTIONS(881), - [anon_sym_PIPE_EQ] = ACTIONS(881), - [anon_sym_CARET_EQ] = ACTIONS(881), - [anon_sym_COLON_EQ] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), + [anon_sym_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_PERCENT_EQ] = ACTIONS(859), + [anon_sym_LT_LT_EQ] = ACTIONS(859), + [anon_sym_GT_GT_EQ] = ACTIONS(859), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(859), + [anon_sym_AMP_EQ] = ACTIONS(859), + [anon_sym_AMP_CARET_EQ] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_PIPE_EQ] = ACTIONS(859), + [anon_sym_CARET_EQ] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), [anon_sym_shared] = ACTIONS(839), [anon_sym_map_LBRACK] = ACTIONS(841), [anon_sym_chan] = ACTIONS(843), [anon_sym_thread] = ACTIONS(845), [anon_sym_atomic] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), - [anon_sym_AT_LBRACK] = ACTIONS(881), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), + [anon_sym_AT_LBRACK] = ACTIONS(859), + }, + [94] = { + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(865), + [anon_sym___global] = ACTIONS(865), + [anon_sym_type] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_union] = ACTIONS(865), + [anon_sym_pub] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(865), + [anon_sym_interface] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_AMP_CARET_EQ] = ACTIONS(865), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + [sym_rune_literal] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_c_SQUOTE] = ACTIONS(865), + [anon_sym_c_DQUOTE] = ACTIONS(865), + [anon_sym_r_SQUOTE] = ACTIONS(865), + [anon_sym_r_DQUOTE] = ACTIONS(865), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(865), + [anon_sym_defer] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_DOLLARfor] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_asm] = ACTIONS(865), + [anon_sym_AT_LBRACK] = ACTIONS(865), }, [95] = { [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), [sym__expression] = STATE(1264), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(618), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(619), [sym_mutable_expression] = STATE(1926), - [sym_expression_list] = STATE(1941), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_expression_list] = STATE(1939), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_LF] = ACTIONS(757), [anon_sym_CR] = ACTIONS(757), @@ -33045,156 +33232,1456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [96] = { [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [sym_reference_expression] = STATE(4499), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4649), + [sym_short_element_list] = STATE(4647), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [97] = { + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4641), + [sym_short_element_list] = STATE(4640), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [98] = { + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4525), + [sym_short_element_list] = STATE(4526), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [99] = { + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym_reference_expression] = STATE(4500), [sym_type_reference_expression] = STATE(1003), - [sym_plain_type] = STATE(1090), + [sym_plain_type] = STATE(1084), [sym__plain_type_without_special] = STATE(1005), - [sym_anon_struct_type] = STATE(1039), + [sym_anon_struct_type] = STATE(1059), [sym_multi_return_type] = STATE(1005), [sym_result_type] = STATE(1005), [sym_option_type] = STATE(1005), [sym_qualified_type] = STATE(1003), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), + [sym_fixed_array_type] = STATE(1059), + [sym_array_type] = STATE(1059), + [sym_pointer_type] = STATE(1059), + [sym_wrong_pointer_type] = STATE(1059), + [sym_map_type] = STATE(1059), + [sym_channel_type] = STATE(1059), + [sym_shared_type] = STATE(1059), + [sym_thread_type] = STATE(1059), + [sym_atomic_type] = STATE(1059), + [sym_generic_type] = STATE(1059), + [sym_function_type] = STATE(1059), + [sym_identifier] = ACTIONS(1015), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_STAR_EQ] = ACTIONS(855), + [anon_sym_SLASH_EQ] = ACTIONS(855), + [anon_sym_PERCENT_EQ] = ACTIONS(855), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_GT_GT_EQ] = ACTIONS(855), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(855), + [anon_sym_AMP_EQ] = ACTIONS(855), + [anon_sym_AMP_CARET_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(855), + [anon_sym_PIPE_EQ] = ACTIONS(855), + [anon_sym_CARET_EQ] = ACTIONS(855), + [anon_sym_COLON_EQ] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(1033), + [anon_sym_map_LBRACK] = ACTIONS(1035), + [anon_sym_chan] = ACTIONS(1037), + [anon_sym_thread] = ACTIONS(1039), + [anon_sym_atomic] = ACTIONS(1041), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + }, + [100] = { + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4455), + [sym_short_element_list] = STATE(4503), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), [sym_identifier] = ACTIONS(943), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [101] = { + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [sym_reference_expression] = STATE(4500), + [sym_type_reference_expression] = STATE(1003), + [sym_plain_type] = STATE(1088), + [sym__plain_type_without_special] = STATE(1005), + [sym_anon_struct_type] = STATE(1059), + [sym_multi_return_type] = STATE(1005), + [sym_result_type] = STATE(1005), + [sym_option_type] = STATE(1005), + [sym_qualified_type] = STATE(1003), + [sym_fixed_array_type] = STATE(1059), + [sym_array_type] = STATE(1059), + [sym_pointer_type] = STATE(1059), + [sym_wrong_pointer_type] = STATE(1059), + [sym_map_type] = STATE(1059), + [sym_channel_type] = STATE(1059), + [sym_shared_type] = STATE(1059), + [sym_thread_type] = STATE(1059), + [sym_atomic_type] = STATE(1059), + [sym_generic_type] = STATE(1059), + [sym_function_type] = STATE(1059), + [sym_identifier] = ACTIONS(1015), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_LT_DASH] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_STAR_EQ] = ACTIONS(881), - [anon_sym_SLASH_EQ] = ACTIONS(881), - [anon_sym_PERCENT_EQ] = ACTIONS(881), - [anon_sym_LT_LT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(881), - [anon_sym_AMP_EQ] = ACTIONS(881), - [anon_sym_AMP_CARET_EQ] = ACTIONS(881), - [anon_sym_PLUS_EQ] = ACTIONS(881), - [anon_sym_DASH_EQ] = ACTIONS(881), - [anon_sym_PIPE_EQ] = ACTIONS(881), - [anon_sym_CARET_EQ] = ACTIONS(881), - [anon_sym_COLON_EQ] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(961), - [anon_sym_map_LBRACK] = ACTIONS(963), - [anon_sym_chan] = ACTIONS(965), - [anon_sym_thread] = ACTIONS(967), - [anon_sym_atomic] = ACTIONS(969), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_PERCENT_EQ] = ACTIONS(859), + [anon_sym_LT_LT_EQ] = ACTIONS(859), + [anon_sym_GT_GT_EQ] = ACTIONS(859), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(859), + [anon_sym_AMP_EQ] = ACTIONS(859), + [anon_sym_AMP_CARET_EQ] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_PIPE_EQ] = ACTIONS(859), + [anon_sym_CARET_EQ] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(1033), + [anon_sym_map_LBRACK] = ACTIONS(1035), + [anon_sym_chan] = ACTIONS(1037), + [anon_sym_thread] = ACTIONS(1039), + [anon_sym_atomic] = ACTIONS(1041), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), }, - [97] = { - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [102] = { + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4484), + [sym_short_element_list] = STATE(4483), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [103] = { + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4565), + [sym_short_element_list] = STATE(4416), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [104] = { + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [sym_reference_expression] = STATE(4500), + [sym_type_reference_expression] = STATE(1003), + [sym_plain_type] = STATE(1110), + [sym__plain_type_without_special] = STATE(1005), + [sym_anon_struct_type] = STATE(1059), + [sym_multi_return_type] = STATE(1005), + [sym_result_type] = STATE(1005), + [sym_option_type] = STATE(1005), + [sym_qualified_type] = STATE(1003), + [sym_fixed_array_type] = STATE(1059), + [sym_array_type] = STATE(1059), + [sym_pointer_type] = STATE(1059), + [sym_wrong_pointer_type] = STATE(1059), + [sym_map_type] = STATE(1059), + [sym_channel_type] = STATE(1059), + [sym_shared_type] = STATE(1059), + [sym_thread_type] = STATE(1059), + [sym_atomic_type] = STATE(1059), + [sym_generic_type] = STATE(1059), + [sym_function_type] = STATE(1059), + [sym_identifier] = ACTIONS(1015), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_CR] = ACTIONS(821), + [anon_sym_CR_LF] = ACTIONS(821), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_as] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(821), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_mut] = ACTIONS(821), + [anon_sym_COLON] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(821), + [anon_sym_json_DOTdecode] = ACTIONS(821), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_GT_GT_GT] = ACTIONS(821), + [anon_sym_AMP_CARET] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_or] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_true] = ACTIONS(821), + [sym_false] = ACTIONS(821), + [sym_nil] = ACTIONS(821), + [anon_sym_QMARK_DOT] = ACTIONS(821), + [anon_sym_POUND_LBRACK] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(821), + [anon_sym_is] = ACTIONS(821), + [anon_sym_BANGis] = ACTIONS(821), + [anon_sym_in] = ACTIONS(821), + [anon_sym_BANGin] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_select] = ACTIONS(821), + [anon_sym_STAR_EQ] = ACTIONS(821), + [anon_sym_SLASH_EQ] = ACTIONS(821), + [anon_sym_PERCENT_EQ] = ACTIONS(821), + [anon_sym_LT_LT_EQ] = ACTIONS(821), + [anon_sym_GT_GT_EQ] = ACTIONS(821), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(821), + [anon_sym_AMP_EQ] = ACTIONS(821), + [anon_sym_AMP_CARET_EQ] = ACTIONS(821), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_PIPE_EQ] = ACTIONS(821), + [anon_sym_CARET_EQ] = ACTIONS(821), + [anon_sym_COLON_EQ] = ACTIONS(821), + [anon_sym_lock] = ACTIONS(821), + [anon_sym_rlock] = ACTIONS(821), + [anon_sym_unsafe] = ACTIONS(821), + [anon_sym_sql] = ACTIONS(821), + [sym_int_literal] = ACTIONS(821), + [sym_float_literal] = ACTIONS(821), + [sym_rune_literal] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_c_SQUOTE] = ACTIONS(821), + [anon_sym_c_DQUOTE] = ACTIONS(821), + [anon_sym_r_SQUOTE] = ACTIONS(821), + [anon_sym_r_DQUOTE] = ACTIONS(821), + [sym_pseudo_compile_time_identifier] = ACTIONS(821), + [anon_sym_shared] = ACTIONS(1033), + [anon_sym_map_LBRACK] = ACTIONS(1035), + [anon_sym_chan] = ACTIONS(1037), + [anon_sym_thread] = ACTIONS(1039), + [anon_sym_atomic] = ACTIONS(1041), + [anon_sym_assert] = ACTIONS(821), + [anon_sym_defer] = ACTIONS(821), + [anon_sym_goto] = ACTIONS(821), + [anon_sym_break] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_return] = ACTIONS(821), + [anon_sym_DOLLARfor] = ACTIONS(821), + [anon_sym_for] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(821), + [anon_sym_asm] = ACTIONS(821), + }, + [105] = { + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4639), + [sym_short_element_list] = STATE(4702), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [106] = { + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), + [sym__struct_field_definition] = STATE(3507), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4446), + [sym_short_element_list] = STATE(4450), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [107] = { + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), [anon_sym_CR] = ACTIONS(851), @@ -33302,1422 +34789,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(851), [anon_sym_asm] = ACTIONS(851), }, - [98] = { - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), - [anon_sym_json_DOTdecode] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(857), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_STAR_EQ] = ACTIONS(857), - [anon_sym_SLASH_EQ] = ACTIONS(857), - [anon_sym_PERCENT_EQ] = ACTIONS(857), - [anon_sym_LT_LT_EQ] = ACTIONS(857), - [anon_sym_GT_GT_EQ] = ACTIONS(857), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(857), - [anon_sym_AMP_EQ] = ACTIONS(857), - [anon_sym_AMP_CARET_EQ] = ACTIONS(857), - [anon_sym_PLUS_EQ] = ACTIONS(857), - [anon_sym_DASH_EQ] = ACTIONS(857), - [anon_sym_PIPE_EQ] = ACTIONS(857), - [anon_sym_CARET_EQ] = ACTIONS(857), - [anon_sym_COLON_EQ] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_c_SQUOTE] = ACTIONS(857), - [anon_sym_c_DQUOTE] = ACTIONS(857), - [anon_sym_r_SQUOTE] = ACTIONS(857), - [anon_sym_r_DQUOTE] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_goto] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_DOLLARfor] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(857), - [anon_sym_asm] = ACTIONS(857), - }, - [99] = { - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [sym_reference_expression] = STATE(4499), - [sym_type_reference_expression] = STATE(1003), - [sym_plain_type] = STATE(1109), - [sym__plain_type_without_special] = STATE(1005), - [sym_anon_struct_type] = STATE(1039), - [sym_multi_return_type] = STATE(1005), - [sym_result_type] = STATE(1005), - [sym_option_type] = STATE(1005), - [sym_qualified_type] = STATE(1003), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), - [sym_identifier] = ACTIONS(943), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_LT_DASH] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_PERCENT_EQ] = ACTIONS(877), - [anon_sym_LT_LT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(877), - [anon_sym_AMP_EQ] = ACTIONS(877), - [anon_sym_AMP_CARET_EQ] = ACTIONS(877), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_PIPE_EQ] = ACTIONS(877), - [anon_sym_CARET_EQ] = ACTIONS(877), - [anon_sym_COLON_EQ] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(961), - [anon_sym_map_LBRACK] = ACTIONS(963), - [anon_sym_chan] = ACTIONS(965), - [anon_sym_thread] = ACTIONS(967), - [anon_sym_atomic] = ACTIONS(969), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - }, - [100] = { - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [sym_reference_expression] = STATE(4499), - [sym_type_reference_expression] = STATE(1003), - [sym_plain_type] = STATE(1084), - [sym__plain_type_without_special] = STATE(1005), - [sym_anon_struct_type] = STATE(1039), - [sym_multi_return_type] = STATE(1005), - [sym_result_type] = STATE(1005), - [sym_option_type] = STATE(1005), - [sym_qualified_type] = STATE(1003), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), - [sym_identifier] = ACTIONS(943), - [anon_sym_LF] = ACTIONS(821), - [anon_sym_CR] = ACTIONS(821), - [anon_sym_CR_LF] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_as] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(821), - [anon_sym_json_DOTdecode] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_AMP_CARET] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_nil] = ACTIONS(821), - [anon_sym_QMARK_DOT] = ACTIONS(821), - [anon_sym_POUND_LBRACK] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_DOLLARif] = ACTIONS(821), - [anon_sym_is] = ACTIONS(821), - [anon_sym_BANGis] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_BANGin] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_select] = ACTIONS(821), - [anon_sym_STAR_EQ] = ACTIONS(821), - [anon_sym_SLASH_EQ] = ACTIONS(821), - [anon_sym_PERCENT_EQ] = ACTIONS(821), - [anon_sym_LT_LT_EQ] = ACTIONS(821), - [anon_sym_GT_GT_EQ] = ACTIONS(821), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(821), - [anon_sym_AMP_EQ] = ACTIONS(821), - [anon_sym_AMP_CARET_EQ] = ACTIONS(821), - [anon_sym_PLUS_EQ] = ACTIONS(821), - [anon_sym_DASH_EQ] = ACTIONS(821), - [anon_sym_PIPE_EQ] = ACTIONS(821), - [anon_sym_CARET_EQ] = ACTIONS(821), - [anon_sym_COLON_EQ] = ACTIONS(821), - [anon_sym_lock] = ACTIONS(821), - [anon_sym_rlock] = ACTIONS(821), - [anon_sym_unsafe] = ACTIONS(821), - [anon_sym_sql] = ACTIONS(821), - [sym_int_literal] = ACTIONS(821), - [sym_float_literal] = ACTIONS(821), - [sym_rune_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_c_SQUOTE] = ACTIONS(821), - [anon_sym_c_DQUOTE] = ACTIONS(821), - [anon_sym_r_SQUOTE] = ACTIONS(821), - [anon_sym_r_DQUOTE] = ACTIONS(821), - [sym_pseudo_compile_time_identifier] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(961), - [anon_sym_map_LBRACK] = ACTIONS(963), - [anon_sym_chan] = ACTIONS(965), - [anon_sym_thread] = ACTIONS(967), - [anon_sym_atomic] = ACTIONS(969), - [anon_sym_assert] = ACTIONS(821), - [anon_sym_defer] = ACTIONS(821), - [anon_sym_goto] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_DOLLARfor] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_asm] = ACTIONS(821), - }, - [101] = { - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4483), - [sym_short_element_list] = STATE(4482), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [102] = { - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4645), - [sym_short_element_list] = STATE(4652), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [103] = { - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4650), - [sym_short_element_list] = STATE(4647), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [104] = { - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4418), - [sym_short_element_list] = STATE(4419), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [105] = { - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4706), - [sym_short_element_list] = STATE(4560), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [106] = { - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4436), - [sym_short_element_list] = STATE(4444), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [107] = { - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4639), - [sym_short_element_list] = STATE(4638), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [108] = { [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4453), - [sym_short_element_list] = STATE(4501), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4431), + [sym_short_element_list] = STATE(4432), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -34727,126 +34922,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [109] = { [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4558), - [sym_short_element_list] = STATE(4563), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4659), + [sym_short_element_list] = STATE(4661), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -34856,126 +35052,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [110] = { [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4640), - [sym_short_element_list] = STATE(4637), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4620), + [sym_short_element_list] = STATE(4625), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -34985,255 +35182,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [111] = { [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), - [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4525), - [sym_short_element_list] = STATE(4527), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), - [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_AMP_CARET_EQ] = ACTIONS(865), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + [sym_rune_literal] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_c_SQUOTE] = ACTIONS(865), + [anon_sym_c_DQUOTE] = ACTIONS(865), + [anon_sym_r_SQUOTE] = ACTIONS(865), + [anon_sym_r_DQUOTE] = ACTIONS(865), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(865), + [anon_sym_defer] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_DOLLARfor] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_asm] = ACTIONS(865), }, [112] = { [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4612), - [sym_short_element_list] = STATE(4618), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4562), + [sym_short_element_list] = STATE(4563), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -35243,126 +35442,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [113] = { [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [sym_struct_field_scope] = STATE(3508), - [sym_struct_field_declaration] = STATE(3508), + [sym_struct_field_scope] = STATE(3506), + [sym_struct_field_declaration] = STATE(3506), [sym__struct_field_definition] = STATE(3507), - [sym_embedded_definition] = STATE(3503), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4428), - [sym_short_element_list] = STATE(4429), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1496), - [sym_type_reference_expression] = STATE(3475), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym_embedded_definition] = STATE(3508), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4713), + [sym_short_element_list] = STATE(4560), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1537), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3475), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(3499), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2417), [aux_sym__struct_body_repeat1] = STATE(3420), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(973), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(943), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym___global] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym___global] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_mut] = ACTIONS(967), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -35372,78 +35572,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [114] = { [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4497), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4459), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(152), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(163), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35499,78 +35699,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [115] = { [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4476), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4664), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(145), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35626,78 +35826,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [116] = { [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4620), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4499), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(157), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35753,84 +35953,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [117] = { [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4528), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4462), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(173), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(171), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1115), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -35880,84 +36080,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [118] = { [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4642), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4664), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(165), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1117), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36007,84 +36207,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [119] = { [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4659), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4434), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(147), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1119), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36134,84 +36334,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [120] = { [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4511), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4572), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(170), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(161), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36261,84 +36461,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [121] = { [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(1963), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2097), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(938), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4575), + [sym_var_declaration] = STATE(4164), + [sym_var_definition_list] = STATE(4578), + [sym_var_definition] = STATE(3947), + [sym_assignment_statement] = STATE(4164), + [sym_block] = STATE(1876), + [sym_is_clause] = STATE(4280), + [sym_range_clause] = STATE(4280), + [sym_for_clause] = STATE(4280), + [sym_identifier] = ACTIONS(1123), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [122] = { + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4620), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4633), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(157), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(153), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1189), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36385,87 +36712,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [122] = { - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [123] = { + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4430), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4504), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(158), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(172), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1191), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36512,87 +36839,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [123] = { - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [124] = { + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4503), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4462), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(149), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(171), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36639,87 +36966,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [124] = { - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [125] = { + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4528), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4638), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(173), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(169), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36766,87 +37093,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [125] = { - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [126] = { + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [sym__expression] = STATE(1964), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2097), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(938), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4575), + [sym_var_declaration] = STATE(4164), + [sym_var_definition_list] = STATE(4578), + [sym_var_definition] = STATE(3947), + [sym_assignment_statement] = STATE(4164), + [sym_block] = STATE(1940), + [sym_is_clause] = STATE(4178), + [sym_range_clause] = STATE(4178), + [sym_for_clause] = STATE(4178), + [sym_identifier] = ACTIONS(1123), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [127] = { + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4497), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4499), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(152), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1199), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -36893,214 +37347,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [126] = { - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [sym__expression] = STATE(1964), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2098), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(938), - [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3412), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4573), - [sym_var_declaration] = STATE(4113), - [sym_var_definition_list] = STATE(4576), - [sym_var_definition] = STATE(3952), - [sym_assignment_statement] = STATE(4113), - [sym_block] = STATE(1936), - [sym_is_clause] = STATE(4180), - [sym_range_clause] = STATE(4180), - [sym_for_clause] = STATE(4180), - [sym_identifier] = ACTIONS(1131), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_mut] = ACTIONS(1149), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [127] = { - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [128] = { + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4497), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4633), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(152), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(153), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37147,87 +37474,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [128] = { - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [129] = { + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4430), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4499), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(158), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1203), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37274,214 +37601,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [129] = { - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [sym__expression] = STATE(1962), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2098), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(938), - [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3412), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4573), - [sym_var_declaration] = STATE(4113), - [sym_var_definition_list] = STATE(4576), - [sym_var_definition] = STATE(3952), - [sym_assignment_statement] = STATE(4113), - [sym_block] = STATE(1851), - [sym_is_clause] = STATE(4280), - [sym_range_clause] = STATE(4280), - [sym_for_clause] = STATE(4280), - [sym_identifier] = ACTIONS(1131), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_mut] = ACTIONS(1149), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [130] = { [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4414), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4572), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(175), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(161), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1205), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37531,84 +37731,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [131] = { [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4414), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4527), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(175), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(140), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_RBRACE] = ACTIONS(1199), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37658,84 +37858,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [132] = { [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4497), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4642), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(152), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(145), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37785,84 +37985,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [133] = { [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4659), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4499), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(147), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(148), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -37912,84 +38112,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [134] = { [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4449), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4527), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(167), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(140), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -38039,84 +38239,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [135] = { [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4634), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4513), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(142), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(166), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -38166,84 +38366,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4635), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4434), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(177), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -38293,84 +38493,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [137] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4476), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4527), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(145), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(140), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1047), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1113), [anon_sym_LPAREN] = ACTIONS(1053), [anon_sym_fn] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1057), @@ -38420,78 +38620,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [138] = { [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4528), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4637), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [aux_sym_select_expression_repeat1] = STATE(173), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [aux_sym_select_expression_repeat1] = STATE(176), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38547,76 +38747,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), [sym_select_else_arn_clause] = STATE(4481), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(162), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38672,76 +38872,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [140] = { [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4515), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4551), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(163), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38797,76 +38997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4670), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4677), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(172), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38922,76 +39122,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [142] = { [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4668), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4437), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39047,76 +39247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4458), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4498), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39172,76 +39372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [144] = { [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4473), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4670), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(141), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39297,76 +39497,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [145] = { [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4454), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4669), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39422,74 +39622,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [146] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4691), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), [aux_sym_select_expression_repeat1] = STATE(160), [sym_identifier] = ACTIONS(1045), @@ -39547,76 +39747,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [147] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4688), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4690), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39672,76 +39872,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [148] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4465), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4472), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(176), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39797,76 +39997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [149] = { [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4663), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4491), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39922,76 +40122,76 @@ 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(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4451), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(154), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40047,76 +40247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [151] = { [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4664), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4567), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(143), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40172,76 +40372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [152] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4470), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4583), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40297,76 +40497,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [153] = { [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4574), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4584), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40422,76 +40622,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [154] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4443), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4442), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40547,76 +40747,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [155] = { [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4596), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4467), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(175), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40672,76 +40872,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [156] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4581), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4598), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(153), + [aux_sym_select_expression_repeat1] = STATE(150), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40797,76 +40997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [157] = { [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4582), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(142), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40922,76 +41122,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [158] = { [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4479), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41047,76 +41247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4600), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41172,76 +41372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [160] = { [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), [sym_select_else_arn_clause] = STATE(4693), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41297,76 +41497,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [161] = { [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4594), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(155), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41422,76 +41622,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4490), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4552), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(159), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41547,76 +41747,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [163] = { [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4550), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4516), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41672,76 +41872,76 @@ 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(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4509), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4591), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(151), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41797,76 +41997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), [sym_select_else_arn_clause] = STATE(4614), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(158), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41922,76 +42122,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [166] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4557), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4710), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(164), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42047,76 +42247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [167] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4514), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4708), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(170), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42172,76 +42372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [168] = { [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4589), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4517), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(144), + [aux_sym_select_expression_repeat1] = STATE(174), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42297,76 +42497,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [169] = { [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4613), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4615), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(159), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42422,76 +42622,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [170] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4710), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4706), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42547,76 +42747,76 @@ 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(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4709), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4453), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(174), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42672,76 +42872,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [172] = { [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4675), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4665), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42797,76 +42997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [173] = { [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4554), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4482), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(143), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42922,76 +43122,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [174] = { [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4705), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4414), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -43047,76 +43247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [175] = { [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4585), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4461), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -43172,76 +43372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [176] = { [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4459), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4597), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(183), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -43297,76 +43497,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [177] = { [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), [sym_select_var_declaration] = STATE(4502), - [sym_select_else_arn_clause] = STATE(4595), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), + [sym_select_else_arn_clause] = STATE(4451), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), [sym_mutability_modifiers] = STATE(678), [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), + [sym_identifier_list] = STATE(4505), [sym_expression_without_blocks_list] = STATE(3392), [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [aux_sym_select_expression_repeat1] = STATE(154), [sym_identifier] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -43422,244 +43622,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [178] = { [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2015), - [sym__expression_with_blocks] = STATE(2936), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2930), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2930), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2930), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2930), - [sym_compile_time_if_expression] = STATE(2930), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2930), - [sym_select_expression] = STATE(2930), - [sym_select_arm] = STATE(2254), - [sym_select_arm_statement] = STATE(4347), - [sym_select_var_declaration] = STATE(4502), - [sym_lock_expression] = STATE(2930), - [sym_unsafe_expression] = STATE(2930), - [sym_sql_expression] = STATE(2930), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(678), - [sym_mutable_identifier] = STATE(3900), - [sym_identifier_list] = STATE(4504), - [sym_expression_without_blocks_list] = STATE(3392), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_send_statement] = STATE(4502), - [aux_sym_select_expression_repeat1] = STATE(178), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4574), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1323), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_go] = ACTIONS(1332), - [anon_sym_spawn] = ACTIONS(1335), - [anon_sym_json_DOTdecode] = ACTIONS(1338), - [anon_sym_LBRACK2] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_LT_DASH] = ACTIONS(1347), - [sym_none] = ACTIONS(1350), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [sym_nil] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_DOLLARif] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1361), - [anon_sym_select] = ACTIONS(1364), - [anon_sym_lock] = ACTIONS(1367), - [anon_sym_rlock] = ACTIONS(1367), - [anon_sym_unsafe] = ACTIONS(1370), - [anon_sym_sql] = ACTIONS(1373), - [sym_int_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1376), - [sym_rune_literal] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_c_SQUOTE] = ACTIONS(1385), - [anon_sym_c_DQUOTE] = ACTIONS(1388), - [anon_sym_r_SQUOTE] = ACTIONS(1391), - [anon_sym_r_DQUOTE] = ACTIONS(1394), - [sym_pseudo_compile_time_identifier] = ACTIONS(1397), - [anon_sym_shared] = ACTIONS(1400), - [anon_sym_map_LBRACK] = ACTIONS(1403), - [anon_sym_chan] = ACTIONS(1406), - [anon_sym_thread] = ACTIONS(1409), - [anon_sym_atomic] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1299), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [179] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4474), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4436), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -43669,120 +43870,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [180] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4667), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4537), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -43792,120 +43994,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [181] = { [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4711), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4534), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -43915,120 +44118,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [182] = { [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4584), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44038,243 +44242,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [183] = { [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4535), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2013), + [sym__expression_with_blocks] = STATE(2954), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2935), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2935), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2935), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2935), + [sym_compile_time_if_expression] = STATE(2935), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2935), + [sym_select_expression] = STATE(2935), + [sym_select_arm] = STATE(2243), + [sym_select_arm_statement] = STATE(4348), + [sym_select_var_declaration] = STATE(4502), + [sym_lock_expression] = STATE(2935), + [sym_unsafe_expression] = STATE(2935), + [sym_sql_expression] = STATE(2935), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(678), + [sym_mutable_identifier] = STATE(3900), + [sym_identifier_list] = STATE(4505), + [sym_expression_without_blocks_list] = STATE(3392), + [sym_plain_type] = STATE(4255), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4502), + [aux_sym_select_expression_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(1313), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_mut] = ACTIONS(1339), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_go] = ACTIONS(1348), + [anon_sym_spawn] = ACTIONS(1351), + [anon_sym_json_DOTdecode] = ACTIONS(1354), + [anon_sym_LBRACK2] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LT_DASH] = ACTIONS(1363), + [sym_none] = ACTIONS(1366), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_nil] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_DOLLARif] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1377), + [anon_sym_select] = ACTIONS(1380), + [anon_sym_lock] = ACTIONS(1383), + [anon_sym_rlock] = ACTIONS(1383), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_sql] = ACTIONS(1389), + [sym_int_literal] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1392), + [sym_rune_literal] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_c_SQUOTE] = ACTIONS(1401), + [anon_sym_c_DQUOTE] = ACTIONS(1404), + [anon_sym_r_SQUOTE] = ACTIONS(1407), + [anon_sym_r_DQUOTE] = ACTIONS(1410), + [sym_pseudo_compile_time_identifier] = ACTIONS(1413), + [anon_sym_shared] = ACTIONS(1416), + [anon_sym_map_LBRACK] = ACTIONS(1419), + [anon_sym_chan] = ACTIONS(1422), + [anon_sym_thread] = ACTIONS(1425), + [anon_sym_atomic] = ACTIONS(1428), }, [184] = { [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4512), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4474), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44284,120 +44490,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [185] = { [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4616), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4613), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44407,120 +44614,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [186] = { [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4649), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4631), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44530,120 +44738,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [187] = { [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4608), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4674), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44653,120 +44862,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [188] = { [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4539), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4630), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44776,120 +44986,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [189] = { [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4630), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4648), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -44899,120 +45110,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [190] = { [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4605), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_short_lambda] = STATE(4475), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45022,120 +45234,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [191] = { [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4553), - [sym_match_arm] = STATE(2249), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4473), + [sym_match_arm] = STATE(2245), [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45145,120 +45357,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [192] = { [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4478), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4457), + [sym_short_element_list] = STATE(4458), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45268,120 +45480,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [193] = { [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4471), - [sym_match_arm] = STATE(2249), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4564), + [sym_match_arm] = STATE(2245), [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45391,120 +45603,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [194] = { [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4434), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4650), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45514,120 +45726,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [195] = { [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4629), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4579), + [sym_short_element_list] = STATE(4582), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45637,120 +45849,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [196] = { [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4455), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4488), + [sym_short_element_list] = STATE(4487), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45760,120 +45972,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [197] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4507), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4550), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -45883,120 +46095,120 @@ 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(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4672), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4616), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46006,120 +46218,120 @@ 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(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4648), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4711), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46129,120 +46341,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [200] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4583), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4623), + [sym_short_element_list] = STATE(4622), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46252,120 +46464,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [201] = { [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arms] = STATE(4686), - [sym_match_arm] = STATE(2249), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4688), + [sym_match_arm] = STATE(2245), [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1423), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46375,120 +46587,120 @@ 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(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4571), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4480), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46498,120 +46710,120 @@ 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(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_short_lambda] = STATE(4492), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4508), + [sym_short_element_list] = STATE(4460), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46621,119 +46833,120 @@ 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(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4477), - [sym_short_element_list] = STATE(4480), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4543), + [sym_short_element_list] = STATE(4544), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46743,119 +46956,120 @@ 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(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arm] = STATE(2249), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4660), + [sym_match_arm] = STATE(2245), [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(1423), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46865,119 +47079,120 @@ 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(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4544), - [sym_short_element_list] = STATE(4548), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4707), + [sym_short_element_list] = STATE(4703), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -46987,119 +47202,120 @@ 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(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4677), - [sym_short_element_list] = STATE(4679), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4653), + [sym_short_element_list] = STATE(4654), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -47109,241 +47325,243 @@ 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(2584), - [sym__expression_without_blocks] = STATE(2582), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arm] = STATE(2249), - [sym_match_expression_list] = STATE(4186), - [sym_match_arm_type] = STATE(4022), - [sym_match_else_arm_clause] = STATE(2249), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4026), - [aux_sym_match_arms_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(1543), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4678), + [sym_short_element_list] = STATE(4679), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_go] = ACTIONS(1578), - [anon_sym_spawn] = ACTIONS(1581), - [anon_sym_json_DOTdecode] = ACTIONS(1584), - [anon_sym_LBRACK2] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_LT_DASH] = ACTIONS(1593), - [sym_none] = ACTIONS(1596), - [sym_true] = ACTIONS(1596), - [sym_false] = ACTIONS(1596), - [sym_nil] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_DOLLARif] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_select] = ACTIONS(1611), - [anon_sym_lock] = ACTIONS(1614), - [anon_sym_rlock] = ACTIONS(1614), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_sql] = ACTIONS(1620), - [sym_int_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1623), - [sym_rune_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_c_SQUOTE] = ACTIONS(1632), - [anon_sym_c_DQUOTE] = ACTIONS(1635), - [anon_sym_r_SQUOTE] = ACTIONS(1638), - [anon_sym_r_DQUOTE] = ACTIONS(1641), - [sym_pseudo_compile_time_identifier] = ACTIONS(1644), - [anon_sym_shared] = ACTIONS(1647), - [anon_sym_map_LBRACK] = ACTIONS(1650), - [anon_sym_chan] = ACTIONS(1653), - [anon_sym_thread] = ACTIONS(1656), - [anon_sym_atomic] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [209] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4656), - [sym_short_element_list] = STATE(4658), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4556), + [sym_short_element_list] = STATE(4559), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -47353,241 +47571,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [210] = { [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_reference_expression] = STATE(4442), - [sym_type_reference_expression] = STATE(1151), - [sym_plain_type] = STATE(1187), - [sym__plain_type_without_special] = STATE(1231), - [sym_anon_struct_type] = STATE(1234), - [sym_multi_return_type] = STATE(1231), - [sym_result_type] = STATE(1231), - [sym_option_type] = STATE(1231), - [sym_qualified_type] = STATE(1151), - [sym_fixed_array_type] = STATE(1234), - [sym_array_type] = STATE(1234), - [sym_pointer_type] = STATE(1234), - [sym_wrong_pointer_type] = STATE(1234), - [sym_map_type] = STATE(1234), - [sym_channel_type] = STATE(1234), - [sym_shared_type] = STATE(1234), - [sym_thread_type] = STATE(1234), - [sym_atomic_type] = STATE(1234), - [sym_generic_type] = STATE(1234), - [sym_function_type] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(879), - [sym_identifier] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_const] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym___global] = ACTIONS(881), - [anon_sym_type] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(881), - [anon_sym_pub] = ACTIONS(881), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_LT_DASH] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(1682), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1686), - [anon_sym_thread] = ACTIONS(1688), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), - [anon_sym_AT_LBRACK] = ACTIONS(881), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4456), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [211] = { [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4622), - [sym_short_element_list] = STATE(4621), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4619), + [sym_short_element_list] = STATE(4617), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -47597,28 +47817,1375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [212] = { [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_reference_expression] = STATE(4442), - [sym_type_reference_expression] = STATE(1151), - [sym_plain_type] = STATE(1158), - [sym__plain_type_without_special] = STATE(1231), - [sym_anon_struct_type] = STATE(1234), - [sym_multi_return_type] = STATE(1231), - [sym_result_type] = STATE(1231), - [sym_option_type] = STATE(1231), - [sym_qualified_type] = STATE(1151), - [sym_fixed_array_type] = STATE(1234), - [sym_array_type] = STATE(1234), - [sym_pointer_type] = STATE(1234), - [sym_wrong_pointer_type] = STATE(1234), - [sym_map_type] = STATE(1234), - [sym_channel_type] = STATE(1234), - [sym_shared_type] = STATE(1234), - [sym_thread_type] = STATE(1234), - [sym_atomic_type] = STATE(1234), - [sym_generic_type] = STATE(1234), - [sym_function_type] = STATE(1234), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4515), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [213] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4610), + [sym_short_element_list] = STATE(4495), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [214] = { + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4607), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [215] = { + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_element_list] = STATE(4608), + [sym_short_element_list] = STATE(4604), + [sym_field_name] = STATE(4418), + [sym_keyed_element] = STATE(3509), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1441), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(3509), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3510), + [aux_sym_short_element_list_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [216] = { + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4585), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [217] = { + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym___global] = ACTIONS(865), + [anon_sym_type] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_union] = ACTIONS(865), + [anon_sym_pub] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(865), + [anon_sym_interface] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + [sym_rune_literal] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_c_SQUOTE] = ACTIONS(865), + [anon_sym_c_DQUOTE] = ACTIONS(865), + [anon_sym_r_SQUOTE] = ACTIONS(865), + [anon_sym_r_DQUOTE] = ACTIONS(865), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(865), + [anon_sym_defer] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_DOLLARfor] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_asm] = ACTIONS(865), + [anon_sym_AT_LBRACK] = ACTIONS(865), + }, + [218] = { + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [219] = { + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [220] = { + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1681), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1688), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_attribute_expression] = STATE(3976), + [sym_if_attribute] = STATE(4242), + [sym__plain_attribute] = STATE(4242), + [sym_literal_attribute] = STATE(4244), + [sym_value_attribute] = STATE(3975), + [sym_key_value_attribute] = STATE(4244), + [aux_sym__array_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(1611), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [221] = { + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [222] = { + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_fn] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_mut] = ACTIONS(1661), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_go] = ACTIONS(1670), + [anon_sym_spawn] = ACTIONS(1673), + [anon_sym_json_DOTdecode] = ACTIONS(1676), + [anon_sym_LBRACK2] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LT_DASH] = ACTIONS(1685), + [sym_none] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_nil] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_DOLLARif] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_select] = ACTIONS(1703), + [anon_sym_lock] = ACTIONS(1706), + [anon_sym_rlock] = ACTIONS(1706), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_sql] = ACTIONS(1712), + [sym_int_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1715), + [sym_rune_literal] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1721), + [anon_sym_c_SQUOTE] = ACTIONS(1724), + [anon_sym_c_DQUOTE] = ACTIONS(1727), + [anon_sym_r_SQUOTE] = ACTIONS(1730), + [anon_sym_r_DQUOTE] = ACTIONS(1733), + [sym_pseudo_compile_time_identifier] = ACTIONS(1736), + [anon_sym_shared] = ACTIONS(1739), + [anon_sym_map_LBRACK] = ACTIONS(1742), + [anon_sym_chan] = ACTIONS(1745), + [anon_sym_thread] = ACTIONS(1748), + [anon_sym_atomic] = ACTIONS(1751), + }, + [223] = { + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_reference_expression] = STATE(4444), + [sym_type_reference_expression] = STATE(1148), + [sym_plain_type] = STATE(1221), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1215), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1148), + [sym_fixed_array_type] = STATE(1215), + [sym_array_type] = STATE(1215), + [sym_pointer_type] = STATE(1215), + [sym_wrong_pointer_type] = STATE(1215), + [sym_map_type] = STATE(1215), + [sym_channel_type] = STATE(1215), + [sym_shared_type] = STATE(1215), + [sym_thread_type] = STATE(1215), + [sym_atomic_type] = STATE(1215), + [sym_generic_type] = STATE(1215), + [sym_function_type] = STATE(1215), [ts_builtin_sym_end] = ACTIONS(817), - [sym_identifier] = ACTIONS(1664), + [sym_identifier] = ACTIONS(1754), [anon_sym_LF] = ACTIONS(821), [anon_sym_CR] = ACTIONS(821), [anon_sym_CR_LF] = ACTIONS(821), @@ -47629,13 +49196,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_COMMA] = ACTIONS(821), [anon_sym_const] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1756), [anon_sym___global] = ACTIONS(821), [anon_sym_type] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(1668), + [anon_sym_fn] = ACTIONS(1758), [anon_sym_PLUS] = ACTIONS(821), [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1760), [anon_sym_SLASH] = ACTIONS(821), [anon_sym_PERCENT] = ACTIONS(821), [anon_sym_LT] = ACTIONS(821), @@ -47645,7 +49212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(821), [anon_sym_GT_EQ] = ACTIONS(821), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1762), [anon_sym_union] = ACTIONS(821), [anon_sym_pub] = ACTIONS(821), [anon_sym_mut] = ACTIONS(821), @@ -47653,16 +49220,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(821), [anon_sym_PLUS_PLUS] = ACTIONS(821), [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1766), [anon_sym_go] = ACTIONS(821), [anon_sym_spawn] = ACTIONS(821), [anon_sym_json_DOTdecode] = ACTIONS(821), [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(1678), + [anon_sym_LBRACK2] = ACTIONS(1768), [anon_sym_TILDE] = ACTIONS(821), [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1770), [anon_sym_LT_DASH] = ACTIONS(821), [anon_sym_LT_LT] = ACTIONS(821), [anon_sym_GT_GT] = ACTIONS(821), @@ -47699,11 +49266,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(821), [anon_sym_r_DQUOTE] = ACTIONS(821), [sym_pseudo_compile_time_identifier] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(1682), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1686), - [anon_sym_thread] = ACTIONS(1688), - [anon_sym_atomic] = ACTIONS(1690), + [anon_sym_shared] = ACTIONS(1772), + [anon_sym_map_LBRACK] = ACTIONS(1774), + [anon_sym_chan] = ACTIONS(1776), + [anon_sym_thread] = ACTIONS(1778), + [anon_sym_atomic] = ACTIONS(1780), [anon_sym_assert] = ACTIONS(821), [anon_sym_defer] = ACTIONS(821), [anon_sym_goto] = ACTIONS(821), @@ -47716,639 +49283,761 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(821), [anon_sym_AT_LBRACK] = ACTIONS(821), }, - [213] = { - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4486), - [sym_short_element_list] = STATE(4485), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [224] = { + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [214] = { - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4575), - [sym_short_element_list] = STATE(4577), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [225] = { + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [215] = { - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4452), - [sym_short_element_list] = STATE(4456), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [226] = { + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [216] = { - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [227] = { + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_reference_expression] = STATE(4444), + [sym_type_reference_expression] = STATE(1148), + [sym_plain_type] = STATE(1159), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1215), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1148), + [sym_fixed_array_type] = STATE(1215), + [sym_array_type] = STATE(1215), + [sym_pointer_type] = STATE(1215), + [sym_wrong_pointer_type] = STATE(1215), + [sym_map_type] = STATE(1215), + [sym_channel_type] = STATE(1215), + [sym_shared_type] = STATE(1215), + [sym_thread_type] = STATE(1215), + [sym_atomic_type] = STATE(1215), + [sym_generic_type] = STATE(1215), + [sym_function_type] = STATE(1215), [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), + [sym_identifier] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_const] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym___global] = ACTIONS(857), - [anon_sym_type] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym___global] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_union] = ACTIONS(857), - [anon_sym_pub] = ACTIONS(857), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), - [anon_sym_json_DOTdecode] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(857), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_c_SQUOTE] = ACTIONS(857), - [anon_sym_c_DQUOTE] = ACTIONS(857), - [anon_sym_r_SQUOTE] = ACTIONS(857), - [anon_sym_r_DQUOTE] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_goto] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_DOLLARfor] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(857), - [anon_sym_asm] = ACTIONS(857), - [anon_sym_AT_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(855), + [anon_sym_pub] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_interface] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(1768), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(1772), + [anon_sym_map_LBRACK] = ACTIONS(1774), + [anon_sym_chan] = ACTIONS(1776), + [anon_sym_thread] = ACTIONS(1778), + [anon_sym_atomic] = ACTIONS(1780), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + [anon_sym_AT_LBRACK] = ACTIONS(855), }, - [217] = { - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4464), - [sym_short_element_list] = STATE(4564), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), + [228] = { + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [218] = { - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [229] = { + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_go] = ACTIONS(1828), + [anon_sym_spawn] = ACTIONS(1831), + [anon_sym_json_DOTdecode] = ACTIONS(1834), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_LT_DASH] = ACTIONS(1843), + [sym_none] = ACTIONS(1846), + [sym_true] = ACTIONS(1846), + [sym_false] = ACTIONS(1846), + [sym_nil] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_select] = ACTIONS(1858), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1864), + [anon_sym_sql] = ACTIONS(1867), + [sym_int_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1870), + [sym_rune_literal] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_c_SQUOTE] = ACTIONS(1879), + [anon_sym_c_DQUOTE] = ACTIONS(1882), + [anon_sym_r_SQUOTE] = ACTIONS(1885), + [anon_sym_r_DQUOTE] = ACTIONS(1888), + [sym_pseudo_compile_time_identifier] = ACTIONS(1891), + [anon_sym_shared] = ACTIONS(1894), + [anon_sym_map_LBRACK] = ACTIONS(1897), + [anon_sym_chan] = ACTIONS(1900), + [anon_sym_thread] = ACTIONS(1903), + [anon_sym_atomic] = ACTIONS(1906), + }, + [230] = { + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [ts_builtin_sym_end] = ACTIONS(849), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), @@ -48448,1580 +50137,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(851), [anon_sym_AT_LBRACK] = ACTIONS(851), }, - [219] = { - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1680), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1687), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_attribute_expression] = STATE(3976), - [sym_if_attribute] = STATE(4240), - [sym__plain_attribute] = STATE(4240), - [sym_literal_attribute] = STATE(4243), - [sym_value_attribute] = STATE(3972), - [sym_key_value_attribute] = STATE(4243), - [aux_sym__array_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [220] = { - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4704), - [sym_short_element_list] = STATE(4701), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [221] = { - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2686), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2904), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4415), - [sym_attribute_expression] = STATE(3976), - [sym_if_attribute] = STATE(4240), - [sym__plain_attribute] = STATE(4240), - [sym_literal_attribute] = STATE(4243), - [sym_value_attribute] = STATE(3972), - [sym_key_value_attribute] = STATE(4243), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1814), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [222] = { - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4559), - [sym_short_element_list] = STATE(4561), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [223] = { - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4603), - [sym_short_element_list] = STATE(4599), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [224] = { - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_element_list] = STATE(4617), - [sym_short_element_list] = STATE(4615), - [sym_keyed_element] = STATE(3501), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1491), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(3501), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_element_list_repeat1] = STATE(3634), - [aux_sym_short_element_list_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [225] = { - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_reference_expression] = STATE(4442), - [sym_type_reference_expression] = STATE(1151), - [sym_plain_type] = STATE(1240), - [sym__plain_type_without_special] = STATE(1231), - [sym_anon_struct_type] = STATE(1234), - [sym_multi_return_type] = STATE(1231), - [sym_result_type] = STATE(1231), - [sym_option_type] = STATE(1231), - [sym_qualified_type] = STATE(1151), - [sym_fixed_array_type] = STATE(1234), - [sym_array_type] = STATE(1234), - [sym_pointer_type] = STATE(1234), - [sym_wrong_pointer_type] = STATE(1234), - [sym_map_type] = STATE(1234), - [sym_channel_type] = STATE(1234), - [sym_shared_type] = STATE(1234), - [sym_thread_type] = STATE(1234), - [sym_atomic_type] = STATE(1234), - [sym_generic_type] = STATE(1234), - [sym_function_type] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(1664), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_const] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym___global] = ACTIONS(877), - [anon_sym_type] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(877), - [anon_sym_pub] = ACTIONS(877), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_LT_DASH] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(1682), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1686), - [anon_sym_thread] = ACTIONS(1688), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - [anon_sym_AT_LBRACK] = ACTIONS(877), - }, - [226] = { - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [227] = { - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [228] = { - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [229] = { - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [230] = { - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [231] = { [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50031,118 +50262,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [232] = { [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50152,118 +50384,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [233] = { [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50273,118 +50506,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [234] = { [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50394,360 +50628,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [235] = { [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2687), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2908), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4466), + [sym_attribute_expression] = STATE(3976), + [sym_if_attribute] = STATE(4242), + [sym__plain_attribute] = STATE(4242), + [sym_literal_attribute] = STATE(4244), + [sym_value_attribute] = STATE(3975), + [sym_key_value_attribute] = STATE(4244), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1959), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [236] = { [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1862), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_go] = ACTIONS(1900), - [anon_sym_spawn] = ACTIONS(1903), - [anon_sym_json_DOTdecode] = ACTIONS(1906), - [anon_sym_LBRACK2] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_LT_DASH] = ACTIONS(1915), - [sym_none] = ACTIONS(1918), - [sym_true] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [sym_nil] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_DOLLARif] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_select] = ACTIONS(1930), - [anon_sym_lock] = ACTIONS(1933), - [anon_sym_rlock] = ACTIONS(1933), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_sql] = ACTIONS(1939), - [sym_int_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1942), - [sym_rune_literal] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_c_SQUOTE] = ACTIONS(1951), - [anon_sym_c_DQUOTE] = ACTIONS(1954), - [anon_sym_r_SQUOTE] = ACTIONS(1957), - [anon_sym_r_DQUOTE] = ACTIONS(1960), - [sym_pseudo_compile_time_identifier] = ACTIONS(1963), - [anon_sym_shared] = ACTIONS(1966), - [anon_sym_map_LBRACK] = ACTIONS(1969), - [anon_sym_chan] = ACTIONS(1972), - [anon_sym_thread] = ACTIONS(1975), - [anon_sym_atomic] = ACTIONS(1978), + [sym_reference_expression] = STATE(4444), + [sym_type_reference_expression] = STATE(1148), + [sym_plain_type] = STATE(1253), + [sym__plain_type_without_special] = STATE(1214), + [sym_anon_struct_type] = STATE(1215), + [sym_multi_return_type] = STATE(1214), + [sym_result_type] = STATE(1214), + [sym_option_type] = STATE(1214), + [sym_qualified_type] = STATE(1148), + [sym_fixed_array_type] = STATE(1215), + [sym_array_type] = STATE(1215), + [sym_pointer_type] = STATE(1215), + [sym_wrong_pointer_type] = STATE(1215), + [sym_map_type] = STATE(1215), + [sym_channel_type] = STATE(1215), + [sym_shared_type] = STATE(1215), + [sym_thread_type] = STATE(1215), + [sym_atomic_type] = STATE(1215), + [sym_generic_type] = STATE(1215), + [sym_function_type] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(1754), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym___global] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_interface] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(1768), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(1772), + [anon_sym_map_LBRACK] = ACTIONS(1774), + [anon_sym_chan] = ACTIONS(1776), + [anon_sym_thread] = ACTIONS(1778), + [anon_sym_atomic] = ACTIONS(1780), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), + [anon_sym_AT_LBRACK] = ACTIONS(859), }, [237] = { [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2579), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arm] = STATE(2245), + [sym_match_expression_list] = STATE(4186), + [sym_match_arm_type] = STATE(4024), + [sym_match_else_arm_clause] = STATE(2245), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4028), + [aux_sym_match_arms_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50757,118 +50994,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [238] = { [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym__expression] = STATE(1420), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_argument] = STATE(2021), - [sym_type_initializer] = STATE(1457), - [sym_keyed_element] = STATE(2022), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1485), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_spread_expression] = STATE(2022), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(812), - [sym_mutable_expression] = STATE(2022), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_argument_list_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1421), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_argument] = STATE(2022), + [sym_type_initializer] = STATE(1496), + [sym_field_name] = STATE(4586), + [sym_keyed_element] = STATE(2018), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1477), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_spread_expression] = STATE(2018), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(813), + [sym_mutable_expression] = STATE(2018), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_argument_list_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50878,117 +51116,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [239] = { [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym__expression] = STATE(1966), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), + [sym__expression] = STATE(1976), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), [sym_mutability_modifiers] = STATE(938), [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3435), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4461), - [sym_var_declaration] = STATE(4113), - [sym_assignment_statement] = STATE(4113), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4686), + [sym_var_declaration] = STATE(4164), + [sym_assignment_statement] = STATE(4164), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1127), [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50998,117 +51236,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [240] = { [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym__expression] = STATE(1966), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), + [sym__expression] = STATE(1976), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), [sym_mutability_modifiers] = STATE(938), [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3435), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4416), - [sym_var_declaration] = STATE(4113), - [sym_assignment_statement] = STATE(4113), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4422), + [sym_var_declaration] = STATE(4164), + [sym_assignment_statement] = STATE(4164), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1127), [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51118,117 +51356,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [241] = { [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym__expression] = STATE(1966), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), + [sym__expression] = STATE(1976), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), [sym_mutability_modifiers] = STATE(938), [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3435), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4678), - [sym_var_declaration] = STATE(4113), - [sym_assignment_statement] = STATE(4113), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4420), + [sym_var_declaration] = STATE(4164), + [sym_assignment_statement] = STATE(4164), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1127), [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51238,369 +51476,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [242] = { [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym__expression] = STATE(1966), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_strictly_expression_list] = STATE(4113), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [aux_sym_strictly_expression_list_repeat1] = STATE(1740), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_CR] = ACTIONS(1995), + [anon_sym_CR_LF] = ACTIONS(1995), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym___global] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_fn] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_pub] = ACTIONS(1995), + [anon_sym_mut] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_interface] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(1995), + [anon_sym_spawn] = ACTIONS(1995), + [anon_sym_json_DOTdecode] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2025), + [anon_sym_or] = ACTIONS(2027), + [sym_none] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_nil] = ACTIONS(1995), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_DOLLARif] = ACTIONS(1995), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_select] = ACTIONS(1995), + [anon_sym_STAR_EQ] = ACTIONS(2001), + [anon_sym_SLASH_EQ] = ACTIONS(2001), + [anon_sym_PERCENT_EQ] = ACTIONS(2001), + [anon_sym_LT_LT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_AMP_EQ] = ACTIONS(2001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(2001), + [anon_sym_DASH_EQ] = ACTIONS(2001), + [anon_sym_PIPE_EQ] = ACTIONS(2001), + [anon_sym_CARET_EQ] = ACTIONS(2001), + [anon_sym_COLON_EQ] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(1995), + [anon_sym_rlock] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_sql] = ACTIONS(1995), + [sym_int_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), + [sym_rune_literal] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_c_SQUOTE] = ACTIONS(1995), + [anon_sym_c_DQUOTE] = ACTIONS(1995), + [anon_sym_r_SQUOTE] = ACTIONS(1995), + [anon_sym_r_DQUOTE] = ACTIONS(1995), + [sym_pseudo_compile_time_identifier] = ACTIONS(1995), + [anon_sym_shared] = ACTIONS(1995), + [anon_sym_map_LBRACK] = ACTIONS(1995), + [anon_sym_chan] = ACTIONS(1995), + [anon_sym_thread] = ACTIONS(1995), + [anon_sym_atomic] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_defer] = ACTIONS(1995), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_DOLLARfor] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_asm] = ACTIONS(1995), + [anon_sym_AT_LBRACK] = ACTIONS(1995), + }, + [243] = { + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym__expression] = STATE(1976), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_strictly_expression_list] = STATE(4164), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), [sym_mutability_modifiers] = STATE(938), [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3435), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_simple_statement] = STATE(4684), - [sym_var_declaration] = STATE(4113), - [sym_assignment_statement] = STATE(4113), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4687), + [sym_var_declaration] = STATE(4164), + [sym_assignment_statement] = STATE(4164), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [243] = { - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [aux_sym_strictly_expression_list_repeat1] = STATE(3390), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_CR] = ACTIONS(1997), - [anon_sym_CR_LF] = ACTIONS(1997), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym___global] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1997), - [anon_sym_fn] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_union] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_enum] = ACTIONS(1997), - [anon_sym_interface] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(1997), - [anon_sym_spawn] = ACTIONS(1997), - [anon_sym_json_DOTdecode] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2033), - [anon_sym_or] = ACTIONS(2035), - [sym_none] = ACTIONS(1997), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [sym_nil] = ACTIONS(1997), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_DOLLARif] = ACTIONS(1997), - [anon_sym_is] = ACTIONS(2037), - [anon_sym_BANGis] = ACTIONS(2037), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(2007), - [anon_sym_SLASH_EQ] = ACTIONS(2007), - [anon_sym_PERCENT_EQ] = ACTIONS(2007), - [anon_sym_LT_LT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_AMP_EQ] = ACTIONS(2007), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2007), - [anon_sym_PLUS_EQ] = ACTIONS(2007), - [anon_sym_DASH_EQ] = ACTIONS(2007), - [anon_sym_PIPE_EQ] = ACTIONS(2007), - [anon_sym_CARET_EQ] = ACTIONS(2007), - [anon_sym_COLON_EQ] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(1997), - [anon_sym_rlock] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_sql] = ACTIONS(1997), - [sym_int_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_rune_literal] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [anon_sym_c_SQUOTE] = ACTIONS(1997), - [anon_sym_c_DQUOTE] = ACTIONS(1997), - [anon_sym_r_SQUOTE] = ACTIONS(1997), - [anon_sym_r_DQUOTE] = ACTIONS(1997), - [sym_pseudo_compile_time_identifier] = ACTIONS(1997), - [anon_sym_shared] = ACTIONS(1997), - [anon_sym_map_LBRACK] = ACTIONS(1997), - [anon_sym_chan] = ACTIONS(1997), - [anon_sym_thread] = ACTIONS(1997), - [anon_sym_atomic] = ACTIONS(1997), - [anon_sym_assert] = ACTIONS(1997), - [anon_sym_defer] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_DOLLARfor] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), - [anon_sym_AT_LBRACK] = ACTIONS(1997), - }, [244] = { [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [aux_sym_strictly_expression_list_repeat1] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2043), - [anon_sym_CR] = ACTIONS(2043), - [anon_sym_CR_LF] = ACTIONS(2043), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [aux_sym_strictly_expression_list_repeat1] = STATE(3389), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2037), + [anon_sym_CR] = ACTIONS(2037), + [anon_sym_CR_LF] = ACTIONS(2037), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2045), - [anon_sym___global] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_interface] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2043), - [anon_sym_spawn] = ACTIONS(2043), - [anon_sym_json_DOTdecode] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym___global] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_interface] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2037), + [anon_sym_spawn] = ACTIONS(2037), + [anon_sym_json_DOTdecode] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), [anon_sym_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2033), - [anon_sym_or] = ACTIONS(2035), - [sym_none] = ACTIONS(2043), - [sym_true] = ACTIONS(2043), - [sym_false] = ACTIONS(2043), - [sym_nil] = ACTIONS(2043), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_DOLLARif] = ACTIONS(2043), - [anon_sym_is] = ACTIONS(2037), - [anon_sym_BANGis] = ACTIONS(2037), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_select] = ACTIONS(2043), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_PERCENT_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP_EQ] = ACTIONS(2045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2045), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_PIPE_EQ] = ACTIONS(2045), - [anon_sym_CARET_EQ] = ACTIONS(2045), - [anon_sym_COLON_EQ] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2043), - [anon_sym_rlock] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_sql] = ACTIONS(2043), - [sym_int_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - [sym_rune_literal] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_c_SQUOTE] = ACTIONS(2043), - [anon_sym_c_DQUOTE] = ACTIONS(2043), - [anon_sym_r_SQUOTE] = ACTIONS(2043), - [anon_sym_r_DQUOTE] = ACTIONS(2043), - [sym_pseudo_compile_time_identifier] = ACTIONS(2043), - [anon_sym_shared] = ACTIONS(2043), - [anon_sym_map_LBRACK] = ACTIONS(2043), - [anon_sym_chan] = ACTIONS(2043), - [anon_sym_thread] = ACTIONS(2043), - [anon_sym_atomic] = ACTIONS(2043), - [anon_sym_assert] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_goto] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_DOLLARfor] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_asm] = ACTIONS(2043), - [anon_sym_AT_LBRACK] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2025), + [anon_sym_or] = ACTIONS(2027), + [sym_none] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_nil] = ACTIONS(2037), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_DOLLARif] = ACTIONS(2037), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_select] = ACTIONS(2037), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_COLON_EQ] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2037), + [anon_sym_rlock] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_sql] = ACTIONS(2037), + [sym_int_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + [sym_rune_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_c_SQUOTE] = ACTIONS(2037), + [anon_sym_c_DQUOTE] = ACTIONS(2037), + [anon_sym_r_SQUOTE] = ACTIONS(2037), + [anon_sym_r_DQUOTE] = ACTIONS(2037), + [sym_pseudo_compile_time_identifier] = ACTIONS(2037), + [anon_sym_shared] = ACTIONS(2037), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2037), + [anon_sym_thread] = ACTIONS(2037), + [anon_sym_atomic] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_defer] = ACTIONS(2037), + [anon_sym_goto] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_DOLLARfor] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_asm] = ACTIONS(2037), + [anon_sym_AT_LBRACK] = ACTIONS(2037), }, [245] = { [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), [ts_builtin_sym_end] = ACTIONS(2047), [sym_identifier] = ACTIONS(2049), [anon_sym_LF] = ACTIONS(2049), @@ -51608,28 +51846,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1997), [anon_sym_as] = ACTIONS(2049), [anon_sym_LBRACE] = ACTIONS(2049), [anon_sym_COMMA] = ACTIONS(2049), [anon_sym_const] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2003), [anon_sym_EQ] = ACTIONS(2049), [anon_sym___global] = ACTIONS(2049), [anon_sym_type] = ACTIONS(2049), [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), [anon_sym_LT] = ACTIONS(2049), [anon_sym_GT] = ACTIONS(2049), [anon_sym_EQ_EQ] = ACTIONS(2049), [anon_sym_BANG_EQ] = ACTIONS(2049), [anon_sym_LT_EQ] = ACTIONS(2049), [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2011), [anon_sym_struct] = ACTIONS(2049), [anon_sym_union] = ACTIONS(2049), [anon_sym_pub] = ACTIONS(2049), @@ -51638,21 +51876,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2049), [anon_sym_PLUS_PLUS] = ACTIONS(2049), [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), [anon_sym_go] = ACTIONS(2049), [anon_sym_spawn] = ACTIONS(2049), [anon_sym_json_DOTdecode] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK2] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), [anon_sym_LT_DASH] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2049), - [anon_sym_AMP_CARET] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), [anon_sym_AMP_AMP] = ACTIONS(2049), [anon_sym_PIPE_PIPE] = ACTIONS(2049), [anon_sym_or] = ACTIONS(2049), @@ -51660,8 +51898,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(2049), [sym_false] = ACTIONS(2049), [sym_nil] = ACTIONS(2049), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), [anon_sym_if] = ACTIONS(2049), [anon_sym_DOLLARif] = ACTIONS(2049), [anon_sym_is] = ACTIONS(2049), @@ -51717,9 +51955,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [246] = { [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), [ts_builtin_sym_end] = ACTIONS(2051), [sym_identifier] = ACTIONS(2053), [anon_sym_LF] = ACTIONS(2053), @@ -51727,81 +51965,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2053), [anon_sym_const] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), [anon_sym___global] = ACTIONS(2053), [anon_sym_type] = ACTIONS(2053), [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(2053), [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2011), [anon_sym_struct] = ACTIONS(2053), [anon_sym_union] = ACTIONS(2053), [anon_sym_pub] = ACTIONS(2053), [anon_sym_mut] = ACTIONS(2053), [anon_sym_enum] = ACTIONS(2053), [anon_sym_interface] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), [anon_sym_go] = ACTIONS(2053), [anon_sym_spawn] = ACTIONS(2053), [anon_sym_json_DOTdecode] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(2021), [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2007), [anon_sym_LT_DASH] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), [sym_none] = ACTIONS(2053), [sym_true] = ACTIONS(2053), [sym_false] = ACTIONS(2053), [sym_nil] = ACTIONS(2053), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), [anon_sym_if] = ACTIONS(2053), [anon_sym_DOLLARif] = ACTIONS(2053), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), [anon_sym_match] = ACTIONS(2053), [anon_sym_select] = ACTIONS(2053), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), [anon_sym_lock] = ACTIONS(2053), [anon_sym_rlock] = ACTIONS(2053), [anon_sym_unsafe] = ACTIONS(2053), @@ -51836,366 +52074,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [247] = { [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2033), - [anon_sym_or] = ACTIONS(2035), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2037), - [anon_sym_BANGis] = ACTIONS(2037), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_STAR_EQ] = ACTIONS(2059), - [anon_sym_SLASH_EQ] = ACTIONS(2059), - [anon_sym_PERCENT_EQ] = ACTIONS(2059), - [anon_sym_LT_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_AMP_EQ] = ACTIONS(2059), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2059), - [anon_sym_PLUS_EQ] = ACTIONS(2059), - [anon_sym_DASH_EQ] = ACTIONS(2059), - [anon_sym_PIPE_EQ] = ACTIONS(2059), - [anon_sym_CARET_EQ] = ACTIONS(2059), - [anon_sym_COLON_EQ] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [248] = { [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2057), + [anon_sym___global] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_AMP_CARET] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_STAR_EQ] = ACTIONS(2057), + [anon_sym_SLASH_EQ] = ACTIONS(2057), + [anon_sym_PERCENT_EQ] = ACTIONS(2057), + [anon_sym_LT_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_GT_EQ] = ACTIONS(2057), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2057), + [anon_sym_AMP_EQ] = ACTIONS(2057), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2057), + [anon_sym_PLUS_EQ] = ACTIONS(2057), + [anon_sym_DASH_EQ] = ACTIONS(2057), + [anon_sym_PIPE_EQ] = ACTIONS(2057), + [anon_sym_CARET_EQ] = ACTIONS(2057), + [anon_sym_COLON_EQ] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_rune_literal] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_c_SQUOTE] = ACTIONS(2057), + [anon_sym_c_DQUOTE] = ACTIONS(2057), + [anon_sym_r_SQUOTE] = ACTIONS(2057), + [anon_sym_r_DQUOTE] = ACTIONS(2057), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2057), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2057), + [anon_sym_defer] = ACTIONS(2057), + [anon_sym_goto] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_DOLLARfor] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_asm] = ACTIONS(2057), + [anon_sym_AT_LBRACK] = ACTIONS(2057), }, [249] = { [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_CR] = ACTIONS(2061), + [anon_sym_CR_LF] = ACTIONS(2061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym___global] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_AMP_CARET] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_STAR_EQ] = ACTIONS(2061), + [anon_sym_SLASH_EQ] = ACTIONS(2061), + [anon_sym_PERCENT_EQ] = ACTIONS(2061), + [anon_sym_LT_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_GT_EQ] = ACTIONS(2061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2061), + [anon_sym_AMP_EQ] = ACTIONS(2061), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2061), + [anon_sym_PLUS_EQ] = ACTIONS(2061), + [anon_sym_DASH_EQ] = ACTIONS(2061), + [anon_sym_PIPE_EQ] = ACTIONS(2061), + [anon_sym_CARET_EQ] = ACTIONS(2061), + [anon_sym_COLON_EQ] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_rune_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [anon_sym_c_SQUOTE] = ACTIONS(2061), + [anon_sym_c_DQUOTE] = ACTIONS(2061), + [anon_sym_r_SQUOTE] = ACTIONS(2061), + [anon_sym_r_DQUOTE] = ACTIONS(2061), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2061), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(2061), + [anon_sym_defer] = ACTIONS(2061), + [anon_sym_goto] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_DOLLARfor] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_asm] = ACTIONS(2061), + [anon_sym_AT_LBRACK] = ACTIONS(2061), }, [250] = { [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), + }, + [251] = { + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), [ts_builtin_sym_end] = ACTIONS(2063), [sym_identifier] = ACTIONS(2065), [anon_sym_LF] = ACTIONS(2065), @@ -52203,66 +52560,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1999), [anon_sym_LBRACE] = ACTIONS(2065), [anon_sym_COMMA] = ACTIONS(2065), [anon_sym_const] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2003), [anon_sym_EQ] = ACTIONS(2065), [anon_sym___global] = ACTIONS(2065), [anon_sym_type] = ACTIONS(2065), [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), [anon_sym_struct] = ACTIONS(2065), [anon_sym_union] = ACTIONS(2065), [anon_sym_pub] = ACTIONS(2065), [anon_sym_mut] = ACTIONS(2065), [anon_sym_enum] = ACTIONS(2065), [anon_sym_interface] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_PLUS_PLUS] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), [anon_sym_go] = ACTIONS(2065), [anon_sym_spawn] = ACTIONS(2065), [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_LBRACK2] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2065), - [anon_sym_AMP_CARET] = ACTIONS(2065), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2025), + [anon_sym_or] = ACTIONS(2027), [sym_none] = ACTIONS(2065), [sym_true] = ACTIONS(2065), [sym_false] = ACTIONS(2065), [sym_nil] = ACTIONS(2065), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), [anon_sym_if] = ACTIONS(2065), [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), [anon_sym_match] = ACTIONS(2065), [anon_sym_select] = ACTIONS(2065), [anon_sym_STAR_EQ] = ACTIONS(2065), @@ -52309,131 +52666,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2065), [anon_sym_AT_LBRACK] = ACTIONS(2065), }, - [251] = { - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), - }, [252] = { [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), [ts_builtin_sym_end] = ACTIONS(2067), [sym_identifier] = ACTIONS(2069), [anon_sym_LF] = ACTIONS(2069), @@ -52441,66 +52679,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1999), [anon_sym_LBRACE] = ACTIONS(2069), [anon_sym_COMMA] = ACTIONS(2069), [anon_sym_const] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2003), [anon_sym_EQ] = ACTIONS(2069), [anon_sym___global] = ACTIONS(2069), [anon_sym_type] = ACTIONS(2069), [anon_sym_fn] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), [anon_sym_struct] = ACTIONS(2069), [anon_sym_union] = ACTIONS(2069), [anon_sym_pub] = ACTIONS(2069), [anon_sym_mut] = ACTIONS(2069), [anon_sym_enum] = ACTIONS(2069), [anon_sym_interface] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_PLUS_PLUS] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), [anon_sym_go] = ACTIONS(2069), [anon_sym_spawn] = ACTIONS(2069), [anon_sym_json_DOTdecode] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), [anon_sym_LT_DASH] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2033), - [anon_sym_or] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2025), + [anon_sym_or] = ACTIONS(2027), [sym_none] = ACTIONS(2069), [sym_true] = ACTIONS(2069), [sym_false] = ACTIONS(2069), [sym_nil] = ACTIONS(2069), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), [anon_sym_if] = ACTIONS(2069), [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(2037), - [anon_sym_BANGis] = ACTIONS(2037), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), + [anon_sym_is] = ACTIONS(2071), + [anon_sym_BANGis] = ACTIONS(2071), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), [anon_sym_match] = ACTIONS(2069), [anon_sym_select] = ACTIONS(2069), [anon_sym_STAR_EQ] = ACTIONS(2069), @@ -52550,366 +52788,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [253] = { [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2073), - [anon_sym_CR] = ACTIONS(2073), - [anon_sym_CR_LF] = ACTIONS(2073), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym___global] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2073), - [anon_sym_spawn] = ACTIONS(2073), - [anon_sym_json_DOTdecode] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2033), - [anon_sym_or] = ACTIONS(2035), - [sym_none] = ACTIONS(2073), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_nil] = ACTIONS(2073), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_DOLLARif] = ACTIONS(2073), - [anon_sym_is] = ACTIONS(2075), - [anon_sym_BANGis] = ACTIONS(2075), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_select] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_LT_LT_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_AMP_EQ] = ACTIONS(2073), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_PIPE_EQ] = ACTIONS(2073), - [anon_sym_CARET_EQ] = ACTIONS(2073), - [anon_sym_COLON_EQ] = ACTIONS(2073), - [anon_sym_lock] = ACTIONS(2073), - [anon_sym_rlock] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_sql] = ACTIONS(2073), - [sym_int_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_rune_literal] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_c_SQUOTE] = ACTIONS(2073), - [anon_sym_c_DQUOTE] = ACTIONS(2073), - [anon_sym_r_SQUOTE] = ACTIONS(2073), - [anon_sym_r_DQUOTE] = ACTIONS(2073), - [sym_pseudo_compile_time_identifier] = ACTIONS(2073), - [anon_sym_shared] = ACTIONS(2073), - [anon_sym_map_LBRACK] = ACTIONS(2073), - [anon_sym_chan] = ACTIONS(2073), - [anon_sym_thread] = ACTIONS(2073), - [anon_sym_atomic] = ACTIONS(2073), - [anon_sym_assert] = ACTIONS(2073), - [anon_sym_defer] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_DOLLARfor] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_asm] = ACTIONS(2073), - [anon_sym_AT_LBRACK] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [254] = { [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_EQ_EQ] = ACTIONS(2013), - [anon_sym_BANG_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2075), + [anon_sym___global] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2075), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2025), + [anon_sym_or] = ACTIONS(2027), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_COLON_EQ] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), + [anon_sym_AT_LBRACK] = ACTIONS(2075), }, [255] = { [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2025), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), - }, - [256] = { - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_type_parameters] = STATE(4296), - [sym_argument_list] = STATE(392), - [sym_or_block] = STATE(391), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), [ts_builtin_sym_end] = ACTIONS(2077), [sym_identifier] = ACTIONS(2079), [anon_sym_LF] = ACTIONS(2079), @@ -52917,81 +53036,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2079), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2053), [anon_sym_const] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), [anon_sym___global] = ACTIONS(2079), [anon_sym_type] = ACTIONS(2079), [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2011), [anon_sym_struct] = ACTIONS(2079), [anon_sym_union] = ACTIONS(2079), [anon_sym_pub] = ACTIONS(2079), [anon_sym_mut] = ACTIONS(2079), [anon_sym_enum] = ACTIONS(2079), [anon_sym_interface] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), [anon_sym_go] = ACTIONS(2079), [anon_sym_spawn] = ACTIONS(2079), [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(2021), [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), [anon_sym_LT_DASH] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), [sym_none] = ACTIONS(2079), [sym_true] = ACTIONS(2079), [sym_false] = ACTIONS(2079), [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(1999), - [anon_sym_POUND_LBRACK] = ACTIONS(2025), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), [anon_sym_if] = ACTIONS(2079), [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), [anon_sym_match] = ACTIONS(2079), [anon_sym_select] = ACTIONS(2079), - [anon_sym_STAR_EQ] = ACTIONS(2079), - [anon_sym_SLASH_EQ] = ACTIONS(2079), - [anon_sym_PERCENT_EQ] = ACTIONS(2079), - [anon_sym_LT_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_GT_EQ] = ACTIONS(2079), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2079), - [anon_sym_AMP_EQ] = ACTIONS(2079), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2079), - [anon_sym_PLUS_EQ] = ACTIONS(2079), - [anon_sym_DASH_EQ] = ACTIONS(2079), - [anon_sym_PIPE_EQ] = ACTIONS(2079), - [anon_sym_CARET_EQ] = ACTIONS(2079), - [anon_sym_COLON_EQ] = ACTIONS(2079), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), [anon_sym_lock] = ACTIONS(2079), [anon_sym_rlock] = ACTIONS(2079), [anon_sym_unsafe] = ACTIONS(2079), @@ -53023,37 +53142,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2079), [anon_sym_AT_LBRACK] = ACTIONS(2079), }, - [257] = { - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_else_branch] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_CR] = ACTIONS(2083), - [anon_sym_CR_LF] = ACTIONS(2083), + [256] = { + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_type_parameters] = STATE(4293), + [sym_argument_list] = STATE(390), + [sym_or_block] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_EQ] = ACTIONS(2083), - [anon_sym___global] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2083), - [anon_sym_EQ_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK2] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2007), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_GT_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_CARET] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(1997), + [anon_sym_POUND_LBRACK] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), + }, + [257] = { + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_else_branch] = STATE(524), + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_CR] = ACTIONS(2083), + [anon_sym_CR_LF] = ACTIONS(2083), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym___global] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2083), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2083), [anon_sym_GT_EQ] = ACTIONS(2083), [anon_sym_LBRACK] = ACTIONS(2081), [anon_sym_struct] = ACTIONS(2083), @@ -53144,7 +53382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [258] = { [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_else_branch] = STATE(520), + [sym_else_branch] = STATE(526), [ts_builtin_sym_end] = ACTIONS(2087), [sym_identifier] = ACTIONS(2089), [anon_sym_LF] = ACTIONS(2089), @@ -53325,7 +53563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(2095), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2093), [anon_sym_in] = ACTIONS(2093), @@ -53379,348 +53617,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [260] = { [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_COLON_EQ] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), - }, - [261] = { - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4169), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1066), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [261] = { + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym___global] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(2107), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_STAR_EQ] = ACTIONS(2105), + [anon_sym_SLASH_EQ] = ACTIONS(2105), + [anon_sym_PERCENT_EQ] = ACTIONS(2105), + [anon_sym_LT_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_GT_EQ] = ACTIONS(2105), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), + [anon_sym_AMP_EQ] = ACTIONS(2105), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2105), + [anon_sym_PLUS_EQ] = ACTIONS(2105), + [anon_sym_DASH_EQ] = ACTIONS(2105), + [anon_sym_PIPE_EQ] = ACTIONS(2105), + [anon_sym_CARET_EQ] = ACTIONS(2105), + [anon_sym_COLON_EQ] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + [anon_sym_AT_LBRACK] = ACTIONS(2105), + }, [262] = { [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4317), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2501), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53730,114 +53968,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [263] = { [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4369), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2646), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53847,114 +54085,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [264] = { [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4316), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2475), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53964,114 +54202,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [265] = { [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2615), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2596), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4311), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4313), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54081,114 +54319,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [266] = { [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4317), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2501), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2479), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4214), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54198,114 +54436,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [267] = { [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym__expression] = STATE(2436), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4216), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4170), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1064), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54315,114 +54553,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [268] = { [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym__expression] = STATE(2465), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4168), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54432,114 +54670,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [269] = { [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54549,348 +54787,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [270] = { [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(2141), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_STAR_EQ] = ACTIONS(2139), - [anon_sym_SLASH_EQ] = ACTIONS(2139), - [anon_sym_PERCENT_EQ] = ACTIONS(2139), - [anon_sym_LT_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_AMP_EQ] = ACTIONS(2139), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), - [anon_sym_PLUS_EQ] = ACTIONS(2139), - [anon_sym_DASH_EQ] = ACTIONS(2139), - [anon_sym_PIPE_EQ] = ACTIONS(2139), - [anon_sym_CARET_EQ] = ACTIONS(2139), - [anon_sym_COLON_EQ] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), - [anon_sym_AT_LBRACK] = ACTIONS(2139), - }, - [271] = { - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4215), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2078), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4370), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2648), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [271] = { + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), + }, [272] = { [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym__expression] = STATE(2471), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2415), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4133), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4131), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54900,114 +55138,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [273] = { [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym__expression] = STATE(2419), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2439), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4239), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4169), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55017,114 +55255,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [274] = { [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4369), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2646), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2408), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4324), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55134,114 +55372,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [275] = { [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4317), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2501), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4370), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2648), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55251,231 +55489,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [276] = { [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_LT_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_AMP_EQ] = ACTIONS(2093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_PIPE_EQ] = ACTIONS(2093), - [anon_sym_CARET_EQ] = ACTIONS(2093), - [anon_sym_COLON_EQ] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [277] = { [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55485,114 +55723,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [278] = { [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4120), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2972), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4130), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2932), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55602,114 +55840,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [279] = { [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(285), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4316), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2475), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55719,114 +55957,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [280] = { [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4316), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2343), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2502), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4405), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55836,231 +56074,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [281] = { [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4406), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1665), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [282] = { [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym__expression] = STATE(2426), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4403), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(285), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56070,114 +56308,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [283] = { [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(309), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4138), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1326), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56187,114 +56425,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [284] = { [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56304,114 +56542,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [285] = { [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56421,114 +56659,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [286] = { [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym__expression] = STATE(2405), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2396), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_var_declaration] = STATE(4251), - [sym_identifier] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56538,114 +56776,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [287] = { [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2502), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2596), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4405), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56655,231 +56893,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [288] = { [sym_line_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4294), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1357), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [289] = { [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56889,465 +57127,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [290] = { [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), - [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(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [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_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(2178), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(2181), - [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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [291] = { [sym_line_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4311), - [sym_identifier] = ACTIONS(2099), + [sym_type_parameters] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_EQ] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_STAR_EQ] = ACTIONS(2187), + [anon_sym_SLASH_EQ] = ACTIONS(2187), + [anon_sym_PERCENT_EQ] = ACTIONS(2187), + [anon_sym_LT_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_AMP_EQ] = ACTIONS(2187), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2187), + [anon_sym_PLUS_EQ] = ACTIONS(2187), + [anon_sym_DASH_EQ] = ACTIONS(2187), + [anon_sym_PIPE_EQ] = ACTIONS(2187), + [anon_sym_CARET_EQ] = ACTIONS(2187), + [anon_sym_COLON_EQ] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [292] = { + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4252), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(468), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [292] = { - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_type_parameters] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_LT_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_AMP_EQ] = ACTIONS(2185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_PIPE_EQ] = ACTIONS(2185), - [anon_sym_CARET_EQ] = ACTIONS(2185), - [anon_sym_COLON_EQ] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), - }, [293] = { [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4313), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57357,114 +57595,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [294] = { [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4252), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(469), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4370), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2648), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57474,114 +57712,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [295] = { [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57591,114 +57829,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [296] = { [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4318), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2356), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57708,114 +57946,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [297] = { [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4212), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2088), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57825,114 +58063,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [298] = { [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2452), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4371), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4374), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57942,114 +58180,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [299] = { [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2486), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4135), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4134), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58059,114 +58297,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [300] = { [sym_line_comment] = STATE(300), [sym_block_comment] = STATE(300), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4369), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2646), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4245), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2216), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58176,114 +58414,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [301] = { [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4248), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2075), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2454), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(869), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4250), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58293,114 +58531,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [302] = { [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58410,114 +58648,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [303] = { [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym__expression] = STATE(2429), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4249), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4323), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1243), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58527,114 +58765,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [304] = { [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym__expression] = STATE(2426), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2615), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4403), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58644,114 +58882,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [305] = { [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4128), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2745), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58761,114 +58999,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [306] = { [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58878,114 +59116,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [307] = { [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58995,114 +59233,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [308] = { [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4317), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2501), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4128), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2742), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -59112,114 +59350,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [309] = { [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4318), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2356), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -59229,261 +59467,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [310] = { [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2248), - [anon_sym_spawn] = ACTIONS(2251), - [anon_sym_json_DOTdecode] = ACTIONS(2254), - [anon_sym_LBRACK2] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_LT_DASH] = ACTIONS(2263), - [sym_none] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_nil] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_select] = ACTIONS(2278), - [anon_sym_lock] = ACTIONS(2281), - [anon_sym_rlock] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_sql] = ACTIONS(2287), - [sym_int_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2290), - [sym_rune_literal] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_c_SQUOTE] = ACTIONS(2299), - [anon_sym_c_DQUOTE] = ACTIONS(2302), - [anon_sym_r_SQUOTE] = ACTIONS(2305), - [anon_sym_r_DQUOTE] = ACTIONS(2308), - [sym_pseudo_compile_time_identifier] = ACTIONS(2311), - [anon_sym_shared] = ACTIONS(2314), - [anon_sym_map_LBRACK] = ACTIONS(2317), - [anon_sym_chan] = ACTIONS(2320), - [anon_sym_thread] = ACTIONS(2323), - [anon_sym_atomic] = ACTIONS(2326), + [anon_sym_DOT] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_mut] = ACTIONS(2243), + [anon_sym_QMARK] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2255), + [anon_sym_json_DOTdecode] = ACTIONS(2258), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_LT_DASH] = ACTIONS(2267), + [sym_none] = ACTIONS(2270), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_nil] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_select] = ACTIONS(2282), + [anon_sym_lock] = ACTIONS(2285), + [anon_sym_rlock] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2288), + [anon_sym_sql] = ACTIONS(2291), + [sym_int_literal] = ACTIONS(2270), + [sym_float_literal] = ACTIONS(2294), + [sym_rune_literal] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_c_SQUOTE] = ACTIONS(2303), + [anon_sym_c_DQUOTE] = ACTIONS(2306), + [anon_sym_r_SQUOTE] = ACTIONS(2309), + [anon_sym_r_DQUOTE] = ACTIONS(2312), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2318), + [anon_sym_map_LBRACK] = ACTIONS(2321), + [anon_sym_chan] = ACTIONS(2324), + [anon_sym_thread] = ACTIONS(2327), + [anon_sym_atomic] = ACTIONS(2330), }, [311] = { [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_CR] = ACTIONS(2331), - [anon_sym_CR_LF] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2331), - [anon_sym___global] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [anon_sym_interface] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2331), - [anon_sym_LT_LT] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2331), - [anon_sym_AMP_CARET] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2331), - [anon_sym_POUND_LBRACK] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(2333), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2331), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_STAR_EQ] = ACTIONS(2331), - [anon_sym_SLASH_EQ] = ACTIONS(2331), - [anon_sym_PERCENT_EQ] = ACTIONS(2331), - [anon_sym_LT_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_GT_EQ] = ACTIONS(2331), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2331), - [anon_sym_AMP_EQ] = ACTIONS(2331), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2331), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_PIPE_EQ] = ACTIONS(2331), - [anon_sym_CARET_EQ] = ACTIONS(2331), - [anon_sym_COLON_EQ] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_rune_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_c_SQUOTE] = ACTIONS(2331), - [anon_sym_c_DQUOTE] = ACTIONS(2331), - [anon_sym_r_SQUOTE] = ACTIONS(2331), - [anon_sym_r_DQUOTE] = ACTIONS(2331), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2331), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), - [anon_sym_assert] = ACTIONS(2331), - [anon_sym_defer] = ACTIONS(2331), - [anon_sym_goto] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_DOLLARfor] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2331), - [anon_sym_asm] = ACTIONS(2331), - [anon_sym_AT_LBRACK] = ACTIONS(2331), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4316), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2475), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [312] = { [sym_line_comment] = STATE(312), [sym_block_comment] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [313] = { + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2147), [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2147), [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), [anon_sym_EQ] = ACTIONS(2335), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), [anon_sym_SLASH] = ACTIONS(2335), [anon_sym_PERCENT] = ACTIONS(2335), [anon_sym_LT] = ACTIONS(2335), @@ -59493,25 +59848,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(2335), [anon_sym_GT_EQ] = ACTIONS(2335), [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), [anon_sym_PLUS_PLUS] = ACTIONS(2335), [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), [anon_sym_LT_LT] = ACTIONS(2335), [anon_sym_GT_GT] = ACTIONS(2335), [anon_sym_GT_GT_GT] = ACTIONS(2335), @@ -59519,20 +59874,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(2335), [anon_sym_PIPE_PIPE] = ACTIONS(2335), [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), [anon_sym_QMARK_DOT] = ACTIONS(2335), [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), [anon_sym_is] = ACTIONS(2335), [anon_sym_BANGis] = ACTIONS(2335), [anon_sym_in] = ACTIONS(2335), [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), [anon_sym_STAR_EQ] = ACTIONS(2335), [anon_sym_SLASH_EQ] = ACTIONS(2335), [anon_sym_PERCENT_EQ] = ACTIONS(2335), @@ -59546,733 +59901,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(2335), [anon_sym_CARET_EQ] = ACTIONS(2335), [anon_sym_COLON_EQ] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, - [313] = { - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(1772), + [314] = { + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [314] = { - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(1772), + [315] = { + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [315] = { - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [316] = { + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4361), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4362), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [316] = { - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4324), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1186), - [sym_identifier] = ACTIONS(2099), + [317] = { + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4138), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1326), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [317] = { - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_COLON_EQ] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), - }, [318] = { [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(293), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60282,114 +60520,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [319] = { [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [sym__expression] = STATE(2425), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4309), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4310), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60399,114 +60637,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [320] = { [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4316), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2343), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4212), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2088), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60516,114 +60754,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [321] = { [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4294), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1357), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4406), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1667), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60633,114 +60871,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [322] = { [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4215), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(2078), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60750,114 +60988,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [323] = { [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60867,114 +61105,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [324] = { [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60984,114 +61222,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [325] = { [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4363), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1499), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61101,114 +61339,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [326] = { [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4324), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1186), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61218,114 +61456,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [327] = { [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4406), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1665), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4316), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2475), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61335,114 +61573,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [328] = { [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_map_init_expression_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61452,114 +61690,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [329] = { [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4362), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_block] = STATE(1504), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_map_keyed_element] = STATE(2199), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61569,114 +61807,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [330] = { [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(307), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4406), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1667), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61686,114 +61924,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [331] = { [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2411), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3969), - [sym_expression_list] = STATE(4597), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_var_declaration] = STATE(4114), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(3972), + [sym_expression_list] = STATE(4599), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4115), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -61803,114 +62041,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [332] = { [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_map_keyed_element] = STATE(2165), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_map_init_expression_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4323), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1243), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -62036,229 +62274,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [334] = { [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_CR] = ACTIONS(2377), + [anon_sym_CR_LF] = ACTIONS(2377), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2377), + [anon_sym___global] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_STAR_EQ] = ACTIONS(2377), + [anon_sym_SLASH_EQ] = ACTIONS(2377), + [anon_sym_PERCENT_EQ] = ACTIONS(2377), + [anon_sym_LT_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_GT_EQ] = ACTIONS(2377), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2377), + [anon_sym_AMP_EQ] = ACTIONS(2377), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2377), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_PIPE_EQ] = ACTIONS(2377), + [anon_sym_CARET_EQ] = ACTIONS(2377), + [anon_sym_COLON_EQ] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2377), + [anon_sym_defer] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_DOLLARfor] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym_AT_LBRACK] = ACTIONS(2377), }, [335] = { [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4422), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4421), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -62268,577 +62506,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [336] = { [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_CR] = ACTIONS(2387), - [anon_sym_CR_LF] = ACTIONS(2387), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(2387), - [anon_sym___global] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_pub] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_interface] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2387), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2387), - [anon_sym_POUND_LBRACK] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_STAR_EQ] = ACTIONS(2387), - [anon_sym_SLASH_EQ] = ACTIONS(2387), - [anon_sym_PERCENT_EQ] = ACTIONS(2387), - [anon_sym_LT_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_GT_EQ] = ACTIONS(2387), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2387), - [anon_sym_AMP_EQ] = ACTIONS(2387), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(2387), - [anon_sym_DASH_EQ] = ACTIONS(2387), - [anon_sym_PIPE_EQ] = ACTIONS(2387), - [anon_sym_CARET_EQ] = ACTIONS(2387), - [anon_sym_COLON_EQ] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_rune_literal] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_c_SQUOTE] = ACTIONS(2387), - [anon_sym_c_DQUOTE] = ACTIONS(2387), - [anon_sym_r_SQUOTE] = ACTIONS(2387), - [anon_sym_r_DQUOTE] = ACTIONS(2387), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2387), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), - [anon_sym_assert] = ACTIONS(2387), - [anon_sym_defer] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_DOLLARfor] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(2387), - [anon_sym_asm] = ACTIONS(2387), - [anon_sym_AT_LBRACK] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(2383), + [anon_sym___global] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_interface] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_STAR_EQ] = ACTIONS(2383), + [anon_sym_SLASH_EQ] = ACTIONS(2383), + [anon_sym_PERCENT_EQ] = ACTIONS(2383), + [anon_sym_LT_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_AMP_EQ] = ACTIONS(2383), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2383), + [anon_sym_PLUS_EQ] = ACTIONS(2383), + [anon_sym_DASH_EQ] = ACTIONS(2383), + [anon_sym_PIPE_EQ] = ACTIONS(2383), + [anon_sym_CARET_EQ] = ACTIONS(2383), + [anon_sym_COLON_EQ] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym_AT_LBRACK] = ACTIONS(2383), }, [337] = { [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4472), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4479), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [338] = { [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4472), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4479), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [339] = { [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4625), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2605), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4624), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [340] = { [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4422), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4421), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -62848,461 +63086,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [341] = { [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_CR] = ACTIONS(2393), - [anon_sym_CR_LF] = ACTIONS(2393), + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2397), + [anon_sym_CR] = ACTIONS(2397), + [anon_sym_CR_LF] = ACTIONS(2397), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(2393), - [anon_sym___global] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2393), - [anon_sym_BANG_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [anon_sym_CARET] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2393), - [anon_sym_AMP_CARET] = ACTIONS(2393), - [anon_sym_AMP_AMP] = ACTIONS(2393), - [anon_sym_PIPE_PIPE] = ACTIONS(2393), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2393), - [anon_sym_POUND_LBRACK] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_STAR_EQ] = ACTIONS(2393), - [anon_sym_SLASH_EQ] = ACTIONS(2393), - [anon_sym_PERCENT_EQ] = ACTIONS(2393), - [anon_sym_LT_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_GT_EQ] = ACTIONS(2393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2393), - [anon_sym_AMP_EQ] = ACTIONS(2393), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2393), - [anon_sym_PLUS_EQ] = ACTIONS(2393), - [anon_sym_DASH_EQ] = ACTIONS(2393), - [anon_sym_PIPE_EQ] = ACTIONS(2393), - [anon_sym_CARET_EQ] = ACTIONS(2393), - [anon_sym_COLON_EQ] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_rune_literal] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [anon_sym_c_SQUOTE] = ACTIONS(2393), - [anon_sym_c_DQUOTE] = ACTIONS(2393), - [anon_sym_r_SQUOTE] = ACTIONS(2393), - [anon_sym_r_DQUOTE] = ACTIONS(2393), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2393), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), - [anon_sym_assert] = ACTIONS(2393), - [anon_sym_defer] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_DOLLARfor] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_asm] = ACTIONS(2393), - [anon_sym_AT_LBRACK] = ACTIONS(2393), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym___global] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2397), + [anon_sym_AMP_CARET] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2397), + [anon_sym_POUND_LBRACK] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_STAR_EQ] = ACTIONS(2397), + [anon_sym_SLASH_EQ] = ACTIONS(2397), + [anon_sym_PERCENT_EQ] = ACTIONS(2397), + [anon_sym_LT_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_GT_EQ] = ACTIONS(2397), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2397), + [anon_sym_AMP_EQ] = ACTIONS(2397), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(2397), + [anon_sym_DASH_EQ] = ACTIONS(2397), + [anon_sym_PIPE_EQ] = ACTIONS(2397), + [anon_sym_CARET_EQ] = ACTIONS(2397), + [anon_sym_COLON_EQ] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_rune_literal] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_c_SQUOTE] = ACTIONS(2397), + [anon_sym_c_DQUOTE] = ACTIONS(2397), + [anon_sym_r_SQUOTE] = ACTIONS(2397), + [anon_sym_r_DQUOTE] = ACTIONS(2397), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), + [anon_sym_assert] = ACTIONS(2397), + [anon_sym_defer] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_DOLLARfor] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_asm] = ACTIONS(2397), + [anon_sym_AT_LBRACK] = ACTIONS(2397), }, [342] = { [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_STAR_EQ] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2401), + [anon_sym_PERCENT_EQ] = ACTIONS(2401), + [anon_sym_LT_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_AMP_EQ] = ACTIONS(2401), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2401), + [anon_sym_PLUS_EQ] = ACTIONS(2401), + [anon_sym_DASH_EQ] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2401), + [anon_sym_COLON_EQ] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), + }, + [343] = { + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [343] = { - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2335), - [anon_sym_CR] = ACTIONS(2335), - [anon_sym_CR_LF] = ACTIONS(2335), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_EQ] = ACTIONS(2335), - [anon_sym___global] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_PERCENT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), - [anon_sym_EQ_EQ] = ACTIONS(2335), - [anon_sym_BANG_EQ] = ACTIONS(2335), - [anon_sym_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_EQ] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_interface] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_go] = ACTIONS(2335), - [anon_sym_spawn] = ACTIONS(2335), - [anon_sym_json_DOTdecode] = ACTIONS(2335), - [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_LT_DASH] = ACTIONS(2335), - [anon_sym_LT_LT] = ACTIONS(2335), - [anon_sym_GT_GT] = ACTIONS(2335), - [anon_sym_GT_GT_GT] = ACTIONS(2335), - [anon_sym_AMP_CARET] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_PIPE_PIPE] = ACTIONS(2335), - [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_nil] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(2335), - [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_DOLLARif] = ACTIONS(2335), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_BANGis] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_select] = ACTIONS(2335), - [anon_sym_STAR_EQ] = ACTIONS(2335), - [anon_sym_SLASH_EQ] = ACTIONS(2335), - [anon_sym_PERCENT_EQ] = ACTIONS(2335), - [anon_sym_LT_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_GT_EQ] = ACTIONS(2335), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2335), - [anon_sym_AMP_EQ] = ACTIONS(2335), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2335), - [anon_sym_PLUS_EQ] = ACTIONS(2335), - [anon_sym_DASH_EQ] = ACTIONS(2335), - [anon_sym_PIPE_EQ] = ACTIONS(2335), - [anon_sym_CARET_EQ] = ACTIONS(2335), - [anon_sym_COLON_EQ] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2335), - [anon_sym_rlock] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_sql] = ACTIONS(2335), - [sym_int_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_rune_literal] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_c_SQUOTE] = ACTIONS(2335), - [anon_sym_c_DQUOTE] = ACTIONS(2335), - [anon_sym_r_SQUOTE] = ACTIONS(2335), - [anon_sym_r_DQUOTE] = ACTIONS(2335), - [sym_pseudo_compile_time_identifier] = ACTIONS(2335), - [anon_sym_shared] = ACTIONS(2335), - [anon_sym_map_LBRACK] = ACTIONS(2335), - [anon_sym_chan] = ACTIONS(2335), - [anon_sym_thread] = ACTIONS(2335), - [anon_sym_atomic] = ACTIONS(2335), - [anon_sym_assert] = ACTIONS(2335), - [anon_sym_defer] = ACTIONS(2335), - [anon_sym_goto] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_DOLLARfor] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(2335), - [anon_sym_asm] = ACTIONS(2335), - [anon_sym_AT_LBRACK] = ACTIONS(2335), - }, [344] = { [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4425), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -63312,113 +63550,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [345] = { [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4427), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -63428,461 +63666,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [346] = { [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(2417), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_CR] = ACTIONS(2419), - [anon_sym_CR_LF] = ACTIONS(2419), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(2419), - [anon_sym___global] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2419), - [anon_sym_BANG_EQ] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_EQ] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_interface] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2417), [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2419), - [anon_sym_LT_LT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2419), - [anon_sym_AMP_CARET] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2419), - [anon_sym_POUND_LBRACK] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_STAR_EQ] = ACTIONS(2419), - [anon_sym_SLASH_EQ] = ACTIONS(2419), - [anon_sym_PERCENT_EQ] = ACTIONS(2419), - [anon_sym_LT_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_GT_EQ] = ACTIONS(2419), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2419), - [anon_sym_AMP_EQ] = ACTIONS(2419), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2419), - [anon_sym_PLUS_EQ] = ACTIONS(2419), - [anon_sym_DASH_EQ] = ACTIONS(2419), - [anon_sym_PIPE_EQ] = ACTIONS(2419), - [anon_sym_CARET_EQ] = ACTIONS(2419), - [anon_sym_COLON_EQ] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_rune_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_c_SQUOTE] = ACTIONS(2419), - [anon_sym_c_DQUOTE] = ACTIONS(2419), - [anon_sym_r_SQUOTE] = ACTIONS(2419), - [anon_sym_r_DQUOTE] = ACTIONS(2419), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2419), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), - [anon_sym_assert] = ACTIONS(2419), - [anon_sym_defer] = ACTIONS(2419), - [anon_sym_goto] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_DOLLARfor] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2419), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym_AT_LBRACK] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [347] = { [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4606), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2588), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4612), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [348] = { [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_CR] = ACTIONS(2429), + [anon_sym_CR_LF] = ACTIONS(2429), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(2423), - [anon_sym___global] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_STAR_EQ] = ACTIONS(2423), - [anon_sym_SLASH_EQ] = ACTIONS(2423), - [anon_sym_PERCENT_EQ] = ACTIONS(2423), - [anon_sym_LT_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_AMP_EQ] = ACTIONS(2423), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(2423), - [anon_sym_DASH_EQ] = ACTIONS(2423), - [anon_sym_PIPE_EQ] = ACTIONS(2423), - [anon_sym_CARET_EQ] = ACTIONS(2423), - [anon_sym_COLON_EQ] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), - [anon_sym_AT_LBRACK] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(2429), + [anon_sym___global] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_COLON_EQ] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + [anon_sym_assert] = ACTIONS(2429), + [anon_sym_defer] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_DOLLARfor] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2429), + [anon_sym_asm] = ACTIONS(2429), + [anon_sym_AT_LBRACK] = ACTIONS(2429), }, [349] = { [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -63892,345 +64130,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [350] = { [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4606), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2588), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4612), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [351] = { [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2433), + [sym_identifier] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2435), + [anon_sym_CR] = ACTIONS(2435), + [anon_sym_CR_LF] = ACTIONS(2435), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2435), + [anon_sym___global] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_interface] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2435), + [anon_sym_LT_LT] = ACTIONS(2435), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2435), + [anon_sym_AMP_CARET] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2435), + [anon_sym_POUND_LBRACK] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_STAR_EQ] = ACTIONS(2435), + [anon_sym_SLASH_EQ] = ACTIONS(2435), + [anon_sym_PERCENT_EQ] = ACTIONS(2435), + [anon_sym_LT_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_GT_EQ] = ACTIONS(2435), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2435), + [anon_sym_AMP_EQ] = ACTIONS(2435), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2435), + [anon_sym_DASH_EQ] = ACTIONS(2435), + [anon_sym_PIPE_EQ] = ACTIONS(2435), + [anon_sym_CARET_EQ] = ACTIONS(2435), + [anon_sym_COLON_EQ] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_rune_literal] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_c_SQUOTE] = ACTIONS(2435), + [anon_sym_c_DQUOTE] = ACTIONS(2435), + [anon_sym_r_SQUOTE] = ACTIONS(2435), + [anon_sym_r_DQUOTE] = ACTIONS(2435), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2435), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), + [anon_sym_assert] = ACTIONS(2435), + [anon_sym_defer] = ACTIONS(2435), + [anon_sym_goto] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_DOLLARfor] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_asm] = ACTIONS(2435), + [anon_sym_AT_LBRACK] = ACTIONS(2435), }, [352] = { [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), [sym_expression_list] = STATE(4440), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -64240,113 +64478,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [353] = { [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -64356,925 +64594,925 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [354] = { [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4415), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4466), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [355] = { [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4415), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4466), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [356] = { [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_COMMA] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2433), - [anon_sym___global] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2433), - [anon_sym_AMP_CARET] = ACTIONS(2433), - [anon_sym_AMP_AMP] = ACTIONS(2433), - [anon_sym_PIPE_PIPE] = ACTIONS(2433), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2433), - [anon_sym_POUND_LBRACK] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_COLON_EQ] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), - [anon_sym_AT_LBRACK] = ACTIONS(2433), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [357] = { [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2437), - [anon_sym___global] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_STAR_EQ] = ACTIONS(2437), - [anon_sym_SLASH_EQ] = ACTIONS(2437), - [anon_sym_PERCENT_EQ] = ACTIONS(2437), - [anon_sym_LT_LT_EQ] = ACTIONS(2437), - [anon_sym_GT_GT_EQ] = ACTIONS(2437), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2437), - [anon_sym_AMP_EQ] = ACTIONS(2437), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2437), - [anon_sym_PLUS_EQ] = ACTIONS(2437), - [anon_sym_DASH_EQ] = ACTIONS(2437), - [anon_sym_PIPE_EQ] = ACTIONS(2437), - [anon_sym_CARET_EQ] = ACTIONS(2437), - [anon_sym_COLON_EQ] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), - [anon_sym_AT_LBRACK] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2443), + [anon_sym___global] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [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(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [358] = { [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym___global] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [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(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_interface] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [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(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_STAR_EQ] = ACTIONS(2447), - [anon_sym_SLASH_EQ] = ACTIONS(2447), - [anon_sym_PERCENT_EQ] = ACTIONS(2447), - [anon_sym_LT_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_GT_EQ] = ACTIONS(2447), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2447), - [anon_sym_AMP_EQ] = ACTIONS(2447), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2447), - [anon_sym_PLUS_EQ] = ACTIONS(2447), - [anon_sym_DASH_EQ] = ACTIONS(2447), - [anon_sym_PIPE_EQ] = ACTIONS(2447), - [anon_sym_CARET_EQ] = ACTIONS(2447), - [anon_sym_COLON_EQ] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), - [anon_sym_AT_LBRACK] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_STAR_EQ] = ACTIONS(2453), + [anon_sym_SLASH_EQ] = ACTIONS(2453), + [anon_sym_PERCENT_EQ] = ACTIONS(2453), + [anon_sym_LT_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_GT_EQ] = ACTIONS(2453), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2453), + [anon_sym_AMP_EQ] = ACTIONS(2453), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(2453), + [anon_sym_DASH_EQ] = ACTIONS(2453), + [anon_sym_PIPE_EQ] = ACTIONS(2453), + [anon_sym_CARET_EQ] = ACTIONS(2453), + [anon_sym_COLON_EQ] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), }, [359] = { [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym___global] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_interface] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_GT_GT_GT] = ACTIONS(2451), - [anon_sym_AMP_CARET] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_or] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2451), - [anon_sym_POUND_LBRACK] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_STAR_EQ] = ACTIONS(2451), - [anon_sym_SLASH_EQ] = ACTIONS(2451), - [anon_sym_PERCENT_EQ] = ACTIONS(2451), - [anon_sym_LT_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_GT_EQ] = ACTIONS(2451), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2451), - [anon_sym_AMP_EQ] = ACTIONS(2451), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2451), - [anon_sym_PLUS_EQ] = ACTIONS(2451), - [anon_sym_DASH_EQ] = ACTIONS(2451), - [anon_sym_PIPE_EQ] = ACTIONS(2451), - [anon_sym_CARET_EQ] = ACTIONS(2451), - [anon_sym_COLON_EQ] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), - [anon_sym_AT_LBRACK] = ACTIONS(2451), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_EQ] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_STAR_EQ] = ACTIONS(2457), + [anon_sym_SLASH_EQ] = ACTIONS(2457), + [anon_sym_PERCENT_EQ] = ACTIONS(2457), + [anon_sym_LT_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_AMP_EQ] = ACTIONS(2457), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2457), + [anon_sym_PLUS_EQ] = ACTIONS(2457), + [anon_sym_DASH_EQ] = ACTIONS(2457), + [anon_sym_PIPE_EQ] = ACTIONS(2457), + [anon_sym_CARET_EQ] = ACTIONS(2457), + [anon_sym_COLON_EQ] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), }, [360] = { [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2335), + [anon_sym_CR] = ACTIONS(2335), + [anon_sym_CR_LF] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_EQ] = ACTIONS(2335), + [anon_sym___global] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [anon_sym_EQ_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_go] = ACTIONS(2335), + [anon_sym_spawn] = ACTIONS(2335), + [anon_sym_json_DOTdecode] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_LT_DASH] = ACTIONS(2335), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2335), + [anon_sym_GT_GT_GT] = ACTIONS(2335), + [anon_sym_AMP_CARET] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_or] = ACTIONS(2335), + [sym_none] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_nil] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2335), + [anon_sym_POUND_LBRACK] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_DOLLARif] = ACTIONS(2335), + [anon_sym_is] = ACTIONS(2335), + [anon_sym_BANGis] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_BANGin] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_select] = ACTIONS(2335), + [anon_sym_STAR_EQ] = ACTIONS(2335), + [anon_sym_SLASH_EQ] = ACTIONS(2335), + [anon_sym_PERCENT_EQ] = ACTIONS(2335), + [anon_sym_LT_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_GT_EQ] = ACTIONS(2335), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2335), + [anon_sym_AMP_EQ] = ACTIONS(2335), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2335), + [anon_sym_PLUS_EQ] = ACTIONS(2335), + [anon_sym_DASH_EQ] = ACTIONS(2335), + [anon_sym_PIPE_EQ] = ACTIONS(2335), + [anon_sym_CARET_EQ] = ACTIONS(2335), + [anon_sym_COLON_EQ] = ACTIONS(2335), + [anon_sym_lock] = ACTIONS(2335), + [anon_sym_rlock] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_sql] = ACTIONS(2335), + [sym_int_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), + [sym_rune_literal] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_c_SQUOTE] = ACTIONS(2335), + [anon_sym_c_DQUOTE] = ACTIONS(2335), + [anon_sym_r_SQUOTE] = ACTIONS(2335), + [anon_sym_r_DQUOTE] = ACTIONS(2335), + [sym_pseudo_compile_time_identifier] = ACTIONS(2335), + [anon_sym_shared] = ACTIONS(2335), + [anon_sym_map_LBRACK] = ACTIONS(2335), + [anon_sym_chan] = ACTIONS(2335), + [anon_sym_thread] = ACTIONS(2335), + [anon_sym_atomic] = ACTIONS(2335), + [anon_sym_assert] = ACTIONS(2335), + [anon_sym_defer] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_DOLLARfor] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_asm] = ACTIONS(2335), + [anon_sym_AT_LBRACK] = ACTIONS(2335), }, [361] = { [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4448), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -65284,702 +65522,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [362] = { [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4542), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4536), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [363] = { [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4673), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4675), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [364] = { [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4673), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4675), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [365] = { [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_c_SQUOTE] = ACTIONS(2459), - [anon_sym_c_DQUOTE] = ACTIONS(2459), - [anon_sym_r_SQUOTE] = ACTIONS(2459), - [anon_sym_r_DQUOTE] = 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), - }, - [366] = { - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4542), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4536), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, - [367] = { - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4520), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [366] = { + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4518), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [368] = { - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [367] = { + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [ts_builtin_sym_end] = ACTIONS(2463), [sym_identifier] = ACTIONS(2465), [anon_sym_LF] = ACTIONS(2465), @@ -66093,348 +66215,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2465), [anon_sym_AT_LBRACK] = ACTIONS(2465), }, - [369] = { - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4520), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [368] = { + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4518), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [369] = { + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym__expression] = STATE(2582), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_range] = STATE(4651), - [sym_identifier] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, + [370] = { + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_STAR_EQ] = ACTIONS(2471), + [anon_sym_SLASH_EQ] = ACTIONS(2471), + [anon_sym_PERCENT_EQ] = ACTIONS(2471), + [anon_sym_LT_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_AMP_EQ] = ACTIONS(2471), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2471), + [anon_sym_PLUS_EQ] = ACTIONS(2471), + [anon_sym_DASH_EQ] = ACTIONS(2471), + [anon_sym_PIPE_EQ] = ACTIONS(2471), + [anon_sym_CARET_EQ] = ACTIONS(2471), + [anon_sym_COLON_EQ] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_c_SQUOTE] = ACTIONS(2471), + [anon_sym_c_DQUOTE] = ACTIONS(2471), + [anon_sym_r_SQUOTE] = ACTIONS(2471), + [anon_sym_r_DQUOTE] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + [anon_sym_AT_LBRACK] = ACTIONS(2471), }, [371] = { [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_short_element_list_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1119), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(621), + [sym_mutable_expression] = STATE(1715), + [sym_expression_list] = STATE(1815), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(775), + [anon_sym_spawn] = ACTIONS(777), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(795), + [anon_sym_lock] = ACTIONS(797), + [anon_sym_rlock] = ACTIONS(797), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -66444,207 +66682,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [372] = { [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(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__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_short_element_list_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [373] = { [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), [sym__expression] = STATE(1119), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(621), - [sym_mutable_expression] = STATE(1720), - [sym_expression_list] = STATE(1813), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_mutable_expression] = STATE(1715), + [sym_expression_list] = STATE(1814), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -66658,14 +66896,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -66676,67 +66914,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [374] = { [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [sym__expression] = STATE(1432), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1434), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym_short_element_list_repeat1] = STATE(374), [sym_identifier] = ACTIONS(2507), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -66792,113 +67030,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [375] = { [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -66908,350 +67146,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [376] = { [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [sym__expression] = STATE(1119), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(621), - [sym_mutable_expression] = STATE(1720), - [sym_expression_list] = STATE(1812), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(2582), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4651), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(775), - [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(795), - [anon_sym_lock] = ACTIONS(797), - [anon_sym_rlock] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [377] = { [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4572), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4576), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [378] = { [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4572), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4576), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [379] = { [sym_line_comment] = STATE(379), @@ -67372,577 +67610,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [380] = { [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4651), - [sym_identifier] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_LF] = ACTIONS(2631), + [anon_sym_CR] = ACTIONS(2631), + [anon_sym_CR_LF] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym___global] = ACTIONS(2631), + [anon_sym_type] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_pub] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_interface] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_AMP_CARET] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2631), + [anon_sym_POUND_LBRACK] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_STAR_EQ] = ACTIONS(2631), + [anon_sym_SLASH_EQ] = ACTIONS(2631), + [anon_sym_PERCENT_EQ] = ACTIONS(2631), + [anon_sym_LT_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_GT_EQ] = ACTIONS(2631), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2631), + [anon_sym_AMP_EQ] = ACTIONS(2631), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2631), + [anon_sym_PLUS_EQ] = ACTIONS(2631), + [anon_sym_DASH_EQ] = ACTIONS(2631), + [anon_sym_PIPE_EQ] = ACTIONS(2631), + [anon_sym_CARET_EQ] = ACTIONS(2631), + [anon_sym_COLON_EQ] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), + [sym_rune_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_c_SQUOTE] = ACTIONS(2631), + [anon_sym_c_DQUOTE] = ACTIONS(2631), + [anon_sym_r_SQUOTE] = ACTIONS(2631), + [anon_sym_r_DQUOTE] = ACTIONS(2631), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2631), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2631), + [anon_sym_defer] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_DOLLARfor] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym_AT_LBRACK] = ACTIONS(2631), + }, + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4518), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4520), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4469), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_CR] = ACTIONS(2633), - [anon_sym_CR_LF] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym___global] = ACTIONS(2633), - [anon_sym_type] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_pub] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_interface] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_STAR_EQ] = ACTIONS(2633), - [anon_sym_SLASH_EQ] = ACTIONS(2633), - [anon_sym_PERCENT_EQ] = ACTIONS(2633), - [anon_sym_LT_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_GT_EQ] = ACTIONS(2633), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2633), - [anon_sym_AMP_EQ] = ACTIONS(2633), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2633), - [anon_sym_PLUS_EQ] = ACTIONS(2633), - [anon_sym_DASH_EQ] = ACTIONS(2633), - [anon_sym_PIPE_EQ] = ACTIONS(2633), - [anon_sym_CARET_EQ] = ACTIONS(2633), - [anon_sym_COLON_EQ] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_c_SQUOTE] = ACTIONS(2633), - [anon_sym_c_DQUOTE] = ACTIONS(2633), - [anon_sym_r_SQUOTE] = ACTIONS(2633), - [anon_sym_r_DQUOTE] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), - [anon_sym_assert] = ACTIONS(2633), - [anon_sym_defer] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_DOLLARfor] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym_AT_LBRACK] = ACTIONS(2633), - }, [383] = { [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LF] = ACTIONS(2637), - [anon_sym_CR] = ACTIONS(2637), - [anon_sym_CR_LF] = ACTIONS(2637), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym___global] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_pub] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_AMP_CARET] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2637), - [anon_sym_POUND_LBRACK] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_STAR_EQ] = ACTIONS(2637), - [anon_sym_SLASH_EQ] = ACTIONS(2637), - [anon_sym_PERCENT_EQ] = ACTIONS(2637), - [anon_sym_LT_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_GT_EQ] = ACTIONS(2637), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2637), - [anon_sym_AMP_EQ] = ACTIONS(2637), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2637), - [anon_sym_PLUS_EQ] = ACTIONS(2637), - [anon_sym_DASH_EQ] = ACTIONS(2637), - [anon_sym_PIPE_EQ] = ACTIONS(2637), - [anon_sym_CARET_EQ] = ACTIONS(2637), - [anon_sym_COLON_EQ] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_rune_literal] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_c_SQUOTE] = ACTIONS(2637), - [anon_sym_c_DQUOTE] = ACTIONS(2637), - [anon_sym_r_SQUOTE] = ACTIONS(2637), - [anon_sym_r_DQUOTE] = ACTIONS(2637), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2637), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), - [anon_sym_assert] = ACTIONS(2637), - [anon_sym_defer] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_DOLLARfor] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym_AT_LBRACK] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_STAR_EQ] = ACTIONS(2639), + [anon_sym_SLASH_EQ] = ACTIONS(2639), + [anon_sym_PERCENT_EQ] = ACTIONS(2639), + [anon_sym_LT_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_AMP_EQ] = ACTIONS(2639), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2639), + [anon_sym_PLUS_EQ] = ACTIONS(2639), + [anon_sym_DASH_EQ] = ACTIONS(2639), + [anon_sym_PIPE_EQ] = ACTIONS(2639), + [anon_sym_CARET_EQ] = ACTIONS(2639), + [anon_sym_COLON_EQ] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), }, [384] = { [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4467), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4492), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -67952,118 +68190,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [385] = { [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4440), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym___global] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_interface] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_LT_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_AMP_EQ] = ACTIONS(2643), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2643), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_PIPE_EQ] = ACTIONS(2643), - [anon_sym_CARET_EQ] = ACTIONS(2643), - [anon_sym_COLON_EQ] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_c_SQUOTE] = ACTIONS(2643), - [anon_sym_c_DQUOTE] = ACTIONS(2643), - [anon_sym_r_SQUOTE] = ACTIONS(2643), - [anon_sym_r_DQUOTE] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), - [anon_sym_AT_LBRACK] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [386] = { [sym_line_comment] = STATE(386), @@ -68184,470 +68422,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [387] = { [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2658), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_match_arm_type] = STATE(4236), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4024), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4213), - [sym_identifier] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(1465), - [anon_sym_lock] = ACTIONS(1467), - [anon_sym_rlock] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [388] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_STAR_EQ] = ACTIONS(2439), - [anon_sym_SLASH_EQ] = ACTIONS(2439), - [anon_sym_PERCENT_EQ] = ACTIONS(2439), - [anon_sym_LT_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_AMP_EQ] = ACTIONS(2439), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), - [anon_sym_PLUS_EQ] = ACTIONS(2439), - [anon_sym_DASH_EQ] = ACTIONS(2439), - [anon_sym_PIPE_EQ] = ACTIONS(2439), - [anon_sym_CARET_EQ] = ACTIONS(2439), - [anon_sym_COLON_EQ] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), - [anon_sym_AT_LBRACK] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [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(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_STAR_EQ] = ACTIONS(2445), + [anon_sym_SLASH_EQ] = ACTIONS(2445), + [anon_sym_PERCENT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_AMP_EQ] = ACTIONS(2445), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(2445), + [anon_sym_DASH_EQ] = ACTIONS(2445), + [anon_sym_PIPE_EQ] = ACTIONS(2445), + [anon_sym_CARET_EQ] = ACTIONS(2445), + [anon_sym_COLON_EQ] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [389] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4495), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [390] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4440), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), [ts_builtin_sym_end] = ACTIONS(2653), [sym_identifier] = ACTIONS(2655), [anon_sym_LF] = ACTIONS(2655), @@ -68761,9 +68767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2655), [anon_sym_AT_LBRACK] = ACTIONS(2655), }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), + [390] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), [ts_builtin_sym_end] = ACTIONS(2657), [sym_identifier] = ACTIONS(2659), [anon_sym_LF] = ACTIONS(2659), @@ -68877,464 +68883,696 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2659), [anon_sym_AT_LBRACK] = ACTIONS(2659), }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4425), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [391] = { + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4427), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [394] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4488), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [392] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2660), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_match_arm_type] = STATE(4237), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4025), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4217), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(1487), + [anon_sym_lock] = ACTIONS(1489), + [anon_sym_rlock] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [393] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4490), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4566), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [394] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4511), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [395] = { + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_STAR_EQ] = ACTIONS(2669), + [anon_sym_SLASH_EQ] = ACTIONS(2669), + [anon_sym_PERCENT_EQ] = ACTIONS(2669), + [anon_sym_LT_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_AMP_EQ] = ACTIONS(2669), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), + [anon_sym_PLUS_EQ] = ACTIONS(2669), + [anon_sym_DASH_EQ] = ACTIONS(2669), + [anon_sym_PIPE_EQ] = ACTIONS(2669), + [anon_sym_CARET_EQ] = ACTIONS(2669), + [anon_sym_COLON_EQ] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + }, [396] = { [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -69344,113 +69582,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [397] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [sym__expression] = STATE(2551), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2565), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(4088), - [sym_expression_list] = STATE(4176), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_mutable_expression] = STATE(4083), + [sym_expression_list] = STATE(4116), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -69460,818 +69698,702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [398] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4437), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2613), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4445), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [399] = { [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4437), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2613), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4445), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [400] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_CR] = ACTIONS(2693), - [anon_sym_CR_LF] = ACTIONS(2693), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(2693), - [anon_sym___global] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_EQ_EQ] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_pub] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_interface] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_GT_GT_GT] = ACTIONS(2693), - [anon_sym_AMP_CARET] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_PIPE_PIPE] = ACTIONS(2693), - [anon_sym_or] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2693), - [anon_sym_POUND_LBRACK] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_STAR_EQ] = ACTIONS(2693), - [anon_sym_SLASH_EQ] = ACTIONS(2693), - [anon_sym_PERCENT_EQ] = ACTIONS(2693), - [anon_sym_LT_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_GT_EQ] = ACTIONS(2693), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2693), - [anon_sym_AMP_EQ] = ACTIONS(2693), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2693), - [anon_sym_DASH_EQ] = ACTIONS(2693), - [anon_sym_PIPE_EQ] = ACTIONS(2693), - [anon_sym_CARET_EQ] = ACTIONS(2693), - [anon_sym_COLON_EQ] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - [sym_rune_literal] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_c_SQUOTE] = ACTIONS(2693), - [anon_sym_c_DQUOTE] = ACTIONS(2693), - [anon_sym_r_SQUOTE] = ACTIONS(2693), - [anon_sym_r_DQUOTE] = ACTIONS(2693), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_defer] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_DOLLARfor] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_asm] = ACTIONS(2693), - [anon_sym_AT_LBRACK] = ACTIONS(2693), + [sym__expression] = STATE(2593), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4541), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [401] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(2695), [sym_identifier] = ACTIONS(2697), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_fn] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_RBRACK] = ACTIONS(2718), - [anon_sym_struct] = ACTIONS(2720), - [anon_sym_mut] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_go] = ACTIONS(2732), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(2738), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_CARET] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2747), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2759), - [anon_sym_select] = ACTIONS(2762), - [anon_sym_lock] = ACTIONS(2765), - [anon_sym_rlock] = ACTIONS(2765), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2771), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2774), - [sym_rune_literal] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_c_SQUOTE] = ACTIONS(2783), - [anon_sym_c_DQUOTE] = ACTIONS(2786), - [anon_sym_r_SQUOTE] = ACTIONS(2789), - [anon_sym_r_DQUOTE] = ACTIONS(2792), - [sym_pseudo_compile_time_identifier] = ACTIONS(2795), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2801), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2807), - [anon_sym_atomic] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2697), + [anon_sym_CR] = ACTIONS(2697), + [anon_sym_CR_LF] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_EQ] = ACTIONS(2697), + [anon_sym___global] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2697), + [anon_sym_BANG_EQ] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2697), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2697), + [anon_sym_AMP_CARET] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2697), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2697), + [anon_sym_POUND_LBRACK] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_STAR_EQ] = ACTIONS(2697), + [anon_sym_SLASH_EQ] = ACTIONS(2697), + [anon_sym_PERCENT_EQ] = ACTIONS(2697), + [anon_sym_LT_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_GT_EQ] = ACTIONS(2697), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2697), + [anon_sym_AMP_EQ] = ACTIONS(2697), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2697), + [anon_sym_PLUS_EQ] = ACTIONS(2697), + [anon_sym_DASH_EQ] = ACTIONS(2697), + [anon_sym_PIPE_EQ] = ACTIONS(2697), + [anon_sym_CARET_EQ] = ACTIONS(2697), + [anon_sym_COLON_EQ] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), + [sym_rune_literal] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_c_SQUOTE] = ACTIONS(2697), + [anon_sym_c_DQUOTE] = ACTIONS(2697), + [anon_sym_r_SQUOTE] = ACTIONS(2697), + [anon_sym_r_DQUOTE] = ACTIONS(2697), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2697), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), + [anon_sym_assert] = ACTIONS(2697), + [anon_sym_defer] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_DOLLARfor] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_asm] = ACTIONS(2697), + [anon_sym_AT_LBRACK] = ACTIONS(2697), }, [402] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [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_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(2178), - [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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_RBRACK] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2739), + [anon_sym_json_DOTdecode] = ACTIONS(2742), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2751), + [sym_none] = ACTIONS(2754), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_nil] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_DOLLARif] = ACTIONS(2760), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_select] = ACTIONS(2766), + [anon_sym_lock] = ACTIONS(2769), + [anon_sym_rlock] = ACTIONS(2769), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2754), + [sym_float_literal] = ACTIONS(2778), + [sym_rune_literal] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2784), + [anon_sym_c_SQUOTE] = ACTIONS(2787), + [anon_sym_c_DQUOTE] = ACTIONS(2790), + [anon_sym_r_SQUOTE] = ACTIONS(2793), + [anon_sym_r_DQUOTE] = ACTIONS(2796), + [sym_pseudo_compile_time_identifier] = ACTIONS(2799), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2805), + [anon_sym_chan] = ACTIONS(2808), + [anon_sym_thread] = ACTIONS(2811), + [anon_sym_atomic] = ACTIONS(2814), }, [403] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_EQ] = ACTIONS(2815), - [anon_sym___global] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_pub] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_interface] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_STAR_EQ] = ACTIONS(2815), - [anon_sym_SLASH_EQ] = ACTIONS(2815), - [anon_sym_PERCENT_EQ] = ACTIONS(2815), - [anon_sym_LT_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_GT_EQ] = ACTIONS(2815), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2815), - [anon_sym_AMP_EQ] = ACTIONS(2815), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2815), - [anon_sym_PLUS_EQ] = ACTIONS(2815), - [anon_sym_DASH_EQ] = ACTIONS(2815), - [anon_sym_PIPE_EQ] = ACTIONS(2815), - [anon_sym_CARET_EQ] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - [anon_sym_AT_LBRACK] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [404] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4541), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [405] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), [ts_builtin_sym_end] = ACTIONS(2817), [sym_identifier] = ACTIONS(2819), [anon_sym_LF] = ACTIONS(2819), @@ -70385,9 +70507,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2819), [anon_sym_AT_LBRACK] = ACTIONS(2819), }, - [406] = { - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), + [405] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), [ts_builtin_sym_end] = ACTIONS(2821), [sym_identifier] = ACTIONS(2823), [anon_sym_LF] = ACTIONS(2823), @@ -70501,473 +70623,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2823), [anon_sym_AT_LBRACK] = ACTIONS(2823), }, + [406] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4492), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [407] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2827), - [anon_sym_LF] = ACTIONS(2827), - [anon_sym_CR] = ACTIONS(2827), - [anon_sym_CR_LF] = ACTIONS(2827), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(2827), - [anon_sym___global] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_pub] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_interface] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_CARET] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_AMP_CARET] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2827), - [anon_sym_POUND_LBRACK] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_STAR_EQ] = ACTIONS(2827), - [anon_sym_SLASH_EQ] = ACTIONS(2827), - [anon_sym_PERCENT_EQ] = ACTIONS(2827), - [anon_sym_LT_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_GT_EQ] = ACTIONS(2827), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2827), - [anon_sym_AMP_EQ] = ACTIONS(2827), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2827), - [anon_sym_PLUS_EQ] = ACTIONS(2827), - [anon_sym_DASH_EQ] = ACTIONS(2827), - [anon_sym_PIPE_EQ] = ACTIONS(2827), - [anon_sym_CARET_EQ] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - [sym_rune_literal] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_c_SQUOTE] = ACTIONS(2827), - [anon_sym_c_DQUOTE] = ACTIONS(2827), - [anon_sym_r_SQUOTE] = ACTIONS(2827), - [anon_sym_r_DQUOTE] = ACTIONS(2827), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2827), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), - [anon_sym_assert] = ACTIONS(2827), - [anon_sym_defer] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_DOLLARfor] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), - [anon_sym_AT_LBRACK] = ACTIONS(2827), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_STAR_EQ] = ACTIONS(2829), + [anon_sym_SLASH_EQ] = ACTIONS(2829), + [anon_sym_PERCENT_EQ] = ACTIONS(2829), + [anon_sym_LT_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_AMP_EQ] = ACTIONS(2829), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2829), + [anon_sym_PLUS_EQ] = ACTIONS(2829), + [anon_sym_DASH_EQ] = ACTIONS(2829), + [anon_sym_PIPE_EQ] = ACTIONS(2829), + [anon_sym_CARET_EQ] = ACTIONS(2829), + [anon_sym_COLON_EQ] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_c_SQUOTE] = ACTIONS(2829), + [anon_sym_c_DQUOTE] = ACTIONS(2829), + [anon_sym_r_SQUOTE] = ACTIONS(2829), + [anon_sym_r_DQUOTE] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), }, [408] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_EQ] = ACTIONS(2831), - [anon_sym___global] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_pub] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_STAR_EQ] = ACTIONS(2831), - [anon_sym_SLASH_EQ] = ACTIONS(2831), - [anon_sym_PERCENT_EQ] = ACTIONS(2831), - [anon_sym_LT_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_GT_EQ] = ACTIONS(2831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2831), - [anon_sym_AMP_EQ] = ACTIONS(2831), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2831), - [anon_sym_PLUS_EQ] = ACTIONS(2831), - [anon_sym_DASH_EQ] = ACTIONS(2831), - [anon_sym_PIPE_EQ] = ACTIONS(2831), - [anon_sym_CARET_EQ] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), - [anon_sym_AT_LBRACK] = ACTIONS(2831), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), }, [409] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4495), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [410] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4204), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [411] = { - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_LF] = ACTIONS(2837), @@ -71081,6 +71087,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2837), [anon_sym_AT_LBRACK] = ACTIONS(2837), }, + [410] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [sym__expression] = STATE(2593), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4541), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, + [411] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4205), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [412] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), @@ -71200,122 +71438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [413] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4541), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [414] = { - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_LF] = ACTIONS(2845), @@ -71429,116 +71551,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2845), [anon_sym_AT_LBRACK] = ACTIONS(2845), }, + [414] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2849), + [anon_sym_CR] = ACTIONS(2849), + [anon_sym_CR_LF] = ACTIONS(2849), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym___global] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_pub] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_interface] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_STAR_EQ] = ACTIONS(2849), + [anon_sym_SLASH_EQ] = ACTIONS(2849), + [anon_sym_PERCENT_EQ] = ACTIONS(2849), + [anon_sym_LT_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_GT_EQ] = ACTIONS(2849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2849), + [anon_sym_AMP_EQ] = ACTIONS(2849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2849), + [anon_sym_PLUS_EQ] = ACTIONS(2849), + [anon_sym_DASH_EQ] = ACTIONS(2849), + [anon_sym_PIPE_EQ] = ACTIONS(2849), + [anon_sym_CARET_EQ] = ACTIONS(2849), + [anon_sym_COLON_EQ] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_defer] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_DOLLARfor] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_asm] = ACTIONS(2849), + [anon_sym_AT_LBRACK] = ACTIONS(2849), + }, [415] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4530), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4532), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -71548,113 +71786,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [416] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -71664,113 +71902,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [417] = { [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4566), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4511), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -71780,470 +72018,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [418] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_EQ] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_STAR_EQ] = ACTIONS(2855), - [anon_sym_SLASH_EQ] = ACTIONS(2855), - [anon_sym_PERCENT_EQ] = ACTIONS(2855), - [anon_sym_LT_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_AMP_EQ] = ACTIONS(2855), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2855), - [anon_sym_DASH_EQ] = ACTIONS(2855), - [anon_sym_PIPE_EQ] = ACTIONS(2855), - [anon_sym_CARET_EQ] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), - }, - [419] = { - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4546), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [420] = { - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4566), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [419] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4548), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [421] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4488), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4511), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1919), [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [422] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), + [421] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_LF] = ACTIONS(2865), @@ -72357,357 +72479,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2865), [anon_sym_AT_LBRACK] = ACTIONS(2865), }, - [423] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym___global] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_STAR_EQ] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2869), - [anon_sym_PERCENT_EQ] = ACTIONS(2869), - [anon_sym_LT_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_AMP_EQ] = ACTIONS(2869), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2869), - [anon_sym_PLUS_EQ] = ACTIONS(2869), - [anon_sym_DASH_EQ] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_c_SQUOTE] = ACTIONS(2869), - [anon_sym_c_DQUOTE] = ACTIONS(2869), - [anon_sym_r_SQUOTE] = ACTIONS(2869), - [anon_sym_r_DQUOTE] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym_AT_LBRACK] = ACTIONS(2869), - }, - [424] = { - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [422] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4490), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [425] = { - [sym_line_comment] = STATE(425), - [sym_block_comment] = STATE(425), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4593), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [423] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4595), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [426] = { - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), + [424] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2873), + [anon_sym___global] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_pub] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_STAR_EQ] = ACTIONS(2873), + [anon_sym_SLASH_EQ] = ACTIONS(2873), + [anon_sym_PERCENT_EQ] = ACTIONS(2873), + [anon_sym_LT_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_AMP_EQ] = ACTIONS(2873), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2873), + [anon_sym_PLUS_EQ] = ACTIONS(2873), + [anon_sym_DASH_EQ] = ACTIONS(2873), + [anon_sym_PIPE_EQ] = ACTIONS(2873), + [anon_sym_CARET_EQ] = ACTIONS(2873), + [anon_sym_COLON_EQ] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_c_SQUOTE] = ACTIONS(2873), + [anon_sym_c_DQUOTE] = ACTIONS(2873), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), + [anon_sym_AT_LBRACK] = ACTIONS(2873), + }, + [425] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_LF] = ACTIONS(2877), @@ -72821,9 +72943,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2877), [anon_sym_AT_LBRACK] = ACTIONS(2877), }, - [427] = { - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), + [426] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_LF] = ACTIONS(2881), @@ -72937,9 +73059,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2881), [anon_sym_AT_LBRACK] = ACTIONS(2881), }, - [428] = { - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), + [427] = { + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_LF] = ACTIONS(2885), @@ -73053,473 +73175,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2885), [anon_sym_AT_LBRACK] = ACTIONS(2885), }, - [429] = { - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [sym__expression] = STATE(1603), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_string_interpolation_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), + [428] = { + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2889), + [anon_sym_LF] = ACTIONS(2889), + [anon_sym_CR] = ACTIONS(2889), + [anon_sym_CR_LF] = ACTIONS(2889), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_const] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym___global] = ACTIONS(2889), + [anon_sym_type] = ACTIONS(2889), + [anon_sym_fn] = ACTIONS(2889), [anon_sym_PLUS] = ACTIONS(2889), [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_union] = ACTIONS(2889), + [anon_sym_pub] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_enum] = ACTIONS(2889), + [anon_sym_interface] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), [anon_sym_TILDE] = ACTIONS(2889), [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [430] = { - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_STAR_EQ] = ACTIONS(2909), - [anon_sym_SLASH_EQ] = ACTIONS(2909), - [anon_sym_PERCENT_EQ] = ACTIONS(2909), - [anon_sym_LT_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_AMP_EQ] = ACTIONS(2909), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2909), - [anon_sym_PLUS_EQ] = ACTIONS(2909), - [anon_sym_DASH_EQ] = ACTIONS(2909), - [anon_sym_PIPE_EQ] = ACTIONS(2909), - [anon_sym_CARET_EQ] = ACTIONS(2909), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_c_SQUOTE] = ACTIONS(2909), - [anon_sym_c_DQUOTE] = ACTIONS(2909), - [anon_sym_r_SQUOTE] = ACTIONS(2909), - [anon_sym_r_DQUOTE] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_STAR_EQ] = ACTIONS(2889), + [anon_sym_SLASH_EQ] = ACTIONS(2889), + [anon_sym_PERCENT_EQ] = ACTIONS(2889), + [anon_sym_LT_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_GT_EQ] = ACTIONS(2889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2889), + [anon_sym_AMP_EQ] = ACTIONS(2889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2889), + [anon_sym_PLUS_EQ] = ACTIONS(2889), + [anon_sym_DASH_EQ] = ACTIONS(2889), + [anon_sym_PIPE_EQ] = ACTIONS(2889), + [anon_sym_CARET_EQ] = ACTIONS(2889), + [anon_sym_COLON_EQ] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), + [anon_sym_assert] = ACTIONS(2889), + [anon_sym_defer] = ACTIONS(2889), + [anon_sym_goto] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_DOLLARfor] = ACTIONS(2889), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_asm] = ACTIONS(2889), + [anon_sym_AT_LBRACK] = ACTIONS(2889), }, - [431] = { - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), + [429] = { + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_EQ] = ACTIONS(2913), - [anon_sym___global] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_STAR_EQ] = ACTIONS(2913), - [anon_sym_SLASH_EQ] = ACTIONS(2913), - [anon_sym_PERCENT_EQ] = ACTIONS(2913), - [anon_sym_LT_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_AMP_EQ] = ACTIONS(2913), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2913), - [anon_sym_PLUS_EQ] = ACTIONS(2913), - [anon_sym_DASH_EQ] = ACTIONS(2913), - [anon_sym_PIPE_EQ] = ACTIONS(2913), - [anon_sym_CARET_EQ] = ACTIONS(2913), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_c_SQUOTE] = ACTIONS(2913), - [anon_sym_c_DQUOTE] = ACTIONS(2913), - [anon_sym_r_SQUOTE] = ACTIONS(2913), - [anon_sym_r_DQUOTE] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym_AT_LBRACK] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_EQ] = ACTIONS(2893), + [anon_sym___global] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_union] = ACTIONS(2893), + [anon_sym_pub] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_STAR_EQ] = ACTIONS(2893), + [anon_sym_SLASH_EQ] = ACTIONS(2893), + [anon_sym_PERCENT_EQ] = ACTIONS(2893), + [anon_sym_LT_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_GT_EQ] = ACTIONS(2893), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2893), + [anon_sym_AMP_EQ] = ACTIONS(2893), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2893), + [anon_sym_PLUS_EQ] = ACTIONS(2893), + [anon_sym_DASH_EQ] = ACTIONS(2893), + [anon_sym_PIPE_EQ] = ACTIONS(2893), + [anon_sym_CARET_EQ] = ACTIONS(2893), + [anon_sym_COLON_EQ] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), + [anon_sym_AT_LBRACK] = ACTIONS(2893), }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4491), - [sym_identifier] = ACTIONS(1772), + [430] = { + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_string_interpolation_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), }, - [433] = { - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), + [431] = { + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), [ts_builtin_sym_end] = ACTIONS(2915), [sym_identifier] = ACTIONS(2917), [anon_sym_LF] = ACTIONS(2917), @@ -73633,6 +73639,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2917), [anon_sym_AT_LBRACK] = ACTIONS(2917), }, + [432] = { + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4493), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, + [433] = { + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4493), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, [434] = { [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), @@ -73752,122 +73990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [435] = { [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4491), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [436] = { - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), [ts_builtin_sym_end] = ACTIONS(2923), [sym_identifier] = ACTIONS(2925), [anon_sym_LF] = ACTIONS(2925), @@ -73981,116 +74103,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2925), [anon_sym_AT_LBRACK] = ACTIONS(2925), }, + [436] = { + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym___global] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_STAR_EQ] = ACTIONS(2929), + [anon_sym_SLASH_EQ] = ACTIONS(2929), + [anon_sym_PERCENT_EQ] = ACTIONS(2929), + [anon_sym_LT_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_AMP_EQ] = ACTIONS(2929), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2929), + [anon_sym_PLUS_EQ] = ACTIONS(2929), + [anon_sym_DASH_EQ] = ACTIONS(2929), + [anon_sym_PIPE_EQ] = ACTIONS(2929), + [anon_sym_CARET_EQ] = ACTIONS(2929), + [anon_sym_COLON_EQ] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym_AT_LBRACK] = ACTIONS(2929), + }, [437] = { [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4520), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4518), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -74100,122 +74338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [438] = { [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_EQ] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_STAR_EQ] = ACTIONS(2931), - [anon_sym_SLASH_EQ] = ACTIONS(2931), - [anon_sym_PERCENT_EQ] = ACTIONS(2931), - [anon_sym_LT_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_AMP_EQ] = ACTIONS(2931), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), - [anon_sym_PLUS_EQ] = ACTIONS(2931), - [anon_sym_DASH_EQ] = ACTIONS(2931), - [anon_sym_PIPE_EQ] = ACTIONS(2931), - [anon_sym_CARET_EQ] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [anon_sym_c_SQUOTE] = ACTIONS(2931), - [anon_sym_c_DQUOTE] = ACTIONS(2931), - [anon_sym_r_SQUOTE] = ACTIONS(2931), - [anon_sym_r_DQUOTE] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), [ts_builtin_sym_end] = ACTIONS(2933), [sym_identifier] = ACTIONS(2935), [anon_sym_LF] = ACTIONS(2935), @@ -74329,473 +74451,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2935), [anon_sym_AT_LBRACK] = ACTIONS(2935), }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_LT_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_AMP_EQ] = ACTIONS(2185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_PIPE_EQ] = ACTIONS(2185), - [anon_sym_CARET_EQ] = ACTIONS(2185), - [anon_sym_COLON_EQ] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), - }, - [441] = { - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(3016), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2937), + [439] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [442] = { - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_LT_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_AMP_EQ] = ACTIONS(2093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_PIPE_EQ] = ACTIONS(2093), - [anon_sym_CARET_EQ] = ACTIONS(2093), - [anon_sym_COLON_EQ] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), - }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1704), + [440] = { + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(3019), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2939), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2943), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), + [441] = { + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), [ts_builtin_sym_end] = ACTIONS(2945), [sym_identifier] = ACTIONS(2947), [anon_sym_LF] = ACTIONS(2947), @@ -74909,241 +74799,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2947), [anon_sym_AT_LBRACK] = ACTIONS(2947), }, - [445] = { - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [442] = { + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_EQ] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_STAR_EQ] = ACTIONS(2187), + [anon_sym_SLASH_EQ] = ACTIONS(2187), + [anon_sym_PERCENT_EQ] = ACTIONS(2187), + [anon_sym_LT_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_AMP_EQ] = ACTIONS(2187), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2187), + [anon_sym_PLUS_EQ] = ACTIONS(2187), + [anon_sym_DASH_EQ] = ACTIONS(2187), + [anon_sym_PIPE_EQ] = ACTIONS(2187), + [anon_sym_CARET_EQ] = ACTIONS(2187), + [anon_sym_COLON_EQ] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [443] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LF] = ACTIONS(2951), + [anon_sym_CR] = ACTIONS(2951), + [anon_sym_CR_LF] = ACTIONS(2951), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2951), + [anon_sym___global] = ACTIONS(2951), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [anon_sym_pub] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_STAR_EQ] = ACTIONS(2951), + [anon_sym_SLASH_EQ] = ACTIONS(2951), + [anon_sym_PERCENT_EQ] = ACTIONS(2951), + [anon_sym_LT_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_GT_EQ] = ACTIONS(2951), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), + [anon_sym_AMP_EQ] = ACTIONS(2951), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), + [anon_sym_PLUS_EQ] = ACTIONS(2951), + [anon_sym_DASH_EQ] = ACTIONS(2951), + [anon_sym_PIPE_EQ] = ACTIONS(2951), + [anon_sym_CARET_EQ] = ACTIONS(2951), + [anon_sym_COLON_EQ] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_c_SQUOTE] = ACTIONS(2951), + [anon_sym_c_DQUOTE] = ACTIONS(2951), + [anon_sym_r_SQUOTE] = ACTIONS(2951), + [anon_sym_r_DQUOTE] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), + [anon_sym_assert] = ACTIONS(2951), + [anon_sym_defer] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_DOLLARfor] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), + [anon_sym_AT_LBRACK] = ACTIONS(2951), + }, + [444] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym__array_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [446] = { - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_CR] = ACTIONS(2953), - [anon_sym_CR_LF] = ACTIONS(2953), + [445] = { + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2953), - [anon_sym___global] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_pub] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_STAR_EQ] = ACTIONS(2953), - [anon_sym_SLASH_EQ] = ACTIONS(2953), - [anon_sym_PERCENT_EQ] = ACTIONS(2953), - [anon_sym_LT_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_GT_EQ] = ACTIONS(2953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2953), - [anon_sym_AMP_EQ] = ACTIONS(2953), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2953), - [anon_sym_PLUS_EQ] = ACTIONS(2953), - [anon_sym_DASH_EQ] = ACTIONS(2953), - [anon_sym_PIPE_EQ] = ACTIONS(2953), - [anon_sym_CARET_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_c_SQUOTE] = ACTIONS(2953), - [anon_sym_c_DQUOTE] = ACTIONS(2953), - [anon_sym_r_SQUOTE] = ACTIONS(2953), - [anon_sym_r_DQUOTE] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_defer] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_DOLLARfor] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_POUND] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym_AT_LBRACK] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, - [447] = { - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), + [446] = { + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), [ts_builtin_sym_end] = ACTIONS(2955), [sym_identifier] = ACTIONS(2957), [anon_sym_LF] = ACTIONS(2957), @@ -75257,9 +75379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2957), [anon_sym_AT_LBRACK] = ACTIONS(2957), }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), + [447] = { + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), [ts_builtin_sym_end] = ACTIONS(2959), [sym_identifier] = ACTIONS(2961), [anon_sym_LF] = ACTIONS(2961), @@ -75373,348 +75495,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2961), [anon_sym_AT_LBRACK] = ACTIONS(2961), }, + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_STAR_EQ] = ACTIONS(2445), + [anon_sym_SLASH_EQ] = ACTIONS(2445), + [anon_sym_PERCENT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_AMP_EQ] = ACTIONS(2445), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(2445), + [anon_sym_DASH_EQ] = ACTIONS(2445), + [anon_sym_PIPE_EQ] = ACTIONS(2445), + [anon_sym_CARET_EQ] = ACTIONS(2445), + [anon_sym_COLON_EQ] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), + [anon_sym_AT_LBRACK] = ACTIONS(2445), + }, [449] = { [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_interface] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_STAR_EQ] = ACTIONS(2439), - [anon_sym_SLASH_EQ] = ACTIONS(2439), - [anon_sym_PERCENT_EQ] = ACTIONS(2439), - [anon_sym_LT_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_AMP_EQ] = ACTIONS(2439), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), - [anon_sym_PLUS_EQ] = ACTIONS(2439), - [anon_sym_DASH_EQ] = ACTIONS(2439), - [anon_sym_PIPE_EQ] = ACTIONS(2439), - [anon_sym_CARET_EQ] = ACTIONS(2439), - [anon_sym_COLON_EQ] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), - [anon_sym_AT_LBRACK] = ACTIONS(2439), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [450] = { [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym___global] = ACTIONS(2965), - [anon_sym_type] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_pub] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_interface] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_STAR_EQ] = ACTIONS(2965), - [anon_sym_SLASH_EQ] = ACTIONS(2965), - [anon_sym_PERCENT_EQ] = ACTIONS(2965), - [anon_sym_LT_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_AMP_EQ] = ACTIONS(2965), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2965), - [anon_sym_PLUS_EQ] = ACTIONS(2965), - [anon_sym_DASH_EQ] = ACTIONS(2965), - [anon_sym_PIPE_EQ] = ACTIONS(2965), - [anon_sym_CARET_EQ] = ACTIONS(2965), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_c_SQUOTE] = ACTIONS(2965), - [anon_sym_c_DQUOTE] = ACTIONS(2965), - [anon_sym_r_SQUOTE] = ACTIONS(2965), - [anon_sym_r_DQUOTE] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym_AT_LBRACK] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_EQ] = ACTIONS(2967), + [anon_sym___global] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_STAR_EQ] = ACTIONS(2967), + [anon_sym_SLASH_EQ] = ACTIONS(2967), + [anon_sym_PERCENT_EQ] = ACTIONS(2967), + [anon_sym_LT_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_GT_EQ] = ACTIONS(2967), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2967), + [anon_sym_AMP_EQ] = ACTIONS(2967), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2967), + [anon_sym_PLUS_EQ] = ACTIONS(2967), + [anon_sym_DASH_EQ] = ACTIONS(2967), + [anon_sym_PIPE_EQ] = ACTIONS(2967), + [anon_sym_CARET_EQ] = ACTIONS(2967), + [anon_sym_COLON_EQ] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym_AT_LBRACK] = ACTIONS(2967), }, [451] = { [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_string_interpolation_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -75724,122 +75962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [452] = { [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym__expression] = STATE(1603), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_string_interpolation_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), [ts_builtin_sym_end] = ACTIONS(2971), [sym_identifier] = ACTIONS(2973), [anon_sym_LF] = ACTIONS(2973), @@ -75953,9 +76075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2973), [anon_sym_AT_LBRACK] = ACTIONS(2973), }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), [ts_builtin_sym_end] = ACTIONS(2975), [sym_identifier] = ACTIONS(2977), [anon_sym_LF] = ACTIONS(2977), @@ -76069,9 +76191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2977), [anon_sym_AT_LBRACK] = ACTIONS(2977), }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), [ts_builtin_sym_end] = ACTIONS(2979), [sym_identifier] = ACTIONS(2981), [anon_sym_LF] = ACTIONS(2981), @@ -76185,9 +76307,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2981), [anon_sym_AT_LBRACK] = ACTIONS(2981), }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), [ts_builtin_sym_end] = ACTIONS(2983), [sym_identifier] = ACTIONS(2985), [anon_sym_LF] = ACTIONS(2985), @@ -76301,9 +76423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2985), [anon_sym_AT_LBRACK] = ACTIONS(2985), }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), [ts_builtin_sym_end] = ACTIONS(2987), [sym_identifier] = ACTIONS(2989), [anon_sym_LF] = ACTIONS(2989), @@ -76417,125 +76539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2989), [anon_sym_AT_LBRACK] = ACTIONS(2989), }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4625), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), [ts_builtin_sym_end] = ACTIONS(2991), [sym_identifier] = ACTIONS(2993), [anon_sym_LF] = ACTIONS(2993), @@ -76649,6 +76655,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2993), [anon_sym_AT_LBRACK] = ACTIONS(2993), }, + [458] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym__expression] = STATE(2605), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4624), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), @@ -76884,345 +77122,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [462] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_LT_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_AMP_EQ] = ACTIONS(3005), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym__expression] = STATE(1558), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1556), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_string_interpolation_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_string_interpolation_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(3007), + [anon_sym_CR] = ACTIONS(3007), + [anon_sym_CR_LF] = ACTIONS(3007), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_const] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym___global] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_union] = ACTIONS(3007), + [anon_sym_pub] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_enum] = ACTIONS(3007), + [anon_sym_interface] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_STAR_EQ] = ACTIONS(3007), + [anon_sym_SLASH_EQ] = ACTIONS(3007), + [anon_sym_PERCENT_EQ] = ACTIONS(3007), + [anon_sym_LT_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_GT_EQ] = ACTIONS(3007), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3007), + [anon_sym_AMP_EQ] = ACTIONS(3007), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3007), + [anon_sym_PLUS_EQ] = ACTIONS(3007), + [anon_sym_DASH_EQ] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [anon_sym_c_SQUOTE] = ACTIONS(3007), + [anon_sym_c_DQUOTE] = ACTIONS(3007), + [anon_sym_r_SQUOTE] = ACTIONS(3007), + [anon_sym_r_DQUOTE] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_defer] = ACTIONS(3007), + [anon_sym_goto] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_DOLLARfor] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_asm] = ACTIONS(3007), + [anon_sym_AT_LBRACK] = ACTIONS(3007), + }, [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -77232,113 +77470,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [465] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -78044,1394 +78282,1394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [472] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LF] = ACTIONS(3039), - [anon_sym_CR] = ACTIONS(3039), - [anon_sym_CR_LF] = ACTIONS(3039), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym___global] = ACTIONS(3039), - [anon_sym_type] = ACTIONS(3039), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), - [anon_sym_pub] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_interface] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_STAR_EQ] = ACTIONS(3039), - [anon_sym_SLASH_EQ] = ACTIONS(3039), - [anon_sym_PERCENT_EQ] = ACTIONS(3039), - [anon_sym_LT_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_GT_EQ] = ACTIONS(3039), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3039), - [anon_sym_AMP_EQ] = ACTIONS(3039), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3039), - [anon_sym_PLUS_EQ] = ACTIONS(3039), - [anon_sym_DASH_EQ] = ACTIONS(3039), - [anon_sym_PIPE_EQ] = ACTIONS(3039), - [anon_sym_CARET_EQ] = ACTIONS(3039), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [anon_sym_c_SQUOTE] = ACTIONS(3039), - [anon_sym_c_DQUOTE] = ACTIONS(3039), - [anon_sym_r_SQUOTE] = ACTIONS(3039), - [anon_sym_r_DQUOTE] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), - [anon_sym_assert] = ACTIONS(3039), - [anon_sym_defer] = ACTIONS(3039), - [anon_sym_goto] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_DOLLARfor] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_asm] = ACTIONS(3039), - [anon_sym_AT_LBRACK] = ACTIONS(3039), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3037), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_const] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym___global] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_union] = ACTIONS(3043), - [anon_sym_pub] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_enum] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_STAR_EQ] = ACTIONS(3043), - [anon_sym_SLASH_EQ] = ACTIONS(3043), - [anon_sym_PERCENT_EQ] = ACTIONS(3043), - [anon_sym_LT_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_GT_EQ] = ACTIONS(3043), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3043), - [anon_sym_AMP_EQ] = ACTIONS(3043), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3043), - [anon_sym_PLUS_EQ] = ACTIONS(3043), - [anon_sym_DASH_EQ] = ACTIONS(3043), - [anon_sym_PIPE_EQ] = ACTIONS(3043), - [anon_sym_CARET_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - [anon_sym_AT_LBRACK] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_const] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym___global] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_union] = ACTIONS(3041), + [anon_sym_pub] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3041), + [anon_sym_AMP_CARET] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_PIPE_PIPE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_LT_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_GT_EQ] = ACTIONS(3041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), + [anon_sym_AMP_EQ] = ACTIONS(3041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_PIPE_EQ] = ACTIONS(3041), + [anon_sym_CARET_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), + [anon_sym_AT_LBRACK] = ACTIONS(3041), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_const] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym___global] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_union] = ACTIONS(3047), - [anon_sym_pub] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_STAR_EQ] = ACTIONS(3047), - [anon_sym_SLASH_EQ] = ACTIONS(3047), - [anon_sym_PERCENT_EQ] = ACTIONS(3047), - [anon_sym_LT_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_GT_EQ] = ACTIONS(3047), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3047), - [anon_sym_AMP_EQ] = ACTIONS(3047), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3047), - [anon_sym_PLUS_EQ] = ACTIONS(3047), - [anon_sym_DASH_EQ] = ACTIONS(3047), - [anon_sym_PIPE_EQ] = ACTIONS(3047), - [anon_sym_CARET_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), - [anon_sym_AT_LBRACK] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_const] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym___global] = ACTIONS(3045), + [anon_sym_type] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_union] = ACTIONS(3045), + [anon_sym_pub] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_LT_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_AMP_EQ] = ACTIONS(3045), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_PIPE_EQ] = ACTIONS(3045), + [anon_sym_CARET_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), + [anon_sym_AT_LBRACK] = ACTIONS(3045), }, [475] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_STAR_EQ] = ACTIONS(3051), - [anon_sym_SLASH_EQ] = ACTIONS(3051), - [anon_sym_PERCENT_EQ] = ACTIONS(3051), - [anon_sym_LT_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_AMP_EQ] = ACTIONS(3051), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3051), - [anon_sym_PLUS_EQ] = ACTIONS(3051), - [anon_sym_DASH_EQ] = ACTIONS(3051), - [anon_sym_PIPE_EQ] = ACTIONS(3051), - [anon_sym_CARET_EQ] = ACTIONS(3051), - [anon_sym_COLON_EQ] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_LT_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_AMP_EQ] = ACTIONS(3049), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_PIPE_EQ] = ACTIONS(3049), + [anon_sym_CARET_EQ] = ACTIONS(3049), + [anon_sym_COLON_EQ] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), }, [476] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym___global] = ACTIONS(3031), - [anon_sym_type] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_pub] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_interface] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_LT_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_AMP_EQ] = ACTIONS(3031), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_PIPE_EQ] = ACTIONS(3031), - [anon_sym_CARET_EQ] = ACTIONS(3031), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym_AT_LBRACK] = ACTIONS(3031), - }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LF] = ACTIONS(3060), - [anon_sym_CR] = ACTIONS(3060), - [anon_sym_CR_LF] = ACTIONS(3060), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_const] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3060), - [anon_sym___global] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(3060), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_interface] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_LT_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_GT_EQ] = ACTIONS(3060), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3060), - [anon_sym_AMP_EQ] = ACTIONS(3060), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_PIPE_EQ] = ACTIONS(3060), - [anon_sym_CARET_EQ] = ACTIONS(3060), - [anon_sym_COLON_EQ] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_c_SQUOTE] = ACTIONS(3060), - [anon_sym_c_DQUOTE] = ACTIONS(3060), - [anon_sym_r_SQUOTE] = ACTIONS(3060), - [anon_sym_r_DQUOTE] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_goto] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_DOLLARfor] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_asm] = ACTIONS(3060), - [anon_sym_AT_LBRACK] = ACTIONS(3060), - }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_LF] = ACTIONS(3064), - [anon_sym_CR] = ACTIONS(3064), - [anon_sym_CR_LF] = ACTIONS(3064), + [477] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3064), - [anon_sym___global] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_union] = ACTIONS(3064), - [anon_sym_pub] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_enum] = ACTIONS(3064), - [anon_sym_interface] = ACTIONS(3064), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_STAR_EQ] = ACTIONS(3064), - [anon_sym_SLASH_EQ] = ACTIONS(3064), - [anon_sym_PERCENT_EQ] = ACTIONS(3064), - [anon_sym_LT_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_GT_EQ] = ACTIONS(3064), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3064), - [anon_sym_AMP_EQ] = ACTIONS(3064), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3064), - [anon_sym_PLUS_EQ] = ACTIONS(3064), - [anon_sym_DASH_EQ] = ACTIONS(3064), - [anon_sym_PIPE_EQ] = ACTIONS(3064), - [anon_sym_CARET_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_c_SQUOTE] = ACTIONS(3064), - [anon_sym_c_DQUOTE] = ACTIONS(3064), - [anon_sym_r_SQUOTE] = ACTIONS(3064), - [anon_sym_r_DQUOTE] = ACTIONS(3064), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_defer] = ACTIONS(3064), - [anon_sym_goto] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_DOLLARfor] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3064), - [anon_sym_AT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(3055), + [anon_sym___global] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_pub] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_interface] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_STAR_EQ] = ACTIONS(3055), + [anon_sym_SLASH_EQ] = ACTIONS(3055), + [anon_sym_PERCENT_EQ] = ACTIONS(3055), + [anon_sym_LT_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_GT_EQ] = ACTIONS(3055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3055), + [anon_sym_AMP_EQ] = ACTIONS(3055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3055), + [anon_sym_PLUS_EQ] = ACTIONS(3055), + [anon_sym_DASH_EQ] = ACTIONS(3055), + [anon_sym_PIPE_EQ] = ACTIONS(3055), + [anon_sym_CARET_EQ] = ACTIONS(3055), + [anon_sym_COLON_EQ] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym_AT_LBRACK] = ACTIONS(3055), }, - [480] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [478] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3057), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [479] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym___global] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_union] = ACTIONS(3061), + [anon_sym_pub] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_LT_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_AMP_EQ] = ACTIONS(3061), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_PIPE_EQ] = ACTIONS(3061), + [anon_sym_CARET_EQ] = ACTIONS(3061), + [anon_sym_COLON_EQ] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_c_SQUOTE] = ACTIONS(3061), + [anon_sym_c_DQUOTE] = ACTIONS(3061), + [anon_sym_r_SQUOTE] = ACTIONS(3061), + [anon_sym_r_DQUOTE] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), + [anon_sym_AT_LBRACK] = ACTIONS(3061), + }, + [480] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(3063), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_CR] = ACTIONS(3065), + [anon_sym_CR_LF] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_const] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym___global] = ACTIONS(3065), + [anon_sym_type] = ACTIONS(3065), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_union] = ACTIONS(3065), + [anon_sym_pub] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(3065), + [anon_sym_interface] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3065), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_CARET] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3065), + [anon_sym_POUND_LBRACK] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_LT_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_GT_EQ] = ACTIONS(3065), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3065), + [anon_sym_AMP_EQ] = ACTIONS(3065), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3065), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_PIPE_EQ] = ACTIONS(3065), + [anon_sym_CARET_EQ] = ACTIONS(3065), + [anon_sym_COLON_EQ] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), + [sym_rune_literal] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_c_SQUOTE] = ACTIONS(3065), + [anon_sym_c_DQUOTE] = ACTIONS(3065), + [anon_sym_r_SQUOTE] = ACTIONS(3065), + [anon_sym_r_DQUOTE] = ACTIONS(3065), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3065), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_goto] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_DOLLARfor] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_asm] = ACTIONS(3065), + [anon_sym_AT_LBRACK] = ACTIONS(3065), + }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), + [ts_builtin_sym_end] = ACTIONS(3067), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3069), + [anon_sym_CR] = ACTIONS(3069), + [anon_sym_CR_LF] = ACTIONS(3069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym___global] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_STAR_EQ] = ACTIONS(3070), - [anon_sym_SLASH_EQ] = ACTIONS(3070), - [anon_sym_PERCENT_EQ] = ACTIONS(3070), - [anon_sym_LT_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_AMP_EQ] = ACTIONS(3070), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3070), - [anon_sym_PLUS_EQ] = ACTIONS(3070), - [anon_sym_DASH_EQ] = ACTIONS(3070), - [anon_sym_PIPE_EQ] = ACTIONS(3070), - [anon_sym_CARET_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_c_SQUOTE] = ACTIONS(3070), - [anon_sym_c_DQUOTE] = ACTIONS(3070), - [anon_sym_r_SQUOTE] = ACTIONS(3070), - [anon_sym_r_DQUOTE] = ACTIONS(3070), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym_AT_LBRACK] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_const] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym___global] = ACTIONS(3069), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_union] = ACTIONS(3069), + [anon_sym_pub] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_enum] = ACTIONS(3069), + [anon_sym_interface] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3069), + [anon_sym_DASH_DASH] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_CARET] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3069), + [anon_sym_POUND_LBRACK] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3069), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_STAR_EQ] = ACTIONS(3069), + [anon_sym_SLASH_EQ] = ACTIONS(3069), + [anon_sym_PERCENT_EQ] = ACTIONS(3069), + [anon_sym_LT_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_GT_EQ] = ACTIONS(3069), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3069), + [anon_sym_AMP_EQ] = ACTIONS(3069), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(3069), + [anon_sym_DASH_EQ] = ACTIONS(3069), + [anon_sym_PIPE_EQ] = ACTIONS(3069), + [anon_sym_CARET_EQ] = ACTIONS(3069), + [anon_sym_COLON_EQ] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), + [sym_rune_literal] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_c_SQUOTE] = ACTIONS(3069), + [anon_sym_c_DQUOTE] = ACTIONS(3069), + [anon_sym_r_SQUOTE] = ACTIONS(3069), + [anon_sym_r_DQUOTE] = ACTIONS(3069), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3069), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_goto] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_DOLLARfor] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3069), + [anon_sym_asm] = ACTIONS(3069), + [anon_sym_AT_LBRACK] = ACTIONS(3069), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(3072), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(3071), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_CR] = ACTIONS(3073), + [anon_sym_CR_LF] = ACTIONS(3073), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym___global] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_pub] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_STAR_EQ] = ACTIONS(3074), - [anon_sym_SLASH_EQ] = ACTIONS(3074), - [anon_sym_PERCENT_EQ] = ACTIONS(3074), - [anon_sym_LT_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_AMP_EQ] = ACTIONS(3074), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3074), - [anon_sym_PLUS_EQ] = ACTIONS(3074), - [anon_sym_DASH_EQ] = ACTIONS(3074), - [anon_sym_PIPE_EQ] = ACTIONS(3074), - [anon_sym_CARET_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_c_SQUOTE] = ACTIONS(3074), - [anon_sym_c_DQUOTE] = ACTIONS(3074), - [anon_sym_r_SQUOTE] = ACTIONS(3074), - [anon_sym_r_DQUOTE] = ACTIONS(3074), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym_AT_LBRACK] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym___global] = ACTIONS(3073), + [anon_sym_type] = ACTIONS(3073), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_pub] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_interface] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3073), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3073), + [anon_sym_AMP_CARET] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3073), + [anon_sym_POUND_LBRACK] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3073), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_STAR_EQ] = ACTIONS(3073), + [anon_sym_SLASH_EQ] = ACTIONS(3073), + [anon_sym_PERCENT_EQ] = ACTIONS(3073), + [anon_sym_LT_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_GT_EQ] = ACTIONS(3073), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3073), + [anon_sym_AMP_EQ] = ACTIONS(3073), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3073), + [anon_sym_PLUS_EQ] = ACTIONS(3073), + [anon_sym_DASH_EQ] = ACTIONS(3073), + [anon_sym_PIPE_EQ] = ACTIONS(3073), + [anon_sym_CARET_EQ] = ACTIONS(3073), + [anon_sym_COLON_EQ] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), + [sym_rune_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_c_SQUOTE] = ACTIONS(3073), + [anon_sym_c_DQUOTE] = ACTIONS(3073), + [anon_sym_r_SQUOTE] = ACTIONS(3073), + [anon_sym_r_DQUOTE] = ACTIONS(3073), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3073), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_defer] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_DOLLARfor] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym_AT_LBRACK] = ACTIONS(3073), }, [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_const] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym___global] = ACTIONS(3045), + [anon_sym_type] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_union] = ACTIONS(3045), + [anon_sym_pub] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_LT_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_AMP_EQ] = ACTIONS(3045), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_PIPE_EQ] = ACTIONS(3045), + [anon_sym_CARET_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), + [anon_sym_AT_LBRACK] = ACTIONS(3045), }, [484] = { [sym_line_comment] = STATE(484), @@ -79668,113 +79906,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4590), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -79784,439 +80022,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_EQ] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_LT_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_AMP_EQ] = ACTIONS(3090), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3090), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_PIPE_EQ] = ACTIONS(3090), - [anon_sym_CARET_EQ] = ACTIONS(3090), - [anon_sym_COLON_EQ] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), - }, - [488] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym__expression] = STATE(1603), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_string_interpolation_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(3092), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_string_interpolation_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(3088), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3130), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3154), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3160), - [anon_sym_rlock] = ACTIONS(3160), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3166), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3175), - [anon_sym_c_SQUOTE] = ACTIONS(3178), - [anon_sym_c_DQUOTE] = ACTIONS(3181), - [anon_sym_r_SQUOTE] = ACTIONS(3184), - [anon_sym_r_DQUOTE] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3190), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3196), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3202), - [anon_sym_atomic] = ACTIONS(3205), - }, - [489] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_mut] = ACTIONS(3114), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3123), + [anon_sym_spawn] = ACTIONS(3126), + [anon_sym_json_DOTdecode] = ACTIONS(3129), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_CARET] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_DOLLARif] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3165), + [sym_rune_literal] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_c_SQUOTE] = ACTIONS(3174), + [anon_sym_c_DQUOTE] = ACTIONS(3177), + [anon_sym_r_SQUOTE] = ACTIONS(3180), + [anon_sym_r_DQUOTE] = ACTIONS(3183), + [sym_pseudo_compile_time_identifier] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3189), + [anon_sym_map_LBRACK] = ACTIONS(3192), + [anon_sym_chan] = ACTIONS(3195), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3201), }, - [490] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), + [488] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), [sym__expression] = STATE(1264), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(618), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(619), [sym_mutable_expression] = STATE(1926), - [sym_expression_list] = STATE(1946), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_expression_list] = STATE(1947), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -80230,14 +80236,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -80245,210 +80251,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [491] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3244), - [anon_sym_LF] = ACTIONS(3244), - [anon_sym_CR] = ACTIONS(3244), - [anon_sym_CR_LF] = ACTIONS(3244), + [489] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4589), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [490] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_CR] = ACTIONS(3240), + [anon_sym_CR_LF] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym___global] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_union] = ACTIONS(3244), - [anon_sym_pub] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3244), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3244), - [anon_sym_POUND_LBRACK] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3244), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_LT_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_GT_EQ] = ACTIONS(3244), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3244), - [anon_sym_AMP_EQ] = ACTIONS(3244), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_PIPE_EQ] = ACTIONS(3244), - [anon_sym_CARET_EQ] = ACTIONS(3244), - [anon_sym_COLON_EQ] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_c_SQUOTE] = ACTIONS(3244), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3244), - [anon_sym_r_DQUOTE] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3244), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), - [anon_sym_assert] = ACTIONS(3244), - [anon_sym_defer] = ACTIONS(3244), - [anon_sym_goto] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_DOLLARfor] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_asm] = ACTIONS(3244), - [anon_sym_AT_LBRACK] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3240), + [anon_sym___global] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_pub] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_LT_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_GT_EQ] = ACTIONS(3240), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3240), + [anon_sym_AMP_EQ] = ACTIONS(3240), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_PIPE_EQ] = ACTIONS(3240), + [anon_sym_CARET_EQ] = ACTIONS(3240), + [anon_sym_COLON_EQ] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3240), + [anon_sym_c_DQUOTE] = ACTIONS(3240), + [anon_sym_r_SQUOTE] = ACTIONS(3240), + [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), + [anon_sym_assert] = ACTIONS(3240), + [anon_sym_defer] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_DOLLARfor] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym_AT_LBRACK] = ACTIONS(3240), }, - [492] = { - [sym_line_comment] = STATE(492), - [sym_block_comment] = STATE(492), + [491] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), [sym__expression] = STATE(1264), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(618), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(619), [sym_mutable_expression] = STATE(1926), - [sym_expression_list] = STATE(1932), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_expression_list] = STATE(1951), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -80462,14 +80584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -80477,473 +80599,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [492] = { + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym__expression] = STATE(1558), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_string_interpolation_repeat1] = STATE(451), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3248), - [anon_sym___global] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_union] = ACTIONS(3248), - [anon_sym_pub] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3248), - [anon_sym_POUND_LBRACK] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_LT_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_GT_EQ] = ACTIONS(3248), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3248), - [anon_sym_AMP_EQ] = ACTIONS(3248), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_PIPE_EQ] = ACTIONS(3248), - [anon_sym_CARET_EQ] = ACTIONS(3248), - [anon_sym_COLON_EQ] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), - [anon_sym_AT_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_COLON_EQ] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), }, [494] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [sym__expression] = STATE(1559), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym___global] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_union] = ACTIONS(3250), + [anon_sym_pub] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_COLON_EQ] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + [anon_sym_AT_LBRACK] = ACTIONS(3250), + }, + [495] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym_string_interpolation_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_COMMA] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym___global] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_pub] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3254), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3254), - [anon_sym_AMP_CARET] = ACTIONS(3254), - [anon_sym_AMP_AMP] = ACTIONS(3254), - [anon_sym_PIPE_PIPE] = ACTIONS(3254), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3254), - [anon_sym_POUND_LBRACK] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3254), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_STAR_EQ] = ACTIONS(3254), - [anon_sym_SLASH_EQ] = ACTIONS(3254), - [anon_sym_PERCENT_EQ] = ACTIONS(3254), - [anon_sym_LT_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_GT_EQ] = ACTIONS(3254), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3254), - [anon_sym_AMP_EQ] = ACTIONS(3254), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3254), - [anon_sym_PLUS_EQ] = ACTIONS(3254), - [anon_sym_DASH_EQ] = ACTIONS(3254), - [anon_sym_PIPE_EQ] = ACTIONS(3254), - [anon_sym_CARET_EQ] = ACTIONS(3254), - [anon_sym_COLON_EQ] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym_AT_LBRACK] = ACTIONS(3254), - }, [496] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_EQ] = ACTIONS(3258), - [anon_sym___global] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3258), - [anon_sym_BANG_EQ] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_union] = ACTIONS(3258), - [anon_sym_pub] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3258), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_CARET] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3258), - [anon_sym_POUND_LBRACK] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3258), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_STAR_EQ] = ACTIONS(3258), - [anon_sym_SLASH_EQ] = ACTIONS(3258), - [anon_sym_PERCENT_EQ] = ACTIONS(3258), - [anon_sym_LT_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_GT_EQ] = ACTIONS(3258), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3258), - [anon_sym_AMP_EQ] = ACTIONS(3258), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3258), - [anon_sym_PLUS_EQ] = ACTIONS(3258), - [anon_sym_DASH_EQ] = ACTIONS(3258), - [anon_sym_PIPE_EQ] = ACTIONS(3258), - [anon_sym_CARET_EQ] = ACTIONS(3258), - [anon_sym_COLON_EQ] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), - [anon_sym_AT_LBRACK] = ACTIONS(3258), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4628), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), }, [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), + [ts_builtin_sym_end] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3256), + [anon_sym_CR] = ACTIONS(3256), + [anon_sym_CR_LF] = ACTIONS(3256), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym___global] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_pub] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_STAR_EQ] = ACTIONS(3256), + [anon_sym_SLASH_EQ] = ACTIONS(3256), + [anon_sym_PERCENT_EQ] = ACTIONS(3256), + [anon_sym_LT_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_GT_EQ] = ACTIONS(3256), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3256), + [anon_sym_AMP_EQ] = ACTIONS(3256), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3256), + [anon_sym_PLUS_EQ] = ACTIONS(3256), + [anon_sym_DASH_EQ] = ACTIONS(3256), + [anon_sym_PIPE_EQ] = ACTIONS(3256), + [anon_sym_CARET_EQ] = ACTIONS(3256), + [anon_sym_COLON_EQ] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_c_SQUOTE] = ACTIONS(3256), + [anon_sym_c_DQUOTE] = ACTIONS(3256), + [anon_sym_r_SQUOTE] = ACTIONS(3256), + [anon_sym_r_DQUOTE] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), + [anon_sym_assert] = ACTIONS(3256), + [anon_sym_defer] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_DOLLARfor] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym_AT_LBRACK] = ACTIONS(3256), + }, + [498] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [499] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(3260), [sym_identifier] = ACTIONS(3262), [anon_sym_LF] = ACTIONS(3262), @@ -81057,9 +81527,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3262), [anon_sym_AT_LBRACK] = ACTIONS(3262), }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), + [500] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4628), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1979), + }, + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(3264), [sym_identifier] = ACTIONS(3266), [anon_sym_LF] = ACTIONS(3266), @@ -81173,9 +81759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3266), [anon_sym_AT_LBRACK] = ACTIONS(3266), }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), + [502] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(3268), [sym_identifier] = ACTIONS(3270), [anon_sym_LF] = ACTIONS(3270), @@ -81289,241 +81875,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3270), [anon_sym_AT_LBRACK] = ACTIONS(3270), }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [sym__expression] = STATE(2580), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3689), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4626), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym__expression] = STATE(2580), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_range] = STATE(4626), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1834), - }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(3272), [sym_identifier] = ACTIONS(3274), [anon_sym_LF] = ACTIONS(3274), @@ -81637,232 +81991,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3274), [anon_sym_AT_LBRACK] = ACTIONS(3274), }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(3276), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LF] = ACTIONS(3278), - [anon_sym_CR] = ACTIONS(3278), - [anon_sym_CR_LF] = ACTIONS(3278), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym___global] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_pub] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3278), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3278), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3278), - [anon_sym_POUND_LBRACK] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3278), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_STAR_EQ] = ACTIONS(3278), - [anon_sym_SLASH_EQ] = ACTIONS(3278), - [anon_sym_PERCENT_EQ] = ACTIONS(3278), - [anon_sym_LT_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_GT_EQ] = ACTIONS(3278), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3278), - [anon_sym_AMP_EQ] = ACTIONS(3278), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3278), - [anon_sym_PLUS_EQ] = ACTIONS(3278), - [anon_sym_DASH_EQ] = ACTIONS(3278), - [anon_sym_PIPE_EQ] = ACTIONS(3278), - [anon_sym_CARET_EQ] = ACTIONS(3278), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3278), - [sym_rune_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_c_SQUOTE] = ACTIONS(3278), - [anon_sym_c_DQUOTE] = ACTIONS(3278), - [anon_sym_r_SQUOTE] = ACTIONS(3278), - [anon_sym_r_DQUOTE] = ACTIONS(3278), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3278), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_defer] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_DOLLARfor] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym_AT_LBRACK] = ACTIONS(3278), - }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81872,122 +82110,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3280), + [anon_sym_CR] = ACTIONS(3280), + [anon_sym_CR_LF] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(3280), + [anon_sym___global] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_union] = ACTIONS(3280), + [anon_sym_pub] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3280), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3280), + [anon_sym_AMP_CARET] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3280), + [anon_sym_POUND_LBRACK] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_STAR_EQ] = ACTIONS(3280), + [anon_sym_SLASH_EQ] = ACTIONS(3280), + [anon_sym_PERCENT_EQ] = ACTIONS(3280), + [anon_sym_LT_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_GT_EQ] = ACTIONS(3280), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3280), + [anon_sym_AMP_EQ] = ACTIONS(3280), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3280), + [anon_sym_PLUS_EQ] = ACTIONS(3280), + [anon_sym_DASH_EQ] = ACTIONS(3280), + [anon_sym_PIPE_EQ] = ACTIONS(3280), + [anon_sym_CARET_EQ] = ACTIONS(3280), + [anon_sym_COLON_EQ] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3280), + [sym_rune_literal] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_c_SQUOTE] = ACTIONS(3280), + [anon_sym_c_DQUOTE] = ACTIONS(3280), + [anon_sym_r_SQUOTE] = ACTIONS(3280), + [anon_sym_r_DQUOTE] = ACTIONS(3280), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3280), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), + [anon_sym_assert] = ACTIONS(3280), + [anon_sym_defer] = ACTIONS(3280), + [anon_sym_goto] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_DOLLARfor] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3280), + [anon_sym_asm] = ACTIONS(3280), + [anon_sym_AT_LBRACK] = ACTIONS(3280), + }, + [506] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_EQ] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_STAR_EQ] = ACTIONS(2373), + [anon_sym_SLASH_EQ] = ACTIONS(2373), + [anon_sym_PERCENT_EQ] = ACTIONS(2373), + [anon_sym_LT_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_AMP_EQ] = ACTIONS(2373), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2373), + [anon_sym_PLUS_EQ] = ACTIONS(2373), + [anon_sym_DASH_EQ] = ACTIONS(2373), + [anon_sym_PIPE_EQ] = ACTIONS(2373), + [anon_sym_CARET_EQ] = ACTIONS(2373), + [anon_sym_COLON_EQ] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), + }, + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(3284), [sym_identifier] = ACTIONS(3286), [anon_sym_LF] = ACTIONS(3286), @@ -82101,348 +82571,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3286), [anon_sym_AT_LBRACK] = ACTIONS(3286), }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_STAR_EQ] = ACTIONS(2465), - [anon_sym_SLASH_EQ] = ACTIONS(2465), - [anon_sym_PERCENT_EQ] = ACTIONS(2465), - [anon_sym_LT_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_AMP_EQ] = ACTIONS(2465), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2465), - [anon_sym_PLUS_EQ] = ACTIONS(2465), - [anon_sym_DASH_EQ] = ACTIONS(2465), - [anon_sym_PIPE_EQ] = ACTIONS(2465), - [anon_sym_CARET_EQ] = ACTIONS(2465), - [anon_sym_COLON_EQ] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), - }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82452,354 +82690,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(3292), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LF] = ACTIONS(3294), - [anon_sym_CR] = ACTIONS(3294), - [anon_sym_CR_LF] = ACTIONS(3294), + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COMMA] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym___global] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_EQ] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_pub] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_CARET] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3294), - [anon_sym_LT_LT] = ACTIONS(3294), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3294), - [anon_sym_AMP_CARET] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3294), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3294), - [anon_sym_POUND_LBRACK] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_STAR_EQ] = ACTIONS(3294), - [anon_sym_SLASH_EQ] = ACTIONS(3294), - [anon_sym_PERCENT_EQ] = ACTIONS(3294), - [anon_sym_LT_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_GT_EQ] = ACTIONS(3294), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3294), - [anon_sym_AMP_EQ] = ACTIONS(3294), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3294), - [anon_sym_PLUS_EQ] = ACTIONS(3294), - [anon_sym_DASH_EQ] = ACTIONS(3294), - [anon_sym_PIPE_EQ] = ACTIONS(3294), - [anon_sym_CARET_EQ] = ACTIONS(3294), - [anon_sym_COLON_EQ] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3294), - [sym_rune_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_c_SQUOTE] = ACTIONS(3294), - [anon_sym_c_DQUOTE] = ACTIONS(3294), - [anon_sym_r_SQUOTE] = ACTIONS(3294), - [anon_sym_r_DQUOTE] = ACTIONS(3294), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3294), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - [anon_sym_assert] = ACTIONS(3294), - [anon_sym_defer] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_DOLLARfor] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_POUND] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym_AT_LBRACK] = ACTIONS(3294), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym___global] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_union] = ACTIONS(3292), + [anon_sym_pub] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_STAR_EQ] = ACTIONS(3292), + [anon_sym_SLASH_EQ] = ACTIONS(3292), + [anon_sym_PERCENT_EQ] = ACTIONS(3292), + [anon_sym_LT_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_GT_EQ] = ACTIONS(3292), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3292), + [anon_sym_AMP_EQ] = ACTIONS(3292), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3292), + [anon_sym_PLUS_EQ] = ACTIONS(3292), + [anon_sym_DASH_EQ] = ACTIONS(3292), + [anon_sym_PIPE_EQ] = ACTIONS(3292), + [anon_sym_CARET_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), + [anon_sym_AT_LBRACK] = ACTIONS(3292), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym___global] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_union] = ACTIONS(3296), + [anon_sym_pub] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_STAR_EQ] = ACTIONS(3296), + [anon_sym_SLASH_EQ] = ACTIONS(3296), + [anon_sym_PERCENT_EQ] = ACTIONS(3296), + [anon_sym_LT_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_GT_EQ] = ACTIONS(3296), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3296), + [anon_sym_AMP_EQ] = ACTIONS(3296), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3296), + [anon_sym_PLUS_EQ] = ACTIONS(3296), + [anon_sym_DASH_EQ] = ACTIONS(3296), + [anon_sym_PIPE_EQ] = ACTIONS(3296), + [anon_sym_CARET_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), + [anon_sym_AT_LBRACK] = ACTIONS(3296), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [sym__expression] = STATE(2551), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(4088), - [sym_expression_list] = STATE(4204), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(3298), [sym_identifier] = ACTIONS(3300), [anon_sym_LF] = ACTIONS(3300), @@ -82913,9 +83035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3300), [anon_sym_AT_LBRACK] = ACTIONS(3300), }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(3302), [sym_identifier] = ACTIONS(3304), [anon_sym_LF] = ACTIONS(3304), @@ -83029,9 +83151,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3304), [anon_sym_AT_LBRACK] = ACTIONS(3304), }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(3306), [sym_identifier] = ACTIONS(3308), [anon_sym_LF] = ACTIONS(3308), @@ -83145,116 +83267,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3308), [anon_sym_AT_LBRACK] = ACTIONS(3308), }, + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym___global] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_pub] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_LT_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_GT_EQ] = ACTIONS(3312), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3312), + [anon_sym_AMP_EQ] = ACTIONS(3312), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_PIPE_EQ] = ACTIONS(3312), + [anon_sym_CARET_EQ] = ACTIONS(3312), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym_AT_LBRACK] = ACTIONS(3312), + }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3314), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83264,122 +83502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(3312), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym___global] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3314), - [anon_sym_BANG_EQ] = ACTIONS(3314), - [anon_sym_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_EQ] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_pub] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [anon_sym_LT_LT] = ACTIONS(3314), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3314), - [anon_sym_AMP_CARET] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_PIPE_PIPE] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3314), - [anon_sym_POUND_LBRACK] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3314), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_STAR_EQ] = ACTIONS(3314), - [anon_sym_SLASH_EQ] = ACTIONS(3314), - [anon_sym_PERCENT_EQ] = ACTIONS(3314), - [anon_sym_LT_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_GT_EQ] = ACTIONS(3314), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3314), - [anon_sym_AMP_EQ] = ACTIONS(3314), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3314), - [anon_sym_PLUS_EQ] = ACTIONS(3314), - [anon_sym_DASH_EQ] = ACTIONS(3314), - [anon_sym_PIPE_EQ] = ACTIONS(3314), - [anon_sym_CARET_EQ] = ACTIONS(3314), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym_AT_LBRACK] = ACTIONS(3314), - }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(3316), [sym_identifier] = ACTIONS(3318), [anon_sym_LF] = ACTIONS(3318), @@ -83493,125 +83615,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3318), [anon_sym_AT_LBRACK] = ACTIONS(3318), }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(3320), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(3322), [sym_identifier] = ACTIONS(3324), [anon_sym_LF] = ACTIONS(3324), @@ -83725,9 +83847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3324), [anon_sym_AT_LBRACK] = ACTIONS(3324), }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(3326), [sym_identifier] = ACTIONS(3328), [anon_sym_LF] = ACTIONS(3328), @@ -83841,6 +83963,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3328), [anon_sym_AT_LBRACK] = ACTIONS(3328), }, + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [sym__expression] = STATE(2565), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(4083), + [sym_expression_list] = STATE(4205), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), @@ -83960,6 +84198,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), + }, + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(3334), [sym_identifier] = ACTIONS(3336), [anon_sym_LF] = ACTIONS(3336), @@ -84073,125 +84427,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3336), [anon_sym_AT_LBRACK] = ACTIONS(3336), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3983), - [sym_expression_list] = STATE(4176), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3982), + [sym_expression_list] = STATE(4116), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(3338), [sym_identifier] = ACTIONS(3340), [anon_sym_LF] = ACTIONS(3340), @@ -84305,125 +84659,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3340), [anon_sym_AT_LBRACK] = ACTIONS(3340), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(3344), [sym_identifier] = ACTIONS(3346), [anon_sym_LF] = ACTIONS(3346), @@ -84537,122 +84891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3346), [anon_sym_AT_LBRACK] = ACTIONS(3346), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), - }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), @@ -84772,344 +85010,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym___global] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3354), - [anon_sym_BANG_EQ] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_pub] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3354), - [anon_sym_AMP_CARET] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_PIPE_PIPE] = ACTIONS(3354), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_STAR_EQ] = ACTIONS(3354), - [anon_sym_SLASH_EQ] = ACTIONS(3354), - [anon_sym_PERCENT_EQ] = ACTIONS(3354), - [anon_sym_LT_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_GT_EQ] = ACTIONS(3354), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3354), - [anon_sym_AMP_EQ] = ACTIONS(3354), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3354), - [anon_sym_PLUS_EQ] = ACTIONS(3354), - [anon_sym_DASH_EQ] = ACTIONS(3354), - [anon_sym_PIPE_EQ] = ACTIONS(3354), - [anon_sym_CARET_EQ] = ACTIONS(3354), - [anon_sym_COLON_EQ] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym_AT_LBRACK] = ACTIONS(3354), - }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [sym__expression] = STATE(1571), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1694), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1693), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1574), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1693), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1692), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [aux_sym__array_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(472), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_RBRACK] = ACTIONS(3356), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_STAR_EQ] = ACTIONS(3356), + [anon_sym_SLASH_EQ] = ACTIONS(3356), + [anon_sym_PERCENT_EQ] = ACTIONS(3356), + [anon_sym_LT_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_AMP_EQ] = ACTIONS(3356), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3356), + [anon_sym_PLUS_EQ] = ACTIONS(3356), + [anon_sym_DASH_EQ] = ACTIONS(3356), + [anon_sym_PIPE_EQ] = ACTIONS(3356), + [anon_sym_CARET_EQ] = ACTIONS(3356), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), + }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3012), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3011), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3010), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3007), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3360), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85119,112 +85357,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3882), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(1979), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85234,112 +85472,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3045), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3042), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3041), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3368), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3388), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85349,112 +85587,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3041), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3040), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(3883), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3370), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3372), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85464,112 +85702,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [sym__expression] = STATE(1983), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(941), - [sym_mutable_expression] = STATE(3377), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2984), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85579,112 +85817,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [sym__expression] = STATE(2012), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), + [sym__expression] = STATE(2011), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), [sym_mutability_modifiers] = STATE(938), - [sym_mutable_expression] = STATE(3379), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym_mutable_expression] = STATE(3377), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85694,112 +85932,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3053), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3030), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3008), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3005), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3398), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3400), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85809,112 +86047,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2987), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2989), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2982), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3003), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3402), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3404), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85924,26 +86162,946 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [sym_reference_expression] = STATE(4484), + [sym__expression] = STATE(2910), + [sym__expression_without_blocks] = STATE(2926), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_expression_without_blocks_list] = STATE(4464), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [sym__expression] = STATE(2910), + [sym__expression_without_blocks] = STATE(2926), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_expression_without_blocks_list] = STATE(4452), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [sym_reference_expression] = STATE(4486), + [sym_type_reference_expression] = STATE(1298), + [sym_plain_type] = STATE(1391), + [sym__plain_type_without_special] = STATE(1327), + [sym_anon_struct_type] = STATE(1324), + [sym_multi_return_type] = STATE(1327), + [sym_result_type] = STATE(1327), + [sym_option_type] = STATE(1327), + [sym_qualified_type] = STATE(1298), + [sym_fixed_array_type] = STATE(1324), + [sym_array_type] = STATE(1324), + [sym_pointer_type] = STATE(1324), + [sym_wrong_pointer_type] = STATE(1324), + [sym_map_type] = STATE(1324), + [sym_channel_type] = STATE(1324), + [sym_shared_type] = STATE(1324), + [sym_thread_type] = STATE(1324), + [sym_atomic_type] = STATE(1324), + [sym_generic_type] = STATE(1324), + [sym_function_type] = STATE(1324), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3432), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + }, + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3012), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2985), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3436), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [sym_reference_expression] = STATE(4486), + [sym_type_reference_expression] = STATE(1298), + [sym_plain_type] = STATE(1397), + [sym__plain_type_without_special] = STATE(1327), + [sym_anon_struct_type] = STATE(1324), + [sym_multi_return_type] = STATE(1327), + [sym_result_type] = STATE(1327), + [sym_option_type] = STATE(1327), + [sym_qualified_type] = STATE(1298), + [sym_fixed_array_type] = STATE(1324), + [sym_array_type] = STATE(1324), + [sym_pointer_type] = STATE(1324), + [sym_wrong_pointer_type] = STATE(1324), + [sym_map_type] = STATE(1324), + [sym_channel_type] = STATE(1324), + [sym_shared_type] = STATE(1324), + [sym_thread_type] = STATE(1324), + [sym_atomic_type] = STATE(1324), + [sym_generic_type] = STATE(1324), + [sym_function_type] = STATE(1324), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3432), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), + }, + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3053), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3030), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3440), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2993), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3444), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + [sym_rune_literal] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_c_SQUOTE] = ACTIONS(865), + [anon_sym_c_DQUOTE] = ACTIONS(865), + [anon_sym_r_SQUOTE] = ACTIONS(865), + [anon_sym_r_DQUOTE] = ACTIONS(865), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(865), + [anon_sym_defer] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_DOLLARfor] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_asm] = ACTIONS(865), + }, + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [sym_reference_expression] = STATE(4486), [sym_type_reference_expression] = STATE(1298), - [sym_plain_type] = STATE(1334), - [sym__plain_type_without_special] = STATE(1328), - [sym_anon_struct_type] = STATE(1326), - [sym_multi_return_type] = STATE(1328), - [sym_result_type] = STATE(1328), - [sym_option_type] = STATE(1328), + [sym_plain_type] = STATE(1312), + [sym__plain_type_without_special] = STATE(1327), + [sym_anon_struct_type] = STATE(1324), + [sym_multi_return_type] = STATE(1327), + [sym_result_type] = STATE(1327), + [sym_option_type] = STATE(1327), [sym_qualified_type] = STATE(1298), - [sym_fixed_array_type] = STATE(1326), - [sym_array_type] = STATE(1326), - [sym_pointer_type] = STATE(1326), - [sym_wrong_pointer_type] = STATE(1326), - [sym_map_type] = STATE(1326), - [sym_channel_type] = STATE(1326), - [sym_shared_type] = STATE(1326), - [sym_thread_type] = STATE(1326), - [sym_atomic_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_function_type] = STATE(1326), + [sym_fixed_array_type] = STATE(1324), + [sym_array_type] = STATE(1324), + [sym_pointer_type] = STATE(1324), + [sym_wrong_pointer_type] = STATE(1324), + [sym_map_type] = STATE(1324), + [sym_channel_type] = STATE(1324), + [sym_shared_type] = STATE(1324), + [sym_thread_type] = STATE(1324), + [sym_atomic_type] = STATE(1324), + [sym_generic_type] = STATE(1324), + [sym_function_type] = STATE(1324), [sym_identifier] = ACTIONS(3406), [anon_sym_LF] = ACTIONS(821), [anon_sym_CR] = ACTIONS(821), @@ -86036,1035 +87194,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(821), [anon_sym_asm] = ACTIONS(821), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [sym__expression] = STATE(2908), - [sym__expression_without_blocks] = STATE(2927), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_expression_without_blocks_list] = STATE(4475), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [sym__expression] = STATE(2908), - [sym__expression_without_blocks] = STATE(2927), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_expression_without_blocks_list] = STATE(4462), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2984), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2994), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3434), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3436), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [sym_reference_expression] = STATE(4484), - [sym_type_reference_expression] = STATE(1298), - [sym_plain_type] = STATE(1330), - [sym__plain_type_without_special] = STATE(1328), - [sym_anon_struct_type] = STATE(1326), - [sym_multi_return_type] = STATE(1328), - [sym_result_type] = STATE(1328), - [sym_option_type] = STATE(1328), - [sym_qualified_type] = STATE(1298), - [sym_fixed_array_type] = STATE(1326), - [sym_array_type] = STATE(1326), - [sym_pointer_type] = STATE(1326), - [sym_wrong_pointer_type] = STATE(1326), - [sym_map_type] = STATE(1326), - [sym_channel_type] = STATE(1326), - [sym_shared_type] = STATE(1326), - [sym_thread_type] = STATE(1326), - [sym_atomic_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_function_type] = STATE(1326), - [sym_identifier] = ACTIONS(3406), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3426), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3430), - [anon_sym_atomic] = ACTIONS(3432), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), - }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3051), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3017), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3440), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [sym_reference_expression] = STATE(4484), - [sym_type_reference_expression] = STATE(1298), - [sym_plain_type] = STATE(1310), - [sym__plain_type_without_special] = STATE(1328), - [sym_anon_struct_type] = STATE(1326), - [sym_multi_return_type] = STATE(1328), - [sym_result_type] = STATE(1328), - [sym_option_type] = STATE(1328), - [sym_qualified_type] = STATE(1298), - [sym_fixed_array_type] = STATE(1326), - [sym_array_type] = STATE(1326), - [sym_pointer_type] = STATE(1326), - [sym_wrong_pointer_type] = STATE(1326), - [sym_map_type] = STATE(1326), - [sym_channel_type] = STATE(1326), - [sym_shared_type] = STATE(1326), - [sym_thread_type] = STATE(1326), - [sym_atomic_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_function_type] = STATE(1326), - [sym_identifier] = ACTIONS(3406), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(3414), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3426), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3430), - [anon_sym_atomic] = ACTIONS(3432), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3036), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3035), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), - [anon_sym_json_DOTdecode] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(857), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_c_SQUOTE] = ACTIONS(857), - [anon_sym_c_DQUOTE] = ACTIONS(857), - [anon_sym_r_SQUOTE] = ACTIONS(857), - [anon_sym_r_DQUOTE] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_goto] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_DOLLARfor] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(857), - [anon_sym_asm] = ACTIONS(857), - }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3042), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2983), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3021), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3020), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3448), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3450), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87074,112 +87312,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [sym__expression] = STATE(2613), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3379), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2620), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(884), + [sym_mutable_expression] = STATE(3377), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87189,112 +87427,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2999), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3006), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2981), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3037), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3454), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87304,112 +87542,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [sym__expression] = STATE(2853), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2843), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3456), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87419,112 +87657,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3007), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2991), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2744), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(714), + [sym_mutable_expression] = STATE(4522), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3460), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87534,112 +87772,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [sym__expression] = STATE(2743), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4521), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2835), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87649,112 +87887,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [sym__expression] = STATE(2833), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3043), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3013), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3480), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87764,112 +88002,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4496), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4497), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87879,112 +88117,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [sym__expression] = STATE(1980), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(968), - [sym_mutable_expression] = STATE(3380), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2720), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(714), + [sym_mutable_expression] = STATE(4441), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87994,112 +88232,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [sym__expression] = STATE(2720), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2710), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4448), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4424), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88109,112 +88347,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [sym__expression] = STATE(2719), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4423), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88224,112 +88462,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(1978), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(966), + [sym_mutable_expression] = STATE(3380), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88339,112 +88577,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [sym__expression] = STATE(2744), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2704), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(714), + [sym_mutable_expression] = STATE(4426), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88454,112 +88692,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [sym__expression] = STATE(2709), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4424), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2745), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88569,227 +88807,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [sym__expression] = STATE(2564), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2700), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(714), + [sym_mutable_expression] = STATE(4447), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [sym__expression] = STATE(2551), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym__definite_range] = STATE(4681), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4683), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), - [sym__expression] = STATE(2699), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4445), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88799,112 +89037,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3032), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3055), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2559), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(3377), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3506), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88914,141 +89152,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [sym__expression] = STATE(2568), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(3379), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), [anon_sym_CR] = ACTIONS(851), @@ -89141,115 +89264,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(851), [anon_sym_asm] = ACTIONS(851), }, + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3035), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3058), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3506), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4466), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4468), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89259,112 +89497,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4487), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4489), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89374,112 +89612,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3054), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3052), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2758), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(714), + [sym_mutable_expression] = STATE(4592), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(3508), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(3510), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89489,112 +89727,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [sym__expression] = STATE(2777), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2766), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4594), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4596), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89604,112 +89842,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [sym__expression] = STATE(2764), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4592), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3059), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3056), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(3510), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89719,68 +89957,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [sym__expression] = STATE(244), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(242), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(951), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(952), [sym_mutable_expression] = STATE(1408), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -89834,90 +90072,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [sym__expression] = STATE(1125), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1132), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(621), - [sym_mutable_expression] = STATE(1749), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_mutable_expression] = STATE(1766), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -89931,14 +90169,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -89949,112 +90187,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [sym__expression] = STATE(2645), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4508), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4510), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90064,112 +90302,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [sym__expression] = STATE(2568), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2559), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(869), - [sym_mutable_expression] = STATE(3379), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_mutable_expression] = STATE(3377), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90179,90 +90417,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [sym__expression] = STATE(1275), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(618), + [sym__expression] = STATE(1270), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(619), [sym_mutable_expression] = STATE(1930), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -90276,14 +90514,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -90294,112 +90532,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3024), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3023), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3025), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3024), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3520), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90409,112 +90647,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2996), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2981), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2990), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2989), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3522), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3524), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90524,112 +90762,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3014), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3009), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3031), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3016), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3526), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3528), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90639,112 +90877,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2982), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3020), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3039), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3018), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), [anon_sym_RBRACK] = ACTIONS(3530), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), [sym_int_literal] = ACTIONS(3532), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90755,67 +90993,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), [sym__expression] = STATE(993), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(902), - [sym_mutable_expression] = STATE(1581), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_mutability_modifiers] = STATE(918), + [sym_mutable_expression] = STATE(1582), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -90869,112 +91107,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4529), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4531), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90984,112 +91222,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym__expression] = STATE(2687), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(714), - [sym_mutable_expression] = STATE(4545), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_mutable_expression] = STATE(4547), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91099,111 +91337,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4328), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4401), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91213,111 +91451,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym__expression] = STATE(1981), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1997), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91327,111 +91565,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym__expression] = STATE(1984), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91441,111 +91679,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [sym__expression] = STATE(2518), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4265), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(2371), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91555,111 +91793,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym__expression] = STATE(2379), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(1968), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91669,111 +91907,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [sym__expression] = STATE(1981), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4259), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91783,111 +92021,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4260), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91897,111 +92135,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92011,111 +92249,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92125,111 +92363,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [sym__expression] = STATE(2518), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4253), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92239,111 +92477,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [sym__expression] = STATE(1982), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1981), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92353,111 +92591,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [sym__expression] = STATE(2549), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(3885), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_go] = ACTIONS(3492), + [anon_sym_spawn] = ACTIONS(3494), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT_DASH] = ACTIONS(3498), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3500), + [anon_sym_lock] = ACTIONS(3502), + [anon_sym_rlock] = ACTIONS(3502), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92467,111 +92705,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [sym__expression] = STATE(2843), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2575), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92581,111 +92819,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [sym__expression] = STATE(1965), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2839), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92695,111 +92933,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3884), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2541), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3490), - [anon_sym_go] = ACTIONS(3492), - [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_CARET] = ACTIONS(3486), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3500), - [anon_sym_lock] = ACTIONS(3502), - [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92809,225 +93047,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [sym__expression] = STATE(2547), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3882), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3883), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [sym__expression] = STATE(2542), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93037,111 +93275,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3877), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3878), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93151,111 +93389,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [sym__expression] = STATE(2572), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(1969), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93265,111 +93503,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [sym__expression] = STATE(1985), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1977), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93379,111 +93617,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [sym__expression] = STATE(1986), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1974), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93493,111 +93731,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2885), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93607,111 +93845,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [sym__expression] = STATE(2884), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93722,110 +93960,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93835,111 +94073,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2997), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2998), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2991), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2992), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93949,111 +94187,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [sym__expression] = STATE(2765), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2759), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94063,111 +94301,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym__expression] = STATE(2569), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2563), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94177,111 +94415,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [sym__expression] = STATE(2386), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94291,111 +94529,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [sym__expression] = STATE(2576), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(3885), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94405,111 +94643,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3884), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1423), + [sym__expression] = STATE(2560), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94519,111 +94757,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2555), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94633,111 +94871,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [sym__expression] = STATE(2563), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94747,111 +94985,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [sym__expression] = STATE(2562), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2570), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94861,89 +95099,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(3878), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -94957,14 +95309,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -94972,228 +95324,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3877), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [sym__expression] = STATE(2725), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2728), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95203,89 +95441,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [sym__expression] = STATE(1123), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1122), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -95299,14 +95537,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -95318,110 +95556,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), [sym__expression] = STATE(1555), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95431,111 +95669,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4404), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95546,110 +95784,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95659,111 +95897,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(1562), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95773,111 +96011,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [sym__expression] = STATE(2515), + [sym__expression] = STATE(2518), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95887,111 +96125,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [sym__expression] = STATE(2924), - [sym__expression_without_blocks] = STATE(2235), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4306), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96001,111 +96239,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(2917), + [sym__expression_without_blocks] = STATE(2235), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [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_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96115,111 +96353,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [sym__expression] = STATE(1567), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(2531), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96230,88 +96468,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4336), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -96319,20 +96557,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -96343,111 +96581,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym__expression] = STATE(2516), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(1575), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96457,111 +96695,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym__expression] = STATE(1566), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(2539), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96571,111 +96809,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4394), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(1120), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4335), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96685,111 +96923,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym__expression] = STATE(2534), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(1120), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96799,111 +97037,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4305), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96913,111 +97151,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4299), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97027,111 +97265,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97141,89 +97379,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -97231,20 +97469,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -97255,111 +97493,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym__expression] = STATE(2518), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97369,111 +97607,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4386), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97483,111 +97721,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(1137), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97598,88 +97836,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4326), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -97687,20 +97925,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -97712,88 +97950,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), [sym__expression] = STATE(1129), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -97801,20 +98039,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -97825,73 +98063,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -97902,8 +98140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -97921,14 +98159,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -97939,73 +98177,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4104), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4103), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98016,8 +98254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98035,14 +98273,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98053,73 +98291,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [646] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4137), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98130,8 +98368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98149,14 +98387,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98167,73 +98405,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98244,8 +98482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98263,14 +98501,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98281,73 +98519,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [648] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [sym__expression] = STATE(1288), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98358,8 +98596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98377,14 +98615,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98395,73 +98633,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [649] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4132), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4133), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98472,8 +98710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98491,14 +98729,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98510,72 +98748,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -98586,8 +98824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -98605,14 +98843,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98623,203 +98861,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), [sym__expression] = STATE(1266), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -98833,14 +98957,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98848,92 +98972,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [sym__expression] = STATE(1277), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -98947,14 +99071,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -98962,320 +99086,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [sym__expression] = STATE(2523), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [sym__expression] = STATE(2513), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [sym__expression] = STATE(1265), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_go] = ACTIONS(901), - [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_nil] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_DOLLARif] = ACTIONS(917), - [anon_sym_match] = ACTIONS(919), - [anon_sym_select] = ACTIONS(921), - [anon_sym_lock] = ACTIONS(923), - [anon_sym_rlock] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(925), - [anon_sym_sql] = ACTIONS(927), - [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), - [sym_pseudo_compile_time_identifier] = ACTIONS(941), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), [sym__expression] = STATE(1267), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -99289,14 +99299,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -99304,548 +99314,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2375), + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2385), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [sym__expression] = STATE(2289), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [sym__expression] = STATE(1268), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(948), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_go] = ACTIONS(901), + [anon_sym_spawn] = ACTIONS(903), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), + [sym_none] = ACTIONS(913), + [sym_true] = ACTIONS(913), + [sym_false] = ACTIONS(913), + [sym_nil] = ACTIONS(913), + [anon_sym_if] = ACTIONS(915), + [anon_sym_DOLLARif] = ACTIONS(917), + [anon_sym_match] = ACTIONS(919), + [anon_sym_select] = ACTIONS(921), + [anon_sym_lock] = ACTIONS(923), + [anon_sym_rlock] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(925), + [anon_sym_sql] = ACTIONS(927), + [sym_int_literal] = ACTIONS(913), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [sym__expression] = STATE(2520), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [sym__expression] = STATE(2505), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [sym__expression] = STATE(1271), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [sym__expression] = STATE(1269), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -99859,14 +99869,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -99874,320 +99884,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [sym__expression] = STATE(2916), - [sym__expression_without_blocks] = STATE(3001), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [sym__expression] = STATE(1272), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [sym__expression] = STATE(1271), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -100201,14 +100211,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -100216,114 +100226,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [sym__expression] = STATE(2921), + [sym__expression_without_blocks] = STATE(2999), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [665] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3026), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3029), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3032), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100333,111 +100571,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [sym__expression] = STATE(2234), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2349), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100447,111 +100685,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2375), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100562,110 +100800,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4299), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100675,111 +100913,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100789,111 +101027,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4305), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100903,111 +101141,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4306), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101017,181 +101255,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym__expression] = STATE(2702), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [sym__expression] = STATE(994), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -101242,206 +101366,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [sym__expression] = STATE(2590), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [sym__expression] = STATE(2703), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -101449,20 +101573,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -101470,114 +101594,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [sym__expression] = STATE(2597), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [676] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3005), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3000), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3011), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3009), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101587,111 +101825,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101701,111 +101939,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [sym__expression] = STATE(2905), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(2906), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3728), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101815,111 +102053,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [sym__expression] = STATE(2234), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2233), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101929,181 +102167,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [sym__expression] = STATE(2700), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [sym__expression] = STATE(1975), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4106), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1970), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -102154,412 +102278,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [sym__expression] = STATE(2373), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [sym__expression] = STATE(2701), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [sym__expression] = STATE(2376), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [sym__expression] = STATE(2382), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [sym__expression] = STATE(2384), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [sym__expression] = STATE(1975), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4105), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [sym__expression] = STATE(1970), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4106), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -102610,184 +102734,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3048), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3047), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [sym__expression] = STATE(2581), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [sym__expression] = STATE(1975), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4099), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [sym__expression] = STATE(1970), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -102838,114 +102962,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [sym__expression] = STATE(2779), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [688] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [sym__expression] = STATE(2888), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2236), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102955,111 +103193,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3028), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3025), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3048), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3047), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103069,111 +103307,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [690] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [sym__expression] = STATE(2742), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2753), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103183,111 +103421,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [sym__expression] = STATE(2521), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2743), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103297,111 +103535,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [692] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [sym__expression] = STATE(2386), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2512), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103411,111 +103649,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [693] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [sym__expression] = STATE(2233), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(1124), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(775), + [anon_sym_spawn] = ACTIONS(777), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(795), + [anon_sym_lock] = ACTIONS(797), + [anon_sym_rlock] = ACTIONS(797), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103525,89 +103763,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [694] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [sym__expression] = STATE(1124), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [sym__expression] = STATE(1125), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -103621,14 +103973,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -103636,320 +103988,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), - [sym__expression] = STATE(2522), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [sym__expression] = STATE(2509), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [sym__expression] = STATE(1127), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -103963,14 +104315,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -103978,434 +104330,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [sym__expression] = STATE(2506), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [sym__expression] = STATE(2513), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [sym__expression] = STATE(2517), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [sym__expression] = STATE(2507), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [sym__expression] = STATE(1130), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -104419,14 +104771,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -104434,206 +104786,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3003), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3002), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2996), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2995), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [sym__expression] = STATE(1131), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -104647,14 +104999,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -104662,206 +105014,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), - [sym__expression] = STATE(2767), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [sym__expression] = STATE(2765), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -104875,14 +105227,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -104890,228 +105242,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), - [sym__expression] = STATE(2779), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(2777), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(775), - [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(795), - [anon_sym_lock] = ACTIONS(797), - [anon_sym_rlock] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105121,111 +105359,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2614), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105235,111 +105473,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3043), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3058), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3049), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3050), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105349,111 +105587,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [sym__expression] = STATE(2873), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105463,111 +105701,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [sym__expression] = STATE(2901), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105577,111 +105815,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [sym__expression] = STATE(2384), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2376), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105691,111 +105929,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105805,111 +106043,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [sym__expression] = STATE(2757), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2756), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105919,67 +106157,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [sym__expression] = STATE(1971), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1982), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -106033,111 +106271,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106147,181 +106385,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3059), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3056), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [sym__expression] = STATE(1973), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1980), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -106372,70 +106496,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3054), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3045), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [sym__expression] = STATE(1974), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1966), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -106489,111 +106727,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106603,111 +106841,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [721] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2869), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106717,111 +106955,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2794), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106831,111 +107069,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106945,111 +107183,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107059,67 +107297,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [sym__expression] = STATE(1975), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1970), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -107173,111 +107411,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3049), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3044), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3052), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3051), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107287,111 +107525,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [sym__expression] = STATE(2697), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2698), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107402,88 +107640,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -107497,14 +107735,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -107515,111 +107753,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [729] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2644), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107629,111 +107867,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2600), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107743,111 +107981,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107857,111 +108095,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107971,89 +108209,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [sym__expression] = STATE(1141), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -108061,20 +108299,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -108085,111 +108323,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2986), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2988), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3057), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3000), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108199,111 +108437,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2892), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108313,111 +108551,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [sym__expression] = STATE(2899), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108428,88 +108666,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4336), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4335), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -108523,14 +108761,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -108541,111 +108779,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [738] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4328), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(775), - [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(795), - [anon_sym_lock] = ACTIONS(797), - [anon_sym_rlock] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108655,111 +108893,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2900), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108769,89 +109007,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [sym__expression] = STATE(1142), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1141), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -108859,20 +109097,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -108883,111 +109121,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [sym__expression] = STATE(2614), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2610), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108997,111 +109235,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109111,111 +109349,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109225,111 +109463,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(1427), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109339,111 +109577,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [sym__expression] = STATE(1425), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3029), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3026), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109453,67 +109691,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [746] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [sym__expression] = STATE(256), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [sym__expression] = STATE(245), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -109564,228 +109916,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [748] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [sym__expression] = STATE(2752), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(1411), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109795,111 +110033,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [sym__expression] = STATE(2776), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109909,111 +110147,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2590), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110023,111 +110261,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [751] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [sym__expression] = STATE(1412), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1415), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110137,111 +110375,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [752] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [sym__expression] = STATE(1410), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1409), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4356), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110251,111 +110489,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [753] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [sym__expression] = STATE(2248), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(2562), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110365,111 +110603,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [754] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym__expression] = STATE(2560), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2251), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110479,111 +110717,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [755] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym__expression] = STATE(1409), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2554), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110593,111 +110831,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [756] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym__expression] = STATE(2388), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(1120), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(775), + [anon_sym_spawn] = ACTIONS(777), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(795), + [anon_sym_lock] = ACTIONS(797), + [anon_sym_rlock] = ACTIONS(797), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110707,111 +110945,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [757] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym__expression] = STATE(2574), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110821,111 +111059,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [758] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym__expression] = STATE(1410), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1411), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4351), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4355), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110935,89 +111173,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [759] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym__expression] = STATE(1127), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), + [sym__expression] = STATE(1411), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [760] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -111031,14 +111383,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -111046,228 +111398,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [760] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), - [sym__expression] = STATE(1410), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4334), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [761] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111277,111 +111515,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [762] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(3037), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(3038), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(3034), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(3044), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111391,111 +111629,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [763] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111506,88 +111744,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -111601,14 +111839,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -111619,89 +111857,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [765] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), + [sym__expression] = STATE(2875), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [766] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [sym__expression] = STATE(1120), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4326), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -111715,14 +112067,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -111730,228 +112082,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [766] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [sym__expression] = STATE(2876), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [767] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), [sym__expression] = STATE(2577), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111961,111 +112199,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [768] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym__expression] = STATE(1414), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1416), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112075,111 +112313,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [769] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [sym__expression] = STATE(1415), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1410), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112189,111 +112427,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [770] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym__expression] = STATE(2919), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2990), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2993), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2925), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2998), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2983), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112303,111 +112541,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [771] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym__expression] = STATE(2897), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2901), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112417,111 +112655,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [772] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym__expression] = STATE(1129), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(775), - [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(795), - [anon_sym_lock] = ACTIONS(797), - [anon_sym_rlock] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112531,111 +112769,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [773] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(992), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112645,111 +112883,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [774] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2615), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112760,110 +112998,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), [sym__expression] = STATE(1417), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112873,111 +113111,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [776] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym__expression] = STATE(2539), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2526), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112987,181 +113225,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [777] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [778] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), - [sym__expression] = STATE(254), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(247), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113212,70 +113336,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [778] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [sym__expression] = STATE(1129), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(771), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(775), + [anon_sym_spawn] = ACTIONS(777), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(795), + [anon_sym_lock] = ACTIONS(797), + [anon_sym_rlock] = ACTIONS(797), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [779] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym__expression] = STATE(251), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(256), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113329,67 +113567,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [780] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym__expression] = STATE(246), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(255), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113444,88 +113682,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -113533,20 +113771,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -113557,67 +113795,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [782] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym__expression] = STATE(248), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(253), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113671,67 +113909,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [783] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym__expression] = STATE(255), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(250), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113785,67 +114023,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [784] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym__expression] = STATE(249), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(1590), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [785] = { + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [sym__expression] = STATE(1584), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [786] = { + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [sym__expression] = STATE(246), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -113896,342 +114362,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [785] = { - [sym_line_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [sym__expression] = STATE(1565), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [786] = { - [sym_line_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [sym__expression] = STATE(1418), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [787] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym__expression] = STATE(2018), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1418), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114241,111 +114479,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [788] = { [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym__expression] = STATE(2903), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2021), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114355,111 +114593,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [789] = { [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym__expression] = STATE(2007), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2904), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114469,111 +114707,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [790] = { [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym__expression] = STATE(2864), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1992), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114583,111 +114821,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [791] = { [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym__expression] = STATE(1990), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114697,111 +114935,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [792] = { [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym__expression] = STATE(1994), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2005), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114811,111 +115049,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [793] = { [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym__expression] = STATE(2002), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1995), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114925,111 +115163,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [794] = { [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym__expression] = STATE(2518), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4258), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(1983), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115039,111 +115277,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [795] = { [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym__expression] = STATE(1416), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1414), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115153,111 +115391,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [796] = { [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115267,111 +115505,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [797] = { [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym__expression] = STATE(2010), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1413), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115381,111 +115619,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [798] = { [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym__expression] = STATE(1585), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(1983), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115495,111 +115733,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [799] = { [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym__expression] = STATE(1413), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1998), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115609,111 +115847,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [800] = { [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym__expression] = STATE(1411), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1412), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115723,111 +115961,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [801] = { [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym__expression] = STATE(2916), - [sym__expression_without_blocks] = STATE(3004), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115837,111 +116075,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [802] = { [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2921), + [sym__expression_without_blocks] = STATE(2988), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115951,111 +116189,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [803] = { [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116065,111 +116303,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [804] = { [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym__expression] = STATE(1570), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(1411), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116179,111 +116417,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [805] = { [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym__expression] = STATE(1590), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1583), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116293,111 +116531,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [806] = { [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym__expression] = STATE(1589), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1581), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116408,110 +116646,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), [sym__expression] = STATE(1552), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116521,111 +116759,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [808] = { [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym__expression] = STATE(1410), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(1579), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_go] = ACTIONS(1587), + [anon_sym_spawn] = ACTIONS(1589), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(1597), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(1607), + [anon_sym_lock] = ACTIONS(1609), + [anon_sym_rlock] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116635,111 +116873,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [809] = { [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym__expression] = STATE(1552), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1586), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116749,111 +116987,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [810] = { [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym__expression] = STATE(1586), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1552), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116863,111 +117101,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [811] = { [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym__expression] = STATE(1583), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1587), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_go] = ACTIONS(1724), - [anon_sym_spawn] = ACTIONS(1726), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_LT_DASH] = ACTIONS(1734), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(1744), - [anon_sym_lock] = ACTIONS(1746), - [anon_sym_rlock] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116977,111 +117215,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [812] = { [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym__expression] = STATE(1421), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym__expression] = STATE(2543), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117091,111 +117329,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [813] = { [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym__expression] = STATE(2546), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1419), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), + [sym_mutability_modifiers] = STATE(949), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117205,111 +117443,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [814] = { [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym__expression] = STATE(2552), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2544), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117319,111 +117557,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [815] = { [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym__expression] = STATE(2541), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2546), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117433,111 +117671,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [816] = { [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym__expression] = STATE(2556), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2547), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117547,111 +117785,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [817] = { [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym__expression] = STATE(2386), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117661,111 +117899,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [818] = { [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2552), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117775,111 +118013,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [819] = { [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym__expression] = STATE(2908), - [sym__expression_without_blocks] = STATE(2941), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression] = STATE(2910), + [sym__expression_without_blocks] = STATE(2936), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117889,111 +118127,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [820] = { [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), + [sym__expression] = STATE(2511), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118004,110 +118242,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), [sym__expression] = STATE(1422), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118117,111 +118355,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [822] = { [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym__expression] = STATE(1587), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1588), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118231,73 +118469,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [823] = { [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1288), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -118308,8 +118546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -118327,14 +118565,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -118345,111 +118583,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [824] = { [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym__expression] = STATE(1588), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1589), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118459,111 +118697,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [825] = { [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym__expression] = STATE(1575), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1571), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118573,67 +118811,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [826] = { [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym__expression] = STATE(1976), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1965), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -118687,67 +118925,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [827] = { [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym__expression] = STATE(1978), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1971), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -118801,67 +119039,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [828] = { [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym__expression] = STATE(1967), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1975), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -118915,111 +119153,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [829] = { [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym__expression] = STATE(1969), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3730), + [sym__expression] = STATE(1142), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_fn] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_struct] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_go] = ACTIONS(1065), - [anon_sym_spawn] = ACTIONS(1067), - [anon_sym_json_DOTdecode] = ACTIONS(1069), - [anon_sym_LBRACK2] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_LT_DASH] = ACTIONS(1075), - [sym_none] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_nil] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(3736), - [anon_sym_DOLLARif] = ACTIONS(3738), - [anon_sym_match] = ACTIONS(3740), - [anon_sym_select] = ACTIONS(3742), - [anon_sym_lock] = ACTIONS(3744), - [anon_sym_rlock] = ACTIONS(3744), - [anon_sym_unsafe] = ACTIONS(3746), - [anon_sym_sql] = ACTIONS(3748), - [sym_int_literal] = ACTIONS(1077), - [sym_float_literal] = ACTIONS(1095), - [sym_rune_literal] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1099), - [anon_sym_c_SQUOTE] = ACTIONS(1101), - [anon_sym_c_DQUOTE] = ACTIONS(1103), - [anon_sym_r_SQUOTE] = ACTIONS(1105), - [anon_sym_r_DQUOTE] = ACTIONS(1107), - [sym_pseudo_compile_time_identifier] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), + [sym_none] = ACTIONS(787), + [sym_true] = ACTIONS(787), + [sym_false] = ACTIONS(787), + [sym_nil] = ACTIONS(787), + [anon_sym_if] = ACTIONS(789), + [anon_sym_DOLLARif] = ACTIONS(791), + [anon_sym_match] = ACTIONS(793), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), + [anon_sym_unsafe] = ACTIONS(799), + [anon_sym_sql] = ACTIONS(801), + [sym_int_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119029,89 +119267,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [830] = { [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1131), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -119119,20 +119357,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -119143,89 +119381,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [831] = { [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1143), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -119233,20 +119471,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -119258,88 +119496,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), [sym__expression] = STATE(1145), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -119347,20 +119585,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -119371,89 +119609,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [833] = { [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -119461,20 +119699,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -119485,89 +119723,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [834] = { [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_go] = ACTIONS(3674), + [anon_sym_spawn] = ACTIONS(3676), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LT_DASH] = ACTIONS(3680), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -119575,20 +119813,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(789), [anon_sym_DOLLARif] = ACTIONS(791), [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3682), + [anon_sym_lock] = ACTIONS(3684), + [anon_sym_rlock] = ACTIONS(3684), [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -119599,111 +119837,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [835] = { [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(755), + [sym__expression] = STATE(1987), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_STAR] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_struct] = ACTIONS(3734), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_go] = ACTIONS(3544), - [anon_sym_spawn] = ACTIONS(3546), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3538), - [anon_sym_AMP] = ACTIONS(3548), - [anon_sym_LT_DASH] = ACTIONS(3550), - [sym_none] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_nil] = ACTIONS(787), - [anon_sym_if] = ACTIONS(789), - [anon_sym_DOLLARif] = ACTIONS(791), - [anon_sym_match] = ACTIONS(793), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3554), - [anon_sym_rlock] = ACTIONS(3554), - [anon_sym_unsafe] = ACTIONS(799), - [anon_sym_sql] = ACTIONS(801), - [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_go] = ACTIONS(1065), + [anon_sym_spawn] = ACTIONS(1067), + [anon_sym_json_DOTdecode] = ACTIONS(1069), + [anon_sym_LBRACK2] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_LT_DASH] = ACTIONS(1075), + [sym_none] = ACTIONS(1077), + [sym_true] = ACTIONS(1077), + [sym_false] = ACTIONS(1077), + [sym_nil] = ACTIONS(1077), + [anon_sym_if] = ACTIONS(3736), + [anon_sym_DOLLARif] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3740), + [anon_sym_select] = ACTIONS(3742), + [anon_sym_lock] = ACTIONS(3744), + [anon_sym_rlock] = ACTIONS(3744), + [anon_sym_unsafe] = ACTIONS(3746), + [anon_sym_sql] = ACTIONS(3748), + [sym_int_literal] = ACTIONS(1077), + [sym_float_literal] = ACTIONS(1095), + [sym_rune_literal] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1099), + [anon_sym_c_SQUOTE] = ACTIONS(1101), + [anon_sym_c_DQUOTE] = ACTIONS(1103), + [anon_sym_r_SQUOTE] = ACTIONS(1105), + [anon_sym_r_DQUOTE] = ACTIONS(1107), + [sym_pseudo_compile_time_identifier] = ACTIONS(1109), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119713,67 +119951,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [836] = { [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym__expression] = STATE(1970), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1986), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -119827,67 +120065,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [837] = { [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym__expression] = STATE(1972), - [sym__expression_without_blocks] = STATE(2043), - [sym__expression_with_blocks] = STATE(2043), - [sym_inc_expression] = STATE(2026), - [sym_dec_expression] = STATE(2026), - [sym_or_block_expression] = STATE(2026), - [sym_option_propagation_expression] = STATE(2026), - [sym_result_propagation_expression] = STATE(2026), - [sym_anon_struct_value_expression] = STATE(2060), - [sym_go_expression] = STATE(2026), - [sym_spawn_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_type_initializer] = STATE(2060), - [sym_function_literal] = STATE(2026), - [sym_reference_expression] = STATE(2141), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2026), - [sym_receive_expression] = STATE(2026), - [sym_binary_expression] = STATE(2026), - [sym_as_type_cast_expression] = STATE(2026), - [sym__max_group] = STATE(2026), - [sym_literal] = STATE(2063), - [sym_map_init_expression] = STATE(2060), - [sym_array_creation] = STATE(2026), - [sym_fixed_array_creation] = STATE(2026), - [sym_selector_expression] = STATE(2026), - [sym_index_expression] = STATE(2026), - [sym_slice_expression] = STATE(2026), - [sym_if_expression] = STATE(2060), - [sym_compile_time_if_expression] = STATE(2060), - [sym_is_expression] = STATE(2026), - [sym_in_expression] = STATE(2026), - [sym_enum_fetch] = STATE(2026), - [sym_match_expression] = STATE(2060), - [sym_select_expression] = STATE(2060), - [sym_lock_expression] = STATE(2060), - [sym_unsafe_expression] = STATE(2060), - [sym_sql_expression] = STATE(2060), - [sym_interpreted_string_literal] = STATE(2062), - [sym_c_string_literal] = STATE(2062), - [sym_raw_string_literal] = STATE(2062), - [sym_mutability_modifiers] = STATE(963), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1984), + [sym__expression_without_blocks] = STATE(2082), + [sym__expression_with_blocks] = STATE(2082), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2161), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2161), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2028), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2069), + [sym_map_init_expression] = STATE(2161), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2161), + [sym_compile_time_if_expression] = STATE(2161), + [sym_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2161), + [sym_select_expression] = STATE(2161), + [sym_lock_expression] = STATE(2161), + [sym_unsafe_expression] = STATE(2161), + [sym_sql_expression] = STATE(2161), + [sym_interpreted_string_literal] = STATE(2064), + [sym_c_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_mutability_modifiers] = STATE(964), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3730), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -119941,111 +120179,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [838] = { [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym__expression] = STATE(2540), + [sym__expression] = STATE(2522), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120055,187 +120293,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [839] = { [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym__expression] = STATE(2528), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [840] = { - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1284), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -120246,8 +120370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -120265,14 +120389,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -120280,190 +120404,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [841] = { - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(883), + [840] = { + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_STAR] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_go] = ACTIONS(3692), - [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(3698), - [sym_none] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_nil] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_DOLLARif] = ACTIONS(917), - [anon_sym_match] = ACTIONS(919), - [anon_sym_select] = ACTIONS(3700), - [anon_sym_lock] = ACTIONS(3702), - [anon_sym_rlock] = ACTIONS(3702), - [anon_sym_unsafe] = ACTIONS(925), - [anon_sym_sql] = ACTIONS(927), - [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), - [sym_pseudo_compile_time_identifier] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [842] = { - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [841] = { + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [sym__expression] = STATE(1277), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -120474,8 +120598,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -120493,14 +120617,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(941), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [842] = { + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(948), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_go] = ACTIONS(3692), + [anon_sym_spawn] = ACTIONS(3694), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_DASH] = ACTIONS(3698), + [sym_none] = ACTIONS(913), + [sym_true] = ACTIONS(913), + [sym_false] = ACTIONS(913), + [sym_nil] = ACTIONS(913), + [anon_sym_if] = ACTIONS(915), + [anon_sym_DOLLARif] = ACTIONS(917), + [anon_sym_match] = ACTIONS(919), + [anon_sym_select] = ACTIONS(3700), + [anon_sym_lock] = ACTIONS(3702), + [anon_sym_rlock] = ACTIONS(3702), + [anon_sym_unsafe] = ACTIONS(925), + [anon_sym_sql] = ACTIONS(927), + [sym_int_literal] = ACTIONS(913), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -120511,73 +120749,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [843] = { [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1283), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -120588,8 +120826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -120607,14 +120845,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -120625,73 +120863,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [844] = { [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1287), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -120702,8 +120940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -120721,14 +120959,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -120739,73 +120977,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [845] = { [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -120816,8 +121054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -120835,14 +121073,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -120853,111 +121091,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [846] = { [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym__expression] = STATE(1424), - [sym__expression_without_blocks] = STATE(1455), - [sym__expression_with_blocks] = STATE(1455), - [sym_inc_expression] = STATE(1456), - [sym_dec_expression] = STATE(1456), - [sym_or_block_expression] = STATE(1456), - [sym_option_propagation_expression] = STATE(1456), - [sym_result_propagation_expression] = STATE(1456), - [sym_anon_struct_value_expression] = STATE(1457), - [sym_go_expression] = STATE(1456), - [sym_spawn_expression] = STATE(1456), - [sym_parenthesized_expression] = STATE(1456), - [sym_call_expression] = STATE(1456), - [sym_type_initializer] = STATE(1457), - [sym_function_literal] = STATE(1456), - [sym_reference_expression] = STATE(1540), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1456), - [sym_receive_expression] = STATE(1456), - [sym_binary_expression] = STATE(1456), - [sym_as_type_cast_expression] = STATE(1456), - [sym__max_group] = STATE(1456), - [sym_literal] = STATE(1450), - [sym_map_init_expression] = STATE(1457), - [sym_array_creation] = STATE(1456), - [sym_fixed_array_creation] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym_index_expression] = STATE(1456), - [sym_slice_expression] = STATE(1456), - [sym_if_expression] = STATE(1457), - [sym_compile_time_if_expression] = STATE(1457), - [sym_is_expression] = STATE(1456), - [sym_in_expression] = STATE(1456), - [sym_enum_fetch] = STATE(1456), - [sym_match_expression] = STATE(1457), - [sym_select_expression] = STATE(1457), - [sym_lock_expression] = STATE(1457), - [sym_unsafe_expression] = STATE(1457), - [sym_sql_expression] = STATE(1457), - [sym_interpreted_string_literal] = STATE(1449), - [sym_c_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), + [sym__expression] = STATE(1420), + [sym__expression_without_blocks] = STATE(1493), + [sym__expression_with_blocks] = STATE(1493), + [sym_inc_expression] = STATE(1494), + [sym_dec_expression] = STATE(1494), + [sym_or_block_expression] = STATE(1494), + [sym_option_propagation_expression] = STATE(1494), + [sym_result_propagation_expression] = STATE(1494), + [sym_anon_struct_value_expression] = STATE(1496), + [sym_go_expression] = STATE(1494), + [sym_spawn_expression] = STATE(1494), + [sym_parenthesized_expression] = STATE(1494), + [sym_call_expression] = STATE(1494), + [sym_type_initializer] = STATE(1496), + [sym_function_literal] = STATE(1494), + [sym_reference_expression] = STATE(1527), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1494), + [sym_receive_expression] = STATE(1494), + [sym_binary_expression] = STATE(1494), + [sym_as_type_cast_expression] = STATE(1494), + [sym__max_group] = STATE(1494), + [sym_literal] = STATE(1492), + [sym_map_init_expression] = STATE(1496), + [sym_array_creation] = STATE(1494), + [sym_fixed_array_creation] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym_index_expression] = STATE(1494), + [sym_slice_expression] = STATE(1494), + [sym_if_expression] = STATE(1496), + [sym_compile_time_if_expression] = STATE(1496), + [sym_is_expression] = STATE(1494), + [sym_in_expression] = STATE(1494), + [sym_enum_fetch] = STATE(1494), + [sym_match_expression] = STATE(1496), + [sym_select_expression] = STATE(1496), + [sym_lock_expression] = STATE(1496), + [sym_unsafe_expression] = STATE(1496), + [sym_sql_expression] = STATE(1496), + [sym_interpreted_string_literal] = STATE(1475), + [sym_c_string_literal] = STATE(1475), + [sym_raw_string_literal] = STATE(1475), [sym_mutability_modifiers] = STATE(949), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1415), + [sym_plain_type] = STATE(4319), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1297), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(963), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_go] = ACTIONS(1001), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1005), - [anon_sym_LBRACK2] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_LT_DASH] = ACTIONS(1011), - [sym_none] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_nil] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_DOLLARif] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1019), - [anon_sym_select] = ACTIONS(1021), - [anon_sym_lock] = ACTIONS(1023), - [anon_sym_rlock] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_sql] = ACTIONS(1027), - [sym_int_literal] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1029), - [sym_rune_literal] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_c_SQUOTE] = ACTIONS(1035), - [anon_sym_c_DQUOTE] = ACTIONS(1037), - [anon_sym_r_SQUOTE] = ACTIONS(1039), - [anon_sym_r_DQUOTE] = ACTIONS(1041), - [sym_pseudo_compile_time_identifier] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_go] = ACTIONS(971), + [anon_sym_spawn] = ACTIONS(973), + [anon_sym_json_DOTdecode] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LT_DASH] = ACTIONS(981), + [sym_none] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_nil] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_DOLLARif] = ACTIONS(987), + [anon_sym_match] = ACTIONS(989), + [anon_sym_select] = ACTIONS(991), + [anon_sym_lock] = ACTIONS(993), + [anon_sym_rlock] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_sql] = ACTIONS(997), + [sym_int_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(999), + [sym_rune_literal] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_c_SQUOTE] = ACTIONS(1005), + [anon_sym_c_DQUOTE] = ACTIONS(1007), + [anon_sym_r_SQUOTE] = ACTIONS(1009), + [anon_sym_r_DQUOTE] = ACTIONS(1011), + [sym_pseudo_compile_time_identifier] = ACTIONS(1013), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120967,111 +121205,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [847] = { [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym__expression] = STATE(2533), + [sym__expression] = STATE(2527), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121081,111 +121319,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [848] = { [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym__expression] = STATE(2532), + [sym__expression] = STATE(2515), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121195,111 +121433,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [849] = { [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121309,111 +121547,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [850] = { [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121423,111 +121661,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [851] = { [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym__expression] = STATE(2510), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2514), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121537,111 +121775,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [852] = { [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym__expression] = STATE(2505), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2506), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121651,73 +121889,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [853] = { [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [854] = { + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(3686), [anon_sym_DASH] = ACTIONS(3686), @@ -121728,8 +122080,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(3690), [anon_sym_go] = ACTIONS(3692), [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), [anon_sym_TILDE] = ACTIONS(3686), [anon_sym_CARET] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(3696), @@ -121747,14 +122099,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -121762,228 +122114,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [854] = { - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [855] = { [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [sym__expression] = STATE(2236), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121993,111 +122231,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [856] = { [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [sym__expression] = STATE(2259), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2234), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122107,111 +122345,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [857] = { [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [sym__expression] = STATE(2338), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2325), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122221,111 +122459,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [858] = { [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122335,111 +122573,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [859] = { [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122449,111 +122687,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [860] = { [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122564,110 +122802,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), [sym__expression] = STATE(2339), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122677,111 +122915,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [862] = { [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [sym__expression] = STATE(2362), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3710), - [anon_sym_spawn] = ACTIONS(3712), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_DASH] = ACTIONS(3716), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3718), - [anon_sym_lock] = ACTIONS(3720), - [anon_sym_rlock] = ACTIONS(3720), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_go] = ACTIONS(3716), + [anon_sym_spawn] = ACTIONS(3718), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_CARET] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_DASH] = ACTIONS(3722), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3726), + [anon_sym_rlock] = ACTIONS(3726), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122791,111 +123029,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [863] = { [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [sym__expression] = STATE(2575), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2566), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122905,111 +123143,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [864] = { [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [sym__expression] = STATE(2372), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(2863), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123019,111 +123257,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [865] = { [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [sym__expression] = STATE(2542), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2567), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123133,111 +123371,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [866] = { [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [sym__expression] = STATE(2571), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2568), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123247,111 +123485,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [867] = { [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [sym__expression] = STATE(2570), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2573), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123361,111 +123599,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [868] = { [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [sym__expression] = STATE(2567), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2576), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123476,110 +123714,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_go] = ACTIONS(2677), - [anon_sym_spawn] = ACTIONS(2679), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2687), - [anon_sym_lock] = ACTIONS(2689), - [anon_sym_rlock] = ACTIONS(2689), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2691), + [anon_sym_lock] = ACTIONS(2693), + [anon_sym_rlock] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123589,89 +123827,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [870] = { [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [sym__expression] = STATE(1277), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -123685,14 +123923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -123703,111 +123941,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [871] = { [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [sym__expression] = STATE(2860), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123817,111 +124055,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [872] = { [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [sym__expression] = STATE(2386), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123931,111 +124169,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [873] = { [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124045,67 +124283,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [874] = { [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(987), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -124159,111 +124397,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [875] = { [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [sym__expression] = STATE(2866), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124273,111 +124511,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [876] = { [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2866), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124387,111 +124625,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [877] = { [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [sym__expression] = STATE(2916), - [sym__expression_without_blocks] = STATE(3019), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124501,111 +124739,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [878] = { [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2921), + [sym__expression_without_blocks] = STATE(3033), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124615,111 +124853,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [879] = { [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4227), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2870), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124729,111 +124967,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [880] = { [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4222), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124843,181 +125081,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [881] = { [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [882] = { - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -125068,114 +125192,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [882] = { + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [sym__expression] = STATE(2922), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [883] = { [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [sym__expression] = STATE(2907), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125185,111 +125423,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [884] = { [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [sym__expression] = STATE(1979), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(950), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2125), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_DASH] = ACTIONS(2131), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2135), + [anon_sym_rlock] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125299,111 +125537,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [885] = { [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [sym__expression] = STATE(2578), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(950), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2381), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_go] = ACTIONS(2109), - [anon_sym_spawn] = ACTIONS(2111), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2117), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(2121), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125413,111 +125651,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [886] = { [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [sym__expression] = STATE(2236), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2234), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125527,111 +125765,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [887] = { [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [sym__expression] = STATE(1977), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1972), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125641,111 +125879,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [888] = { [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [sym__expression] = STATE(2374), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125755,111 +125993,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [889] = { [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125869,111 +126107,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [890] = { [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4386), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(2370), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125983,67 +126221,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [891] = { [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(985), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -126097,111 +126335,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [892] = { [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4218), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym__expression] = STATE(1973), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126211,111 +126449,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [893] = { [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4167), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126325,139 +126563,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [894] = { [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [sym__expression] = STATE(1968), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [895] = { - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [aux_sym_strictly_expression_list_repeat1] = STATE(3390), - [sym_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_CR] = ACTIONS(1997), - [anon_sym_CR_LF] = ACTIONS(1997), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [aux_sym_strictly_expression_list_repeat1] = STATE(3389), + [sym_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2037), + [anon_sym_CR] = ACTIONS(2037), + [anon_sym_CR_LF] = ACTIONS(2037), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(2037), [anon_sym_DOT] = ACTIONS(3750), [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(2037), [anon_sym_COMMA] = ACTIONS(3754), - [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(2037), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2037), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -126470,19 +126594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), [anon_sym_COLON] = ACTIONS(3766), [anon_sym_PLUS_PLUS] = ACTIONS(3768), [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(1997), - [anon_sym_spawn] = ACTIONS(1997), - [anon_sym_json_DOTdecode] = ACTIONS(1997), + [anon_sym_go] = ACTIONS(2037), + [anon_sym_spawn] = ACTIONS(2037), + [anon_sym_json_DOTdecode] = ACTIONS(2037), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(2037), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), [anon_sym_LT_DASH] = ACTIONS(3778), @@ -126493,171 +126617,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3782), [anon_sym_PIPE_PIPE] = ACTIONS(3784), [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(1997), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [sym_nil] = ACTIONS(1997), + [sym_none] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_nil] = ACTIONS(2037), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_DOLLARif] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_DOLLARif] = ACTIONS(2037), [anon_sym_is] = ACTIONS(3788), [anon_sym_BANGis] = ACTIONS(3788), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(2007), - [anon_sym_SLASH_EQ] = ACTIONS(2007), - [anon_sym_PERCENT_EQ] = ACTIONS(2007), - [anon_sym_LT_LT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_AMP_EQ] = ACTIONS(2007), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2007), - [anon_sym_PLUS_EQ] = ACTIONS(2007), - [anon_sym_DASH_EQ] = ACTIONS(2007), - [anon_sym_PIPE_EQ] = ACTIONS(2007), - [anon_sym_CARET_EQ] = ACTIONS(2007), - [anon_sym_COLON_EQ] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(1997), - [anon_sym_rlock] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_sql] = ACTIONS(1997), - [sym_int_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_rune_literal] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [anon_sym_c_SQUOTE] = ACTIONS(1997), - [anon_sym_c_DQUOTE] = ACTIONS(1997), - [anon_sym_r_SQUOTE] = ACTIONS(1997), - [anon_sym_r_DQUOTE] = ACTIONS(1997), - [sym_pseudo_compile_time_identifier] = ACTIONS(1997), - [anon_sym_shared] = ACTIONS(1997), - [anon_sym_map_LBRACK] = ACTIONS(1997), - [anon_sym_chan] = ACTIONS(1997), - [anon_sym_thread] = ACTIONS(1997), - [anon_sym_atomic] = ACTIONS(1997), - [anon_sym_assert] = ACTIONS(1997), - [anon_sym_defer] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_DOLLARfor] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_select] = ACTIONS(2037), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_COLON_EQ] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2037), + [anon_sym_rlock] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_sql] = ACTIONS(2037), + [sym_int_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + [sym_rune_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_c_SQUOTE] = ACTIONS(2037), + [anon_sym_c_DQUOTE] = ACTIONS(2037), + [anon_sym_r_SQUOTE] = ACTIONS(2037), + [anon_sym_r_DQUOTE] = ACTIONS(2037), + [sym_pseudo_compile_time_identifier] = ACTIONS(2037), + [anon_sym_shared] = ACTIONS(2037), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2037), + [anon_sym_thread] = ACTIONS(2037), + [anon_sym_atomic] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_defer] = ACTIONS(2037), + [anon_sym_goto] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_DOLLARfor] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_asm] = ACTIONS(2037), + }, + [895] = { + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_mutability_modifiers] = STATE(939), + [sym_plain_type] = STATE(4401), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [896] = { [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1569), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4394), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126667,111 +126905,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [897] = { [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [sym__expression] = STATE(1562), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1567), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126781,111 +127019,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [898] = { [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [sym__expression] = STATE(1569), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1553), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4404), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126895,111 +127133,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [899] = { [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [sym__expression] = STATE(1551), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), + [sym__expression] = STATE(1555), + [sym__expression_without_blocks] = STATE(1654), + [sym__expression_with_blocks] = STATE(1654), + [sym_inc_expression] = STATE(1656), + [sym_dec_expression] = STATE(1656), + [sym_or_block_expression] = STATE(1656), + [sym_option_propagation_expression] = STATE(1656), + [sym_result_propagation_expression] = STATE(1656), + [sym_anon_struct_value_expression] = STATE(1659), + [sym_go_expression] = STATE(1656), + [sym_spawn_expression] = STATE(1656), + [sym_parenthesized_expression] = STATE(1656), + [sym_call_expression] = STATE(1656), + [sym_type_initializer] = STATE(1659), + [sym_function_literal] = STATE(1656), + [sym_reference_expression] = STATE(1607), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1656), + [sym_receive_expression] = STATE(1656), + [sym_binary_expression] = STATE(1656), + [sym_as_type_cast_expression] = STATE(1656), + [sym__max_group] = STATE(1656), + [sym_literal] = STATE(1642), + [sym_map_init_expression] = STATE(1659), + [sym_array_creation] = STATE(1656), + [sym_fixed_array_creation] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym_index_expression] = STATE(1656), + [sym_slice_expression] = STATE(1656), + [sym_if_expression] = STATE(1659), + [sym_compile_time_if_expression] = STATE(1659), + [sym_is_expression] = STATE(1656), + [sym_in_expression] = STATE(1656), + [sym_enum_fetch] = STATE(1656), + [sym_match_expression] = STATE(1659), + [sym_select_expression] = STATE(1659), + [sym_lock_expression] = STATE(1659), + [sym_unsafe_expression] = STATE(1659), + [sym_sql_expression] = STATE(1659), + [sym_interpreted_string_literal] = STATE(1564), + [sym_c_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1567), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(1583), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(1591), + [anon_sym_LBRACK2] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_nil] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_DOLLARif] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_sql] = ACTIONS(1613), + [sym_int_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1617), + [sym_rune_literal] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_c_SQUOTE] = ACTIONS(1623), + [anon_sym_c_DQUOTE] = ACTIONS(1625), + [anon_sym_r_SQUOTE] = ACTIONS(1627), + [anon_sym_r_DQUOTE] = ACTIONS(1629), + [sym_pseudo_compile_time_identifier] = ACTIONS(1631), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127009,111 +127247,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [900] = { [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [sym__expression] = STATE(1555), - [sym__expression_without_blocks] = STATE(1644), - [sym__expression_with_blocks] = STATE(1644), - [sym_inc_expression] = STATE(1651), - [sym_dec_expression] = STATE(1651), - [sym_or_block_expression] = STATE(1651), - [sym_option_propagation_expression] = STATE(1651), - [sym_result_propagation_expression] = STATE(1651), - [sym_anon_struct_value_expression] = STATE(1654), - [sym_go_expression] = STATE(1651), - [sym_spawn_expression] = STATE(1651), - [sym_parenthesized_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_type_initializer] = STATE(1654), - [sym_function_literal] = STATE(1651), - [sym_reference_expression] = STATE(1610), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1651), - [sym_receive_expression] = STATE(1651), - [sym_binary_expression] = STATE(1651), - [sym_as_type_cast_expression] = STATE(1651), - [sym__max_group] = STATE(1651), - [sym_literal] = STATE(1633), - [sym_map_init_expression] = STATE(1654), - [sym_array_creation] = STATE(1651), - [sym_fixed_array_creation] = STATE(1651), - [sym_selector_expression] = STATE(1651), - [sym_index_expression] = STATE(1651), - [sym_slice_expression] = STATE(1651), - [sym_if_expression] = STATE(1654), - [sym_compile_time_if_expression] = STATE(1654), - [sym_is_expression] = STATE(1651), - [sym_in_expression] = STATE(1651), - [sym_enum_fetch] = STATE(1651), - [sym_match_expression] = STATE(1654), - [sym_select_expression] = STATE(1654), - [sym_lock_expression] = STATE(1654), - [sym_unsafe_expression] = STATE(1654), - [sym_sql_expression] = STATE(1654), - [sym_interpreted_string_literal] = STATE(1563), - [sym_c_string_literal] = STATE(1563), - [sym_raw_string_literal] = STATE(1563), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4303), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1704), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2897), - [anon_sym_json_DOTdecode] = ACTIONS(1728), - [anon_sym_LBRACK2] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2901), - [sym_none] = ACTIONS(1736), - [sym_true] = ACTIONS(1736), - [sym_false] = ACTIONS(1736), - [sym_nil] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_DOLLARif] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2905), - [anon_sym_rlock] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_sql] = ACTIONS(1750), - [sym_int_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1754), - [sym_rune_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_c_SQUOTE] = ACTIONS(1760), - [anon_sym_c_DQUOTE] = ACTIONS(1762), - [anon_sym_r_SQUOTE] = ACTIONS(1764), - [anon_sym_r_DQUOTE] = ACTIONS(1766), - [sym_pseudo_compile_time_identifier] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127123,111 +127361,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [901] = { [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(1967), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127237,67 +127475,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [902] = { [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [sym__expression] = STATE(997), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(994), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -127351,111 +127589,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [903] = { [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), + [sym__expression] = STATE(2801), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127465,67 +127703,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [904] = { [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -127579,111 +127817,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [905] = { [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3666), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127694,88 +127932,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -127789,14 +128027,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -127807,89 +128045,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [907] = { [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4132), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4133), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -127903,14 +128141,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -127921,89 +128159,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [908] = { [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1272), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -128017,14 +128255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -128035,89 +128273,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [909] = { [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [sym__expression] = STATE(1269), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1265), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -128131,14 +128369,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -128149,89 +128387,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [910] = { [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4137), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -128245,14 +128483,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -128263,111 +128501,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [911] = { [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), + [sym_mutability_modifiers] = STATE(948), + [sym_plain_type] = STATE(4103), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_go] = ACTIONS(901), + [anon_sym_spawn] = ACTIONS(903), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), + [sym_none] = ACTIONS(913), + [sym_true] = ACTIONS(913), + [sym_false] = ACTIONS(913), + [sym_nil] = ACTIONS(913), + [anon_sym_if] = ACTIONS(915), + [anon_sym_DOLLARif] = ACTIONS(917), + [anon_sym_match] = ACTIONS(919), + [anon_sym_select] = ACTIONS(921), + [anon_sym_lock] = ACTIONS(923), + [anon_sym_rlock] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(925), + [anon_sym_sql] = ACTIONS(927), + [sym_int_literal] = ACTIONS(913), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128377,111 +128615,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [912] = { [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [sym__expression] = STATE(2800), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2806), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128491,111 +128729,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [913] = { [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128605,111 +128843,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [914] = { [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [sym__expression] = STATE(2889), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128719,111 +128957,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [915] = { [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [sym__expression] = STATE(2386), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128834,110 +129072,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), [sym__expression] = STATE(2890), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2669), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2673), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128947,111 +129185,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [917] = { [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3682), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3683), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129061,89 +129299,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [918] = { [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), + [sym__expression] = STATE(997), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [919] = { + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1314), + [sym__expression_with_blocks] = STATE(1314), + [sym_inc_expression] = STATE(1317), + [sym_dec_expression] = STATE(1317), + [sym_or_block_expression] = STATE(1317), + [sym_option_propagation_expression] = STATE(1317), + [sym_result_propagation_expression] = STATE(1317), + [sym_anon_struct_value_expression] = STATE(1319), + [sym_go_expression] = STATE(1317), + [sym_spawn_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_type_initializer] = STATE(1319), + [sym_function_literal] = STATE(1317), + [sym_reference_expression] = STATE(1363), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1317), + [sym_receive_expression] = STATE(1317), + [sym_binary_expression] = STATE(1317), + [sym_as_type_cast_expression] = STATE(1317), + [sym__max_group] = STATE(1317), + [sym_literal] = STATE(1313), + [sym_map_init_expression] = STATE(1319), + [sym_array_creation] = STATE(1317), + [sym_fixed_array_creation] = STATE(1317), + [sym_selector_expression] = STATE(1317), + [sym_index_expression] = STATE(1317), + [sym_slice_expression] = STATE(1317), + [sym_if_expression] = STATE(1319), + [sym_compile_time_if_expression] = STATE(1319), + [sym_is_expression] = STATE(1317), + [sym_in_expression] = STATE(1317), + [sym_enum_fetch] = STATE(1317), + [sym_match_expression] = STATE(1319), + [sym_select_expression] = STATE(1319), + [sym_lock_expression] = STATE(1319), + [sym_unsafe_expression] = STATE(1319), + [sym_sql_expression] = STATE(1319), + [sym_interpreted_string_literal] = STATE(1311), + [sym_c_string_literal] = STATE(1311), + [sym_raw_string_literal] = STATE(1311), [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4104), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4097), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3210), [anon_sym_struct] = ACTIONS(897), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3212), [anon_sym_go] = ACTIONS(901), [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3220), [sym_none] = ACTIONS(913), [sym_true] = ACTIONS(913), [sym_false] = ACTIONS(913), @@ -129157,14 +129509,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(925), [anon_sym_sql] = ACTIONS(927), [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_c_SQUOTE] = ACTIONS(3228), + [anon_sym_c_DQUOTE] = ACTIONS(3230), + [anon_sym_r_SQUOTE] = ACTIONS(3232), + [anon_sym_r_DQUOTE] = ACTIONS(3234), [sym_pseudo_compile_time_identifier] = ACTIONS(941), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -129172,228 +129524,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [919] = { - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [sym__expression] = STATE(2894), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [920] = { [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [sym__expression] = STATE(2892), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2898), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129403,111 +129641,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [921] = { [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2896), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129517,111 +129755,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [922] = { [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1395), - [sym__expression_with_blocks] = STATE(1395), - [sym_inc_expression] = STATE(1394), - [sym_dec_expression] = STATE(1394), - [sym_or_block_expression] = STATE(1394), - [sym_option_propagation_expression] = STATE(1394), - [sym_result_propagation_expression] = STATE(1394), - [sym_anon_struct_value_expression] = STATE(1379), - [sym_go_expression] = STATE(1394), - [sym_spawn_expression] = STATE(1394), - [sym_parenthesized_expression] = STATE(1394), - [sym_call_expression] = STATE(1394), - [sym_type_initializer] = STATE(1379), - [sym_function_literal] = STATE(1394), - [sym_reference_expression] = STATE(1339), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1394), - [sym_receive_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_as_type_cast_expression] = STATE(1394), - [sym__max_group] = STATE(1394), - [sym_literal] = STATE(1398), - [sym_map_init_expression] = STATE(1379), - [sym_array_creation] = STATE(1394), - [sym_fixed_array_creation] = STATE(1394), - [sym_selector_expression] = STATE(1394), - [sym_index_expression] = STATE(1394), - [sym_slice_expression] = STATE(1394), - [sym_if_expression] = STATE(1379), - [sym_compile_time_if_expression] = STATE(1379), - [sym_is_expression] = STATE(1394), - [sym_in_expression] = STATE(1394), - [sym_enum_fetch] = STATE(1394), - [sym_match_expression] = STATE(1379), - [sym_select_expression] = STATE(1379), - [sym_lock_expression] = STATE(1379), - [sym_unsafe_expression] = STATE(1379), - [sym_sql_expression] = STATE(1379), - [sym_interpreted_string_literal] = STATE(1402), - [sym_c_string_literal] = STATE(1402), - [sym_raw_string_literal] = STATE(1402), - [sym_mutability_modifiers] = STATE(948), - [sym_plain_type] = STATE(4098), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(883), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3692), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_struct] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_go] = ACTIONS(901), - [anon_sym_spawn] = ACTIONS(903), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_nil] = ACTIONS(913), - [anon_sym_if] = ACTIONS(915), - [anon_sym_DOLLARif] = ACTIONS(917), - [anon_sym_match] = ACTIONS(919), - [anon_sym_select] = ACTIONS(921), - [anon_sym_lock] = ACTIONS(923), - [anon_sym_rlock] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(925), - [anon_sym_sql] = ACTIONS(927), - [sym_int_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(3228), - [sym_rune_literal] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_c_SQUOTE] = ACTIONS(3234), - [anon_sym_c_DQUOTE] = ACTIONS(3236), - [anon_sym_r_SQUOTE] = ACTIONS(3238), - [anon_sym_r_DQUOTE] = ACTIONS(3240), - [sym_pseudo_compile_time_identifier] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129631,111 +129869,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [923] = { [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [sym__expression] = STATE(2375), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), - [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym__expression] = STATE(985), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4166), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129745,111 +129983,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [924] = { [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [sym__expression] = STATE(2370), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129859,111 +130097,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [925] = { [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129973,111 +130211,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [926] = { [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [sym__expression] = STATE(2377), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2380), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130087,111 +130325,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [927] = { [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [sym__expression] = STATE(2381), - [sym__expression_without_blocks] = STATE(2317), - [sym__expression_with_blocks] = STATE(2317), - [sym_inc_expression] = STATE(2318), - [sym_dec_expression] = STATE(2318), - [sym_or_block_expression] = STATE(2318), - [sym_option_propagation_expression] = STATE(2318), - [sym_result_propagation_expression] = STATE(2318), - [sym_anon_struct_value_expression] = STATE(2320), - [sym_go_expression] = STATE(2318), - [sym_spawn_expression] = STATE(2318), - [sym_parenthesized_expression] = STATE(2318), - [sym_call_expression] = STATE(2318), - [sym_type_initializer] = STATE(2320), - [sym_function_literal] = STATE(2318), - [sym_reference_expression] = STATE(2321), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2318), - [sym_receive_expression] = STATE(2318), - [sym_binary_expression] = STATE(2318), - [sym_as_type_cast_expression] = STATE(2318), - [sym__max_group] = STATE(2318), - [sym_literal] = STATE(2316), - [sym_map_init_expression] = STATE(2320), - [sym_array_creation] = STATE(2318), - [sym_fixed_array_creation] = STATE(2318), - [sym_selector_expression] = STATE(2318), - [sym_index_expression] = STATE(2318), - [sym_slice_expression] = STATE(2318), - [sym_if_expression] = STATE(2320), - [sym_compile_time_if_expression] = STATE(2320), - [sym_is_expression] = STATE(2318), - [sym_in_expression] = STATE(2318), - [sym_enum_fetch] = STATE(2318), - [sym_match_expression] = STATE(2320), - [sym_select_expression] = STATE(2320), - [sym_lock_expression] = STATE(2320), - [sym_unsafe_expression] = STATE(2320), - [sym_sql_expression] = STATE(2320), - [sym_interpreted_string_literal] = STATE(2315), - [sym_c_string_literal] = STATE(2315), - [sym_raw_string_literal] = STATE(2315), + [sym__expression] = STATE(2385), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), [sym_mutability_modifiers] = STATE(955), - [sym_plain_type] = STATE(4277), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3618), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_fn] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3632), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(3636), - [anon_sym_spawn] = ACTIONS(3638), - [anon_sym_json_DOTdecode] = ACTIONS(3640), - [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(3646), - [sym_none] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_nil] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(3652), - [anon_sym_match] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_lock] = ACTIONS(3658), - [anon_sym_rlock] = ACTIONS(3658), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3662), - [sym_int_literal] = ACTIONS(3648), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_c_SQUOTE] = ACTIONS(3670), - [anon_sym_c_DQUOTE] = ACTIONS(3672), - [anon_sym_r_SQUOTE] = ACTIONS(3674), - [anon_sym_r_DQUOTE] = ACTIONS(3676), - [sym_pseudo_compile_time_identifier] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130201,111 +130439,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [928] = { [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), + [sym__expression] = STATE(2387), + [sym__expression_without_blocks] = STATE(2359), + [sym__expression_with_blocks] = STATE(2359), + [sym_inc_expression] = STATE(2369), + [sym_dec_expression] = STATE(2369), + [sym_or_block_expression] = STATE(2369), + [sym_option_propagation_expression] = STATE(2369), + [sym_result_propagation_expression] = STATE(2369), + [sym_anon_struct_value_expression] = STATE(2368), + [sym_go_expression] = STATE(2369), + [sym_spawn_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(2369), + [sym_call_expression] = STATE(2369), + [sym_type_initializer] = STATE(2368), + [sym_function_literal] = STATE(2369), + [sym_reference_expression] = STATE(2367), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2369), + [sym_receive_expression] = STATE(2369), + [sym_binary_expression] = STATE(2369), + [sym_as_type_cast_expression] = STATE(2369), + [sym__max_group] = STATE(2369), + [sym_literal] = STATE(2358), + [sym_map_init_expression] = STATE(2368), + [sym_array_creation] = STATE(2369), + [sym_fixed_array_creation] = STATE(2369), + [sym_selector_expression] = STATE(2369), + [sym_index_expression] = STATE(2369), + [sym_slice_expression] = STATE(2369), + [sym_if_expression] = STATE(2368), + [sym_compile_time_if_expression] = STATE(2368), + [sym_is_expression] = STATE(2369), + [sym_in_expression] = STATE(2369), + [sym_enum_fetch] = STATE(2369), + [sym_match_expression] = STATE(2368), + [sym_select_expression] = STATE(2368), + [sym_lock_expression] = STATE(2368), + [sym_unsafe_expression] = STATE(2368), + [sym_sql_expression] = STATE(2368), + [sym_interpreted_string_literal] = STATE(2276), + [sym_c_string_literal] = STATE(2276), + [sym_raw_string_literal] = STATE(2276), + [sym_mutability_modifiers] = STATE(955), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_fn] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_go] = ACTIONS(3618), + [anon_sym_spawn] = ACTIONS(3620), + [anon_sym_json_DOTdecode] = ACTIONS(3622), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_CARET] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(3628), + [sym_none] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_nil] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_DOLLARif] = ACTIONS(3634), + [anon_sym_match] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_lock] = ACTIONS(3640), + [anon_sym_rlock] = ACTIONS(3640), + [anon_sym_unsafe] = ACTIONS(3642), + [anon_sym_sql] = ACTIONS(3644), + [sym_int_literal] = ACTIONS(3630), + [sym_float_literal] = ACTIONS(3646), + [sym_rune_literal] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_c_SQUOTE] = ACTIONS(3652), + [anon_sym_c_DQUOTE] = ACTIONS(3654), + [anon_sym_r_SQUOTE] = ACTIONS(3656), + [anon_sym_r_DQUOTE] = ACTIONS(3658), + [sym_pseudo_compile_time_identifier] = ACTIONS(3660), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130315,111 +130553,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [929] = { [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [sym__expression] = STATE(2544), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2557), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130429,111 +130667,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [930] = { [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [sym__expression] = STATE(2561), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2574), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130543,111 +130781,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [931] = { [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [sym__expression] = STATE(2523), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2513), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), [anon_sym_PLUS] = ACTIONS(3486), [anon_sym_DASH] = ACTIONS(3486), [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), [anon_sym_BANG] = ACTIONS(3490), [anon_sym_go] = ACTIONS(3492), [anon_sym_spawn] = ACTIONS(3494), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), [anon_sym_TILDE] = ACTIONS(3486), [anon_sym_CARET] = ACTIONS(3486), [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT_DASH] = ACTIONS(3498), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), [anon_sym_select] = ACTIONS(3500), [anon_sym_lock] = ACTIONS(3502), [anon_sym_rlock] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130658,110 +130896,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), [sym__expression] = STATE(2023), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130771,111 +131009,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [933] = { [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3877), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3878), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130885,111 +131123,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [934] = { [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3882), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3883), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131000,66 +131238,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4155), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -131114,66 +131352,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -131227,111 +131465,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [937] = { [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [sym__expression] = STATE(2514), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(3884), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(3885), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131341,111 +131579,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [938] = { [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [sym__expression] = STATE(2017), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2020), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131455,111 +131693,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [939] = { [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [sym__expression] = STATE(2921), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2927), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131569,111 +131807,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [940] = { [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [sym__expression] = STATE(2504), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2534), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131683,111 +131921,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [941] = { [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [sym__expression] = STATE(2004), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1993), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131797,89 +132035,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [942] = { [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [sym__expression] = STATE(1122), - [sym__expression_without_blocks] = STATE(1235), - [sym__expression_with_blocks] = STATE(1235), - [sym_inc_expression] = STATE(1232), - [sym_dec_expression] = STATE(1232), - [sym_or_block_expression] = STATE(1232), - [sym_option_propagation_expression] = STATE(1232), - [sym_result_propagation_expression] = STATE(1232), - [sym_anon_struct_value_expression] = STATE(1228), - [sym_go_expression] = STATE(1232), - [sym_spawn_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_type_initializer] = STATE(1228), - [sym_function_literal] = STATE(1232), - [sym_reference_expression] = STATE(1167), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1232), - [sym_receive_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_as_type_cast_expression] = STATE(1232), - [sym__max_group] = STATE(1232), - [sym_literal] = STATE(1243), - [sym_map_init_expression] = STATE(1228), - [sym_array_creation] = STATE(1232), - [sym_fixed_array_creation] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym_index_expression] = STATE(1232), - [sym_slice_expression] = STATE(1232), - [sym_if_expression] = STATE(1228), - [sym_compile_time_if_expression] = STATE(1228), - [sym_is_expression] = STATE(1232), - [sym_in_expression] = STATE(1232), - [sym_enum_fetch] = STATE(1232), - [sym_match_expression] = STATE(1228), - [sym_select_expression] = STATE(1228), - [sym_lock_expression] = STATE(1228), - [sym_unsafe_expression] = STATE(1228), - [sym_sql_expression] = STATE(1228), - [sym_interpreted_string_literal] = STATE(1245), - [sym_c_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1252), + [sym__expression_with_blocks] = STATE(1252), + [sym_inc_expression] = STATE(1251), + [sym_dec_expression] = STATE(1251), + [sym_or_block_expression] = STATE(1251), + [sym_option_propagation_expression] = STATE(1251), + [sym_result_propagation_expression] = STATE(1251), + [sym_anon_struct_value_expression] = STATE(1250), + [sym_go_expression] = STATE(1251), + [sym_spawn_expression] = STATE(1251), + [sym_parenthesized_expression] = STATE(1251), + [sym_call_expression] = STATE(1251), + [sym_type_initializer] = STATE(1250), + [sym_function_literal] = STATE(1251), + [sym_reference_expression] = STATE(1175), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1251), + [sym_receive_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_as_type_cast_expression] = STATE(1251), + [sym__max_group] = STATE(1251), + [sym_literal] = STATE(1256), + [sym_map_init_expression] = STATE(1250), + [sym_array_creation] = STATE(1251), + [sym_fixed_array_creation] = STATE(1251), + [sym_selector_expression] = STATE(1251), + [sym_index_expression] = STATE(1251), + [sym_slice_expression] = STATE(1251), + [sym_if_expression] = STATE(1250), + [sym_compile_time_if_expression] = STATE(1250), + [sym_is_expression] = STATE(1251), + [sym_in_expression] = STATE(1251), + [sym_enum_fetch] = STATE(1251), + [sym_match_expression] = STATE(1250), + [sym_select_expression] = STATE(1250), + [sym_lock_expression] = STATE(1250), + [sym_unsafe_expression] = STATE(1250), + [sym_sql_expression] = STATE(1250), + [sym_interpreted_string_literal] = STATE(1257), + [sym_c_string_literal] = STATE(1257), + [sym_raw_string_literal] = STATE(1257), [sym_mutability_modifiers] = STATE(943), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), [anon_sym_struct] = ACTIONS(771), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_go] = ACTIONS(775), [anon_sym_spawn] = ACTIONS(777), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2483), + [anon_sym_LBRACK2] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_LT_DASH] = ACTIONS(2489), [sym_none] = ACTIONS(787), [sym_true] = ACTIONS(787), [sym_false] = ACTIONS(787), @@ -131893,14 +132131,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(799), [anon_sym_sql] = ACTIONS(801), [sym_int_literal] = ACTIONS(787), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_c_SQUOTE] = ACTIONS(2499), - [anon_sym_c_DQUOTE] = ACTIONS(2501), - [anon_sym_r_SQUOTE] = ACTIONS(2503), - [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2501), + [anon_sym_r_DQUOTE] = ACTIONS(2503), [sym_pseudo_compile_time_identifier] = ACTIONS(815), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -131911,111 +132149,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [943] = { [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [sym__expression] = STATE(2920), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2928), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132025,111 +132263,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [944] = { [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), - [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), - [sym_interpreted_string_literal] = STATE(1007), - [sym_c_string_literal] = STATE(1007), - [sym_raw_string_literal] = STATE(1007), - [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3534), + [sym__expression] = STATE(2923), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(361), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(367), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_go] = ACTIONS(371), - [anon_sym_spawn] = ACTIONS(373), - [anon_sym_json_DOTdecode] = ACTIONS(447), - [anon_sym_LBRACK2] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_LT_DASH] = ACTIONS(453), - [sym_none] = ACTIONS(383), - [sym_true] = ACTIONS(383), - [sym_false] = ACTIONS(383), - [sym_nil] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_DOLLARif] = ACTIONS(387), - [anon_sym_match] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [anon_sym_lock] = ACTIONS(393), - [anon_sym_rlock] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_sql] = ACTIONS(397), - [sym_int_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(455), - [sym_rune_literal] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_c_SQUOTE] = ACTIONS(461), - [anon_sym_c_DQUOTE] = ACTIONS(463), - [anon_sym_r_SQUOTE] = ACTIONS(465), - [anon_sym_r_DQUOTE] = ACTIONS(467), - [sym_pseudo_compile_time_identifier] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132139,111 +132377,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [945] = { [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [sym__expression] = STATE(2917), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2523), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132253,111 +132491,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [946] = { [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [sym__expression] = STATE(2539), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2526), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132367,111 +132605,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [947] = { [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [sym__expression] = STATE(2915), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2920), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132481,111 +132719,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [948] = { [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [sym__expression] = STATE(2913), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2915), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132595,111 +132833,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [949] = { [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [sym__expression] = STATE(2912), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2914), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132709,111 +132947,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [950] = { [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [sym__expression] = STATE(2906), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2907), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -132823,67 +133061,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [951] = { [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [sym__expression] = STATE(253), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_go] = ACTIONS(3464), + [anon_sym_spawn] = ACTIONS(3466), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_CARET] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_LT_DASH] = ACTIONS(3470), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(3472), + [anon_sym_lock] = ACTIONS(3474), + [anon_sym_rlock] = ACTIONS(3474), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [952] = { + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym__expression] = STATE(252), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -132934,184 +133286,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [952] = { - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(3468), - [anon_sym_spawn] = ACTIONS(3470), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_LT_DASH] = ACTIONS(3474), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(3476), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_rlock] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [953] = { [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [sym__expression] = STATE(245), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(249), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -133165,67 +133403,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [954] = { [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [sym__expression] = STATE(250), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(248), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4244), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -133279,111 +133517,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [955] = { [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [sym__expression] = STATE(2910), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2913), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -133393,67 +133631,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [956] = { [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [sym__expression] = STATE(252), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(251), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -133507,67 +133745,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [957] = { [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [sym__expression] = STATE(247), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(254), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -133621,67 +133859,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [958] = { [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [sym__expression] = STATE(250), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(248), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4235), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -133735,111 +133973,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [959] = { [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [sym__expression] = STATE(2909), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2911), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -133849,111 +134087,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [960] = { [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2536), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -133963,111 +134201,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [961] = { [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [sym__expression] = STATE(2537), + [sym__expression] = STATE(2530), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -134077,111 +134315,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [962] = { [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [sym__expression] = STATE(2536), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), + [sym_reference_expression] = STATE(1027), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), + [sym_interpreted_string_literal] = STATE(1007), + [sym_c_string_literal] = STATE(1007), + [sym_raw_string_literal] = STATE(1007), + [sym_mutability_modifiers] = STATE(947), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(367), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_go] = ACTIONS(371), + [anon_sym_spawn] = ACTIONS(373), + [anon_sym_json_DOTdecode] = ACTIONS(447), + [anon_sym_LBRACK2] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [sym_none] = ACTIONS(383), + [sym_true] = ACTIONS(383), + [sym_false] = ACTIONS(383), + [sym_nil] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_DOLLARif] = ACTIONS(387), + [anon_sym_match] = ACTIONS(389), + [anon_sym_select] = ACTIONS(391), + [anon_sym_lock] = ACTIONS(393), + [anon_sym_rlock] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_sql] = ACTIONS(397), + [sym_int_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(455), + [sym_rune_literal] = ACTIONS(455), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_c_SQUOTE] = ACTIONS(461), + [anon_sym_c_DQUOTE] = ACTIONS(463), + [anon_sym_r_SQUOTE] = ACTIONS(465), + [anon_sym_r_DQUOTE] = ACTIONS(467), + [sym_pseudo_compile_time_identifier] = ACTIONS(411), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -134191,409 +134429,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [963] = { [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [sym__expression] = STATE(2905), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [964] = { - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [sym__expression] = STATE(2914), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(4381), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_go] = ACTIONS(1790), - [anon_sym_spawn] = ACTIONS(1792), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_LT_DASH] = ACTIONS(1800), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [965] = { - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [sym__expression] = STATE(250), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), - [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4212), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3512), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(325), - [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(3516), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [966] = { - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [sym__expression] = STATE(986), - [sym__expression_without_blocks] = STATE(1009), - [sym__expression_with_blocks] = STATE(1009), - [sym_inc_expression] = STATE(1019), - [sym_dec_expression] = STATE(1019), - [sym_or_block_expression] = STATE(1019), - [sym_option_propagation_expression] = STATE(1019), - [sym_result_propagation_expression] = STATE(1019), - [sym_anon_struct_value_expression] = STATE(1023), - [sym_go_expression] = STATE(1019), - [sym_spawn_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_type_initializer] = STATE(1023), - [sym_function_literal] = STATE(1019), + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1018), + [sym__expression_with_blocks] = STATE(1018), + [sym_inc_expression] = STATE(1020), + [sym_dec_expression] = STATE(1020), + [sym_or_block_expression] = STATE(1020), + [sym_option_propagation_expression] = STATE(1020), + [sym_result_propagation_expression] = STATE(1020), + [sym_anon_struct_value_expression] = STATE(1022), + [sym_go_expression] = STATE(1020), + [sym_spawn_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_type_initializer] = STATE(1022), + [sym_function_literal] = STATE(1020), [sym_reference_expression] = STATE(1027), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(1019), - [sym_receive_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_as_type_cast_expression] = STATE(1019), - [sym__max_group] = STATE(1019), - [sym_literal] = STATE(1018), - [sym_map_init_expression] = STATE(1023), - [sym_array_creation] = STATE(1019), - [sym_fixed_array_creation] = STATE(1019), - [sym_selector_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_slice_expression] = STATE(1019), - [sym_if_expression] = STATE(1023), - [sym_compile_time_if_expression] = STATE(1023), - [sym_is_expression] = STATE(1019), - [sym_in_expression] = STATE(1019), - [sym_enum_fetch] = STATE(1019), - [sym_match_expression] = STATE(1023), - [sym_select_expression] = STATE(1023), - [sym_lock_expression] = STATE(1023), - [sym_unsafe_expression] = STATE(1023), - [sym_sql_expression] = STATE(1023), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(1020), + [sym_receive_expression] = STATE(1020), + [sym_binary_expression] = STATE(1020), + [sym_as_type_cast_expression] = STATE(1020), + [sym__max_group] = STATE(1020), + [sym_literal] = STATE(1009), + [sym_map_init_expression] = STATE(1022), + [sym_array_creation] = STATE(1020), + [sym_fixed_array_creation] = STATE(1020), + [sym_selector_expression] = STATE(1020), + [sym_index_expression] = STATE(1020), + [sym_slice_expression] = STATE(1020), + [sym_if_expression] = STATE(1022), + [sym_compile_time_if_expression] = STATE(1022), + [sym_is_expression] = STATE(1020), + [sym_in_expression] = STATE(1020), + [sym_enum_fetch] = STATE(1020), + [sym_match_expression] = STATE(1022), + [sym_select_expression] = STATE(1022), + [sym_lock_expression] = STATE(1022), + [sym_unsafe_expression] = STATE(1022), + [sym_sql_expression] = STATE(1022), [sym_interpreted_string_literal] = STATE(1007), [sym_c_string_literal] = STATE(1007), [sym_raw_string_literal] = STATE(1007), [sym_mutability_modifiers] = STATE(947), - [sym_plain_type] = STATE(4144), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3534), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -134644,114 +134540,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [964] = { + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [sym__expression] = STATE(2906), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [965] = { + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [sym__expression] = STATE(2924), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_go] = ACTIONS(1935), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [966] = { + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [sym__expression] = STATE(2010), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_go] = ACTIONS(1145), + [anon_sym_spawn] = ACTIONS(1147), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_LT_DASH] = ACTIONS(1155), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(1165), + [anon_sym_lock] = ACTIONS(1167), + [anon_sym_rlock] = ACTIONS(1167), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [967] = { [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [sym__expression] = STATE(2512), + [sym__expression] = STATE(2535), [sym__expression_without_blocks] = STATE(2793), [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -134761,111 +134999,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [968] = { [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [sym__expression] = STATE(1996), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1985), + [sym__expression] = STATE(1967), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_go] = ACTIONS(1153), - [anon_sym_spawn] = ACTIONS(1155), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_LT_DASH] = ACTIONS(1163), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(1173), - [anon_sym_lock] = ACTIONS(1175), - [anon_sym_rlock] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -134875,111 +135113,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [969] = { [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [sym__expression] = STATE(2535), - [sym__expression_without_blocks] = STATE(2793), - [sym__expression_with_blocks] = STATE(2793), - [sym_inc_expression] = STATE(2885), - [sym_dec_expression] = STATE(2885), - [sym_or_block_expression] = STATE(2885), - [sym_option_propagation_expression] = STATE(2885), - [sym_result_propagation_expression] = STATE(2885), - [sym_anon_struct_value_expression] = STATE(2790), - [sym_go_expression] = STATE(2885), - [sym_spawn_expression] = STATE(2885), - [sym_parenthesized_expression] = STATE(2885), - [sym_call_expression] = STATE(2885), - [sym_type_initializer] = STATE(2790), - [sym_function_literal] = STATE(2885), - [sym_reference_expression] = STATE(2805), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2885), - [sym_receive_expression] = STATE(2885), - [sym_binary_expression] = STATE(2885), - [sym_as_type_cast_expression] = STATE(2885), - [sym__max_group] = STATE(2885), - [sym_literal] = STATE(2856), - [sym_map_init_expression] = STATE(2790), - [sym_array_creation] = STATE(2885), - [sym_fixed_array_creation] = STATE(2885), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2885), - [sym_slice_expression] = STATE(2885), - [sym_if_expression] = STATE(2790), - [sym_compile_time_if_expression] = STATE(2790), - [sym_is_expression] = STATE(2885), - [sym_in_expression] = STATE(2885), - [sym_enum_fetch] = STATE(2885), - [sym_match_expression] = STATE(2790), - [sym_select_expression] = STATE(2790), - [sym_lock_expression] = STATE(2790), - [sym_unsafe_expression] = STATE(2790), - [sym_sql_expression] = STATE(2790), - [sym_interpreted_string_literal] = STATE(2839), - [sym_c_string_literal] = STATE(2839), - [sym_raw_string_literal] = STATE(2839), - [sym_mutability_modifiers] = STATE(964), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3556), + [sym__expression] = STATE(248), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), + [sym_literal] = STATE(446), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4221), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(325), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_go] = ACTIONS(3574), - [anon_sym_spawn] = ACTIONS(3576), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3584), - [sym_none] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_nil] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3594), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3598), - [anon_sym_sql] = ACTIONS(3600), - [sym_int_literal] = ACTIONS(3586), - [sym_float_literal] = ACTIONS(3602), - [sym_rune_literal] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_c_SQUOTE] = ACTIONS(3608), - [anon_sym_c_DQUOTE] = ACTIONS(3610), - [anon_sym_r_SQUOTE] = ACTIONS(3612), - [anon_sym_r_DQUOTE] = ACTIONS(3614), - [sym_pseudo_compile_time_identifier] = ACTIONS(3616), + [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(3516), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -134989,111 +135227,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [970] = { [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [sym__expression] = STATE(1968), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135103,111 +135341,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [971] = { [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4218), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1989), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135217,111 +135455,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [972] = { [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [sym__expression] = STATE(1992), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2000), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135331,67 +135569,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [973] = { [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [sym__expression] = STATE(250), - [sym__expression_without_blocks] = STATE(450), - [sym__expression_with_blocks] = STATE(450), - [sym_inc_expression] = STATE(470), - [sym_dec_expression] = STATE(470), - [sym_or_block_expression] = STATE(470), - [sym_option_propagation_expression] = STATE(470), - [sym_result_propagation_expression] = STATE(470), - [sym_anon_struct_value_expression] = STATE(472), - [sym_go_expression] = STATE(470), - [sym_spawn_expression] = STATE(470), - [sym_parenthesized_expression] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_type_initializer] = STATE(472), - [sym_function_literal] = STATE(470), - [sym_reference_expression] = STATE(476), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(470), - [sym_receive_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_as_type_cast_expression] = STATE(470), - [sym__max_group] = STATE(470), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2793), + [sym__expression_with_blocks] = STATE(2793), + [sym_inc_expression] = STATE(2880), + [sym_dec_expression] = STATE(2880), + [sym_or_block_expression] = STATE(2880), + [sym_option_propagation_expression] = STATE(2880), + [sym_result_propagation_expression] = STATE(2880), + [sym_anon_struct_value_expression] = STATE(2785), + [sym_go_expression] = STATE(2880), + [sym_spawn_expression] = STATE(2880), + [sym_parenthesized_expression] = STATE(2880), + [sym_call_expression] = STATE(2880), + [sym_type_initializer] = STATE(2785), + [sym_function_literal] = STATE(2880), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2880), + [sym_receive_expression] = STATE(2880), + [sym_binary_expression] = STATE(2880), + [sym_as_type_cast_expression] = STATE(2880), + [sym__max_group] = STATE(2880), + [sym_literal] = STATE(2877), + [sym_map_init_expression] = STATE(2785), + [sym_array_creation] = STATE(2880), + [sym_fixed_array_creation] = STATE(2880), + [sym_selector_expression] = STATE(2880), + [sym_index_expression] = STATE(2880), + [sym_slice_expression] = STATE(2880), + [sym_if_expression] = STATE(2785), + [sym_compile_time_if_expression] = STATE(2785), + [sym_is_expression] = STATE(2880), + [sym_in_expression] = STATE(2880), + [sym_enum_fetch] = STATE(2880), + [sym_match_expression] = STATE(2785), + [sym_select_expression] = STATE(2785), + [sym_lock_expression] = STATE(2785), + [sym_unsafe_expression] = STATE(2785), + [sym_sql_expression] = STATE(2785), + [sym_interpreted_string_literal] = STATE(2854), + [sym_c_string_literal] = STATE(2854), + [sym_raw_string_literal] = STATE(2854), + [sym_mutability_modifiers] = STATE(965), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3538), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_struct] = ACTIONS(3552), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3558), + [anon_sym_json_DOTdecode] = ACTIONS(3560), + [anon_sym_LBRACK2] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_CARET] = ACTIONS(3548), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_LT_DASH] = ACTIONS(3566), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_select] = ACTIONS(3576), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3580), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3584), + [sym_rune_literal] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_c_SQUOTE] = ACTIONS(3590), + [anon_sym_c_DQUOTE] = ACTIONS(3592), + [anon_sym_r_SQUOTE] = ACTIONS(3594), + [anon_sym_r_DQUOTE] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3598), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [974] = { + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [sym__expression] = STATE(248), + [sym__expression_without_blocks] = STATE(471), + [sym__expression_with_blocks] = STATE(471), + [sym_inc_expression] = STATE(474), + [sym_dec_expression] = STATE(474), + [sym_or_block_expression] = STATE(474), + [sym_option_propagation_expression] = STATE(474), + [sym_result_propagation_expression] = STATE(474), + [sym_anon_struct_value_expression] = STATE(481), + [sym_go_expression] = STATE(474), + [sym_spawn_expression] = STATE(474), + [sym_parenthesized_expression] = STATE(474), + [sym_call_expression] = STATE(474), + [sym_type_initializer] = STATE(481), + [sym_function_literal] = STATE(474), + [sym_reference_expression] = STATE(483), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(474), + [sym_receive_expression] = STATE(474), + [sym_binary_expression] = STATE(474), + [sym_as_type_cast_expression] = STATE(474), + [sym__max_group] = STATE(474), [sym_literal] = STATE(446), - [sym_map_init_expression] = STATE(472), - [sym_array_creation] = STATE(470), - [sym_fixed_array_creation] = STATE(470), - [sym_selector_expression] = STATE(470), - [sym_index_expression] = STATE(470), - [sym_slice_expression] = STATE(470), - [sym_if_expression] = STATE(472), - [sym_compile_time_if_expression] = STATE(472), - [sym_is_expression] = STATE(470), - [sym_in_expression] = STATE(470), - [sym_enum_fetch] = STATE(470), - [sym_match_expression] = STATE(472), - [sym_select_expression] = STATE(472), - [sym_lock_expression] = STATE(472), - [sym_unsafe_expression] = STATE(472), - [sym_sql_expression] = STATE(472), - [sym_interpreted_string_literal] = STATE(412), - [sym_c_string_literal] = STATE(412), - [sym_raw_string_literal] = STATE(412), - [sym_mutability_modifiers] = STATE(788), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_map_init_expression] = STATE(481), + [sym_array_creation] = STATE(474), + [sym_fixed_array_creation] = STATE(474), + [sym_selector_expression] = STATE(474), + [sym_index_expression] = STATE(474), + [sym_slice_expression] = STATE(474), + [sym_if_expression] = STATE(481), + [sym_compile_time_if_expression] = STATE(481), + [sym_is_expression] = STATE(474), + [sym_in_expression] = STATE(474), + [sym_enum_fetch] = STATE(474), + [sym_match_expression] = STATE(481), + [sym_select_expression] = STATE(481), + [sym_lock_expression] = STATE(481), + [sym_unsafe_expression] = STATE(481), + [sym_sql_expression] = STATE(481), + [sym_interpreted_string_literal] = STATE(421), + [sym_c_string_literal] = STATE(421), + [sym_raw_string_literal] = STATE(421), + [sym_mutability_modifiers] = STATE(789), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(3512), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -135442,228 +135794,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [974] = { - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [sym__expression] = STATE(2525), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), - [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), - [sym_interpreted_string_literal] = STATE(2802), - [sym_c_string_literal] = STATE(2802), - [sym_raw_string_literal] = STATE(2802), - [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [975] = { [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [sym__expression] = STATE(2526), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2537), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135673,111 +135911,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [976] = { [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [sym__expression] = STATE(2529), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2639), - [sym_inc_expression] = STATE(2792), - [sym_dec_expression] = STATE(2792), - [sym_or_block_expression] = STATE(2792), - [sym_option_propagation_expression] = STATE(2792), - [sym_result_propagation_expression] = STATE(2792), - [sym_anon_struct_value_expression] = STATE(2640), - [sym_go_expression] = STATE(2792), - [sym_spawn_expression] = STATE(2792), - [sym_parenthesized_expression] = STATE(2792), - [sym_call_expression] = STATE(2792), - [sym_type_initializer] = STATE(2640), - [sym_function_literal] = STATE(2792), + [sym__expression] = STATE(2538), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), [sym_reference_expression] = STATE(2784), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2792), - [sym_receive_expression] = STATE(2792), - [sym_binary_expression] = STATE(2792), - [sym_as_type_cast_expression] = STATE(2792), - [sym__max_group] = STATE(2792), - [sym_literal] = STATE(2801), - [sym_map_init_expression] = STATE(2640), - [sym_array_creation] = STATE(2792), - [sym_fixed_array_creation] = STATE(2792), - [sym_selector_expression] = STATE(2792), - [sym_index_expression] = STATE(2792), - [sym_slice_expression] = STATE(2792), - [sym_if_expression] = STATE(2640), - [sym_compile_time_if_expression] = STATE(2640), - [sym_is_expression] = STATE(2792), - [sym_in_expression] = STATE(2792), - [sym_enum_fetch] = STATE(2792), - [sym_match_expression] = STATE(2640), - [sym_select_expression] = STATE(2640), - [sym_lock_expression] = STATE(2640), - [sym_unsafe_expression] = STATE(2640), - [sym_sql_expression] = STATE(2640), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), [sym_interpreted_string_literal] = STATE(2802), [sym_c_string_literal] = STATE(2802), [sym_raw_string_literal] = STATE(2802), [sym_mutability_modifiers] = STATE(959), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(2099), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_struct] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_go] = ACTIONS(1443), - [anon_sym_spawn] = ACTIONS(1445), - [anon_sym_json_DOTdecode] = ACTIONS(1447), - [anon_sym_LBRACK2] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_LT_DASH] = ACTIONS(1453), - [sym_none] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_select] = ACTIONS(3362), - [anon_sym_lock] = ACTIONS(3364), - [anon_sym_rlock] = ACTIONS(3364), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_sql] = ACTIONS(1471), - [sym_int_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1473), - [sym_rune_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_c_SQUOTE] = ACTIONS(1479), - [anon_sym_c_DQUOTE] = ACTIONS(1481), - [anon_sym_r_SQUOTE] = ACTIONS(1483), - [anon_sym_r_DQUOTE] = ACTIONS(1485), - [sym_pseudo_compile_time_identifier] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135787,111 +136025,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [977] = { [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [sym__expression] = STATE(2874), - [sym__expression_without_blocks] = STATE(2497), - [sym__expression_with_blocks] = STATE(2497), - [sym_inc_expression] = STATE(2435), - [sym_dec_expression] = STATE(2435), - [sym_or_block_expression] = STATE(2435), - [sym_option_propagation_expression] = STATE(2435), - [sym_result_propagation_expression] = STATE(2435), - [sym_anon_struct_value_expression] = STATE(2399), - [sym_go_expression] = STATE(2435), - [sym_spawn_expression] = STATE(2435), - [sym_parenthesized_expression] = STATE(2435), - [sym_call_expression] = STATE(2435), - [sym_type_initializer] = STATE(2399), - [sym_function_literal] = STATE(2435), - [sym_reference_expression] = STATE(2402), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2435), - [sym_receive_expression] = STATE(2435), - [sym_binary_expression] = STATE(2435), - [sym_as_type_cast_expression] = STATE(2435), - [sym__max_group] = STATE(2435), - [sym_literal] = STATE(2434), - [sym_map_init_expression] = STATE(2399), - [sym_array_creation] = STATE(2435), - [sym_fixed_array_creation] = STATE(2435), - [sym_selector_expression] = STATE(2435), - [sym_index_expression] = STATE(2435), - [sym_slice_expression] = STATE(2435), - [sym_if_expression] = STATE(2399), - [sym_compile_time_if_expression] = STATE(2399), - [sym_is_expression] = STATE(2435), - [sym_in_expression] = STATE(2435), - [sym_enum_fetch] = STATE(2435), - [sym_match_expression] = STATE(2399), - [sym_select_expression] = STATE(2399), - [sym_lock_expression] = STATE(2399), - [sym_unsafe_expression] = STATE(2399), - [sym_sql_expression] = STATE(2399), - [sym_interpreted_string_literal] = STATE(2415), - [sym_c_string_literal] = STATE(2415), - [sym_raw_string_literal] = STATE(2415), - [sym_mutability_modifiers] = STATE(883), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(1772), + [sym__expression] = STATE(2540), + [sym__expression_without_blocks] = STATE(2641), + [sym__expression_with_blocks] = STATE(2641), + [sym_inc_expression] = STATE(2791), + [sym_dec_expression] = STATE(2791), + [sym_or_block_expression] = STATE(2791), + [sym_option_propagation_expression] = STATE(2791), + [sym_result_propagation_expression] = STATE(2791), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2791), + [sym_spawn_expression] = STATE(2791), + [sym_parenthesized_expression] = STATE(2791), + [sym_call_expression] = STATE(2791), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2791), + [sym_reference_expression] = STATE(2784), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2791), + [sym_receive_expression] = STATE(2791), + [sym_binary_expression] = STATE(2791), + [sym_as_type_cast_expression] = STATE(2791), + [sym__max_group] = STATE(2791), + [sym_literal] = STATE(2798), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2791), + [sym_fixed_array_creation] = STATE(2791), + [sym_selector_expression] = STATE(2791), + [sym_index_expression] = STATE(2791), + [sym_slice_expression] = STATE(2791), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2791), + [sym_in_expression] = STATE(2791), + [sym_enum_fetch] = STATE(2791), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2802), + [sym_c_string_literal] = STATE(2802), + [sym_raw_string_literal] = STATE(2802), + [sym_mutability_modifiers] = STATE(959), + [sym_plain_type] = STATE(4270), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(1461), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_go] = ACTIONS(2409), - [anon_sym_spawn] = ACTIONS(2411), - [anon_sym_json_DOTdecode] = ACTIONS(1794), - [anon_sym_LBRACK2] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_select] = ACTIONS(1810), - [anon_sym_lock] = ACTIONS(1812), - [anon_sym_rlock] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(1816), - [sym_int_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1818), - [sym_rune_literal] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [anon_sym_c_SQUOTE] = ACTIONS(1824), - [anon_sym_c_DQUOTE] = ACTIONS(1826), - [anon_sym_r_SQUOTE] = ACTIONS(1828), - [anon_sym_r_DQUOTE] = ACTIONS(1830), - [sym_pseudo_compile_time_identifier] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(1465), + [anon_sym_spawn] = ACTIONS(1467), + [anon_sym_json_DOTdecode] = ACTIONS(1469), + [anon_sym_LBRACK2] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_LT_DASH] = ACTIONS(1475), + [sym_none] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), + [sym_nil] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_DOLLARif] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_sql] = ACTIONS(1493), + [sym_int_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1495), + [sym_rune_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_c_SQUOTE] = ACTIONS(1501), + [anon_sym_c_DQUOTE] = ACTIONS(1503), + [anon_sym_r_SQUOTE] = ACTIONS(1505), + [anon_sym_r_DQUOTE] = ACTIONS(1507), + [sym_pseudo_compile_time_identifier] = ACTIONS(1509), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -135901,111 +136139,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [978] = { [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [sym__expression] = STATE(2000), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -136015,111 +136253,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [979] = { [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), + [sym_plain_type] = STATE(4222), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -136129,111 +136367,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [980] = { [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), + [sym__expression] = STATE(1985), + [sym__expression_without_blocks] = STATE(2046), + [sym__expression_with_blocks] = STATE(2046), + [sym_inc_expression] = STATE(2054), + [sym_dec_expression] = STATE(2054), + [sym_or_block_expression] = STATE(2054), + [sym_option_propagation_expression] = STATE(2054), + [sym_result_propagation_expression] = STATE(2054), + [sym_anon_struct_value_expression] = STATE(2058), + [sym_go_expression] = STATE(2054), + [sym_spawn_expression] = STATE(2054), + [sym_parenthesized_expression] = STATE(2054), + [sym_call_expression] = STATE(2054), + [sym_type_initializer] = STATE(2058), + [sym_function_literal] = STATE(2054), + [sym_reference_expression] = STATE(2200), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2054), + [sym_receive_expression] = STATE(2054), + [sym_binary_expression] = STATE(2054), + [sym_as_type_cast_expression] = STATE(2054), + [sym__max_group] = STATE(2054), + [sym_literal] = STATE(2043), + [sym_map_init_expression] = STATE(2058), + [sym_array_creation] = STATE(2054), + [sym_fixed_array_creation] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym_index_expression] = STATE(2054), + [sym_slice_expression] = STATE(2054), + [sym_if_expression] = STATE(2058), + [sym_compile_time_if_expression] = STATE(2058), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(2054), + [sym_enum_fetch] = STATE(2054), + [sym_match_expression] = STATE(2058), + [sym_select_expression] = STATE(2058), + [sym_lock_expression] = STATE(2058), + [sym_unsafe_expression] = STATE(2058), + [sym_sql_expression] = STATE(2058), + [sym_interpreted_string_literal] = STATE(2031), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(944), [sym_plain_type] = STATE(4227), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(1139), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3372), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(1149), + [anon_sym_LBRACK2] = ACTIONS(3376), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3380), + [sym_none] = ACTIONS(1157), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_nil] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_DOLLARif] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3384), + [anon_sym_rlock] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_sql] = ACTIONS(1171), + [sym_int_literal] = ACTIONS(1157), + [sym_float_literal] = ACTIONS(1173), + [sym_rune_literal] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_c_SQUOTE] = ACTIONS(1179), + [anon_sym_c_DQUOTE] = ACTIONS(1181), + [anon_sym_r_SQUOTE] = ACTIONS(1183), + [anon_sym_r_DQUOTE] = ACTIONS(1185), + [sym_pseudo_compile_time_identifier] = ACTIONS(1187), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -136243,111 +136481,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [981] = { [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [sym__expression] = STATE(1987), - [sym__expression_without_blocks] = STATE(2038), - [sym__expression_with_blocks] = STATE(2038), - [sym_inc_expression] = STATE(2040), - [sym_dec_expression] = STATE(2040), - [sym_or_block_expression] = STATE(2040), - [sym_option_propagation_expression] = STATE(2040), - [sym_result_propagation_expression] = STATE(2040), - [sym_anon_struct_value_expression] = STATE(2041), - [sym_go_expression] = STATE(2040), - [sym_spawn_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_type_initializer] = STATE(2041), - [sym_function_literal] = STATE(2040), - [sym_reference_expression] = STATE(2148), - [sym_type_reference_expression] = STATE(3648), - [sym_unary_expression] = STATE(2040), - [sym_receive_expression] = STATE(2040), - [sym_binary_expression] = STATE(2040), - [sym_as_type_cast_expression] = STATE(2040), - [sym__max_group] = STATE(2040), - [sym_literal] = STATE(2029), - [sym_map_init_expression] = STATE(2041), - [sym_array_creation] = STATE(2040), - [sym_fixed_array_creation] = STATE(2040), - [sym_selector_expression] = STATE(2040), - [sym_index_expression] = STATE(2040), - [sym_slice_expression] = STATE(2040), - [sym_if_expression] = STATE(2041), - [sym_compile_time_if_expression] = STATE(2041), - [sym_is_expression] = STATE(2040), - [sym_in_expression] = STATE(2040), - [sym_enum_fetch] = STATE(2040), - [sym_match_expression] = STATE(2041), - [sym_select_expression] = STATE(2041), - [sym_lock_expression] = STATE(2041), - [sym_unsafe_expression] = STATE(2041), - [sym_sql_expression] = STATE(2041), - [sym_interpreted_string_literal] = STATE(2028), - [sym_c_string_literal] = STATE(2028), - [sym_raw_string_literal] = STATE(2028), - [sym_mutability_modifiers] = STATE(945), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(3374), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2462), + [sym__expression_with_blocks] = STATE(2462), + [sym_inc_expression] = STATE(2466), + [sym_dec_expression] = STATE(2466), + [sym_or_block_expression] = STATE(2466), + [sym_option_propagation_expression] = STATE(2466), + [sym_result_propagation_expression] = STATE(2466), + [sym_anon_struct_value_expression] = STATE(2470), + [sym_go_expression] = STATE(2466), + [sym_spawn_expression] = STATE(2466), + [sym_parenthesized_expression] = STATE(2466), + [sym_call_expression] = STATE(2466), + [sym_type_initializer] = STATE(2470), + [sym_function_literal] = STATE(2466), + [sym_reference_expression] = STATE(2473), + [sym_type_reference_expression] = STATE(3649), + [sym_unary_expression] = STATE(2466), + [sym_receive_expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_as_type_cast_expression] = STATE(2466), + [sym__max_group] = STATE(2466), + [sym_literal] = STATE(2451), + [sym_map_init_expression] = STATE(2470), + [sym_array_creation] = STATE(2466), + [sym_fixed_array_creation] = STATE(2466), + [sym_selector_expression] = STATE(2466), + [sym_index_expression] = STATE(2466), + [sym_slice_expression] = STATE(2466), + [sym_if_expression] = STATE(2470), + [sym_compile_time_if_expression] = STATE(2470), + [sym_is_expression] = STATE(2466), + [sym_in_expression] = STATE(2466), + [sym_enum_fetch] = STATE(2466), + [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_interpreted_string_literal] = STATE(2448), + [sym_c_string_literal] = STATE(2448), + [sym_raw_string_literal] = STATE(2448), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3689), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1931), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_go] = ACTIONS(3384), - [anon_sym_spawn] = ACTIONS(3386), - [anon_sym_json_DOTdecode] = ACTIONS(1157), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_LT_DASH] = ACTIONS(3392), - [sym_none] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_DOLLARif] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_select] = ACTIONS(3394), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(1177), - [anon_sym_sql] = ACTIONS(1179), - [sym_int_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1181), - [sym_rune_literal] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_c_SQUOTE] = ACTIONS(1187), - [anon_sym_c_DQUOTE] = ACTIONS(1189), - [anon_sym_r_SQUOTE] = ACTIONS(1191), - [anon_sym_r_DQUOTE] = ACTIONS(1193), - [sym_pseudo_compile_time_identifier] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_go] = ACTIONS(2419), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(1939), + [anon_sym_LBRACK2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_CARET] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2425), + [sym_none] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_nil] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_lock] = ACTIONS(1957), + [anon_sym_rlock] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(1961), + [sym_int_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1963), + [sym_rune_literal] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [anon_sym_c_SQUOTE] = ACTIONS(1969), + [anon_sym_c_DQUOTE] = ACTIONS(1971), + [anon_sym_r_SQUOTE] = ACTIONS(1973), + [anon_sym_r_DQUOTE] = ACTIONS(1975), + [sym_pseudo_compile_time_identifier] = ACTIONS(1977), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -136357,137 +136595,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [982] = { [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2053), - [anon_sym_LF] = ACTIONS(2053), - [anon_sym_CR] = ACTIONS(2053), - [anon_sym_CR_LF] = ACTIONS(2053), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_CR] = ACTIONS(2079), + [anon_sym_CR_LF] = ACTIONS(2079), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2053), - [anon_sym_mut] = ACTIONS(2053), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2053), - [anon_sym_spawn] = ACTIONS(2053), - [anon_sym_json_DOTdecode] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_LT_DASH] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2053), - [sym_true] = ACTIONS(2053), - [sym_false] = ACTIONS(2053), - [sym_nil] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_LT_DASH] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_nil] = ACTIONS(2079), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_DOLLARif] = ACTIONS(2053), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_select] = ACTIONS(2053), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2053), - [anon_sym_rlock] = ACTIONS(2053), - [anon_sym_unsafe] = ACTIONS(2053), - [anon_sym_sql] = ACTIONS(2053), - [sym_int_literal] = ACTIONS(2053), - [sym_float_literal] = ACTIONS(2053), - [sym_rune_literal] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [anon_sym_c_SQUOTE] = ACTIONS(2053), - [anon_sym_c_DQUOTE] = ACTIONS(2053), - [anon_sym_r_SQUOTE] = ACTIONS(2053), - [anon_sym_r_DQUOTE] = ACTIONS(2053), - [sym_pseudo_compile_time_identifier] = ACTIONS(2053), - [anon_sym_shared] = ACTIONS(2053), - [anon_sym_map_LBRACK] = ACTIONS(2053), - [anon_sym_chan] = ACTIONS(2053), - [anon_sym_thread] = ACTIONS(2053), - [anon_sym_atomic] = ACTIONS(2053), - [anon_sym_assert] = ACTIONS(2053), - [anon_sym_defer] = ACTIONS(2053), - [anon_sym_goto] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_DOLLARfor] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2053), - [anon_sym_asm] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_select] = ACTIONS(2079), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2079), + [anon_sym_rlock] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_sql] = ACTIONS(2079), + [sym_int_literal] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), + [sym_rune_literal] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [anon_sym_c_SQUOTE] = ACTIONS(2079), + [anon_sym_c_DQUOTE] = ACTIONS(2079), + [anon_sym_r_SQUOTE] = ACTIONS(2079), + [anon_sym_r_DQUOTE] = ACTIONS(2079), + [sym_pseudo_compile_time_identifier] = ACTIONS(2079), + [anon_sym_shared] = ACTIONS(2079), + [anon_sym_map_LBRACK] = ACTIONS(2079), + [anon_sym_chan] = ACTIONS(2079), + [anon_sym_thread] = ACTIONS(2079), + [anon_sym_atomic] = ACTIONS(2079), + [anon_sym_assert] = ACTIONS(2079), + [anon_sym_defer] = ACTIONS(2079), + [anon_sym_goto] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_DOLLARfor] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_asm] = ACTIONS(2079), }, [983] = { [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_DOT] = ACTIONS(3750), [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), + [anon_sym_EQ] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -136500,22 +136738,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_COLON] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2075), [anon_sym_PLUS_PLUS] = ACTIONS(3768), [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2075), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2069), + [anon_sym_LT_DASH] = ACTIONS(2075), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), @@ -136523,85 +136761,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3782), [anon_sym_PIPE_PIPE] = ACTIONS(3784), [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), [anon_sym_is] = ACTIONS(3788), [anon_sym_BANGis] = ACTIONS(3788), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_STAR_EQ] = ACTIONS(2069), - [anon_sym_SLASH_EQ] = ACTIONS(2069), - [anon_sym_PERCENT_EQ] = ACTIONS(2069), - [anon_sym_LT_LT_EQ] = ACTIONS(2069), - [anon_sym_GT_GT_EQ] = ACTIONS(2069), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2069), - [anon_sym_AMP_EQ] = ACTIONS(2069), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2069), - [anon_sym_PLUS_EQ] = ACTIONS(2069), - [anon_sym_DASH_EQ] = ACTIONS(2069), - [anon_sym_PIPE_EQ] = ACTIONS(2069), - [anon_sym_CARET_EQ] = ACTIONS(2069), - [anon_sym_COLON_EQ] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), - [anon_sym_assert] = ACTIONS(2069), - [anon_sym_defer] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_DOLLARfor] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_asm] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_COLON_EQ] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), }, [984] = { [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [aux_sym_strictly_expression_list_repeat1] = STATE(3390), - [sym_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_CR] = ACTIONS(1997), - [anon_sym_CR_LF] = ACTIONS(1997), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [aux_sym_strictly_expression_list_repeat1] = STATE(3389), + [sym_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2037), + [anon_sym_CR] = ACTIONS(2037), + [anon_sym_CR_LF] = ACTIONS(2037), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(2037), [anon_sym_DOT] = ACTIONS(3750), [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(2037), [anon_sym_COMMA] = ACTIONS(3754), - [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(2037), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(1997), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2037), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -136614,18 +136852,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), [anon_sym_PLUS_PLUS] = ACTIONS(3768), [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(1997), - [anon_sym_spawn] = ACTIONS(1997), - [anon_sym_json_DOTdecode] = ACTIONS(1997), + [anon_sym_go] = ACTIONS(2037), + [anon_sym_spawn] = ACTIONS(2037), + [anon_sym_json_DOTdecode] = ACTIONS(2037), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(2037), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), [anon_sym_LT_DASH] = ACTIONS(3778), @@ -136636,408 +136874,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3782), [anon_sym_PIPE_PIPE] = ACTIONS(3784), [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(1997), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [sym_nil] = ACTIONS(1997), + [sym_none] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_nil] = ACTIONS(2037), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_DOLLARif] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_DOLLARif] = ACTIONS(2037), [anon_sym_is] = ACTIONS(3788), [anon_sym_BANGis] = ACTIONS(3788), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(2007), - [anon_sym_SLASH_EQ] = ACTIONS(2007), - [anon_sym_PERCENT_EQ] = ACTIONS(2007), - [anon_sym_LT_LT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2007), - [anon_sym_AMP_EQ] = ACTIONS(2007), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2007), - [anon_sym_PLUS_EQ] = ACTIONS(2007), - [anon_sym_DASH_EQ] = ACTIONS(2007), - [anon_sym_PIPE_EQ] = ACTIONS(2007), - [anon_sym_CARET_EQ] = ACTIONS(2007), - [anon_sym_COLON_EQ] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(1997), - [anon_sym_rlock] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_sql] = ACTIONS(1997), - [sym_int_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_rune_literal] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [anon_sym_c_SQUOTE] = ACTIONS(1997), - [anon_sym_c_DQUOTE] = ACTIONS(1997), - [anon_sym_r_SQUOTE] = ACTIONS(1997), - [anon_sym_r_DQUOTE] = ACTIONS(1997), - [sym_pseudo_compile_time_identifier] = ACTIONS(1997), - [anon_sym_shared] = ACTIONS(1997), - [anon_sym_map_LBRACK] = ACTIONS(1997), - [anon_sym_chan] = ACTIONS(1997), - [anon_sym_thread] = ACTIONS(1997), - [anon_sym_atomic] = ACTIONS(1997), - [anon_sym_assert] = ACTIONS(1997), - [anon_sym_defer] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_DOLLARfor] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_select] = ACTIONS(2037), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_COLON_EQ] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2037), + [anon_sym_rlock] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_sql] = ACTIONS(2037), + [sym_int_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + [sym_rune_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_c_SQUOTE] = ACTIONS(2037), + [anon_sym_c_DQUOTE] = ACTIONS(2037), + [anon_sym_r_SQUOTE] = ACTIONS(2037), + [anon_sym_r_DQUOTE] = ACTIONS(2037), + [sym_pseudo_compile_time_identifier] = ACTIONS(2037), + [anon_sym_shared] = ACTIONS(2037), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2037), + [anon_sym_thread] = ACTIONS(2037), + [anon_sym_atomic] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_defer] = ACTIONS(2037), + [anon_sym_goto] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_DOLLARfor] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_asm] = ACTIONS(2037), }, [985] = { [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2065), - [anon_sym_LF] = ACTIONS(2065), - [anon_sym_CR] = ACTIONS(2065), - [anon_sym_CR_LF] = ACTIONS(2065), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2057), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_COMMA] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym_EQ] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2065), - [anon_sym_spawn] = ACTIONS(2065), - [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2065), - [anon_sym_AMP_CARET] = ACTIONS(2065), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2065), - [sym_none] = ACTIONS(2065), - [sym_true] = ACTIONS(2065), - [sym_false] = ACTIONS(2065), - [sym_nil] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_AMP_CARET] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_select] = ACTIONS(2065), - [anon_sym_STAR_EQ] = ACTIONS(2065), - [anon_sym_SLASH_EQ] = ACTIONS(2065), - [anon_sym_PERCENT_EQ] = ACTIONS(2065), - [anon_sym_LT_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_GT_EQ] = ACTIONS(2065), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2065), - [anon_sym_AMP_EQ] = ACTIONS(2065), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2065), - [anon_sym_PLUS_EQ] = ACTIONS(2065), - [anon_sym_DASH_EQ] = ACTIONS(2065), - [anon_sym_PIPE_EQ] = ACTIONS(2065), - [anon_sym_CARET_EQ] = ACTIONS(2065), - [anon_sym_COLON_EQ] = ACTIONS(2065), - [anon_sym_lock] = ACTIONS(2065), - [anon_sym_rlock] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_sql] = ACTIONS(2065), - [sym_int_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), - [sym_rune_literal] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_c_SQUOTE] = ACTIONS(2065), - [anon_sym_c_DQUOTE] = ACTIONS(2065), - [anon_sym_r_SQUOTE] = ACTIONS(2065), - [anon_sym_r_DQUOTE] = ACTIONS(2065), - [sym_pseudo_compile_time_identifier] = ACTIONS(2065), - [anon_sym_shared] = ACTIONS(2065), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2065), - [anon_sym_thread] = ACTIONS(2065), - [anon_sym_atomic] = ACTIONS(2065), - [anon_sym_assert] = ACTIONS(2065), - [anon_sym_defer] = ACTIONS(2065), - [anon_sym_goto] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_DOLLARfor] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2065), - [anon_sym_asm] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_STAR_EQ] = ACTIONS(2057), + [anon_sym_SLASH_EQ] = ACTIONS(2057), + [anon_sym_PERCENT_EQ] = ACTIONS(2057), + [anon_sym_LT_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_GT_EQ] = ACTIONS(2057), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2057), + [anon_sym_AMP_EQ] = ACTIONS(2057), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2057), + [anon_sym_PLUS_EQ] = ACTIONS(2057), + [anon_sym_DASH_EQ] = ACTIONS(2057), + [anon_sym_PIPE_EQ] = ACTIONS(2057), + [anon_sym_CARET_EQ] = ACTIONS(2057), + [anon_sym_COLON_EQ] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_rune_literal] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_c_SQUOTE] = ACTIONS(2057), + [anon_sym_c_DQUOTE] = ACTIONS(2057), + [anon_sym_r_SQUOTE] = ACTIONS(2057), + [anon_sym_r_DQUOTE] = ACTIONS(2057), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2057), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2057), + [anon_sym_defer] = ACTIONS(2057), + [anon_sym_goto] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_DOLLARfor] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_asm] = ACTIONS(2057), }, [986] = { [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(3758), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_SLASH] = ACTIONS(3760), - [anon_sym_PERCENT] = ACTIONS(3760), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_COLON] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(3772), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(3758), - [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(3758), - [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(3760), - [anon_sym_GT_GT] = ACTIONS(3760), - [anon_sym_GT_GT_GT] = ACTIONS(3760), - [anon_sym_AMP_CARET] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(3750), - [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_STAR_EQ] = ACTIONS(2079), - [anon_sym_SLASH_EQ] = ACTIONS(2079), - [anon_sym_PERCENT_EQ] = ACTIONS(2079), - [anon_sym_LT_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_GT_EQ] = ACTIONS(2079), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2079), - [anon_sym_AMP_EQ] = ACTIONS(2079), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2079), - [anon_sym_PLUS_EQ] = ACTIONS(2079), - [anon_sym_DASH_EQ] = ACTIONS(2079), - [anon_sym_PIPE_EQ] = ACTIONS(2079), - [anon_sym_CARET_EQ] = ACTIONS(2079), - [anon_sym_COLON_EQ] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_defer] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_DOLLARfor] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_asm] = ACTIONS(2079), - }, - [987] = { - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(3772), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(3750), - [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - }, - [988] = { - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), [sym_identifier] = ACTIONS(2049), [anon_sym_LF] = ACTIONS(2049), [anon_sym_CR] = ACTIONS(2049), @@ -137053,11 +137065,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3756), [anon_sym_EQ] = ACTIONS(2049), [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_SLASH] = ACTIONS(3760), + [anon_sym_PERCENT] = ACTIONS(3760), [anon_sym_LT] = ACTIONS(2049), [anon_sym_GT] = ACTIONS(2049), [anon_sym_EQ_EQ] = ACTIONS(2049), @@ -137075,16 +137087,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2049), [anon_sym_spawn] = ACTIONS(2049), [anon_sym_json_DOTdecode] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3760), [anon_sym_LT_DASH] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2049), - [anon_sym_AMP_CARET] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(3760), + [anon_sym_GT_GT] = ACTIONS(3760), + [anon_sym_GT_GT_GT] = ACTIONS(3760), + [anon_sym_AMP_CARET] = ACTIONS(3760), [anon_sym_AMP_AMP] = ACTIONS(2049), [anon_sym_PIPE_PIPE] = ACTIONS(2049), [anon_sym_or] = ACTIONS(2049), @@ -137145,27 +137157,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2049), [anon_sym_asm] = ACTIONS(2049), }, + [987] = { + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_CR] = ACTIONS(2061), + [anon_sym_CR_LF] = ACTIONS(2061), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(3756), + [anon_sym_EQ] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3774), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK2] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_AMP_CARET] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), + [anon_sym_QMARK_DOT] = ACTIONS(3750), + [anon_sym_POUND_LBRACK] = ACTIONS(3776), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_STAR_EQ] = ACTIONS(2061), + [anon_sym_SLASH_EQ] = ACTIONS(2061), + [anon_sym_PERCENT_EQ] = ACTIONS(2061), + [anon_sym_LT_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_GT_EQ] = ACTIONS(2061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2061), + [anon_sym_AMP_EQ] = ACTIONS(2061), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2061), + [anon_sym_PLUS_EQ] = ACTIONS(2061), + [anon_sym_DASH_EQ] = ACTIONS(2061), + [anon_sym_PIPE_EQ] = ACTIONS(2061), + [anon_sym_CARET_EQ] = ACTIONS(2061), + [anon_sym_COLON_EQ] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_rune_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [anon_sym_c_SQUOTE] = ACTIONS(2061), + [anon_sym_c_DQUOTE] = ACTIONS(2061), + [anon_sym_r_SQUOTE] = ACTIONS(2061), + [anon_sym_r_DQUOTE] = ACTIONS(2061), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2061), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(2061), + [anon_sym_defer] = ACTIONS(2061), + [anon_sym_goto] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_DOLLARfor] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_asm] = ACTIONS(2061), + }, + [988] = { + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(3756), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3774), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(3750), + [anon_sym_POUND_LBRACK] = ACTIONS(3776), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + }, [989] = { [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -137178,107 +137416,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), [anon_sym_AMP_CARET] = ACTIONS(3760), [anon_sym_AMP_AMP] = ACTIONS(3782), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [990] = { [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -137291,334 +137529,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), [anon_sym_AMP_CARET] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [991] = { [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), [anon_sym_SLASH] = ACTIONS(3760), [anon_sym_PERCENT] = ACTIONS(3760), - [anon_sym_LT] = ACTIONS(3762), - [anon_sym_GT] = ACTIONS(3762), - [anon_sym_EQ_EQ] = ACTIONS(3762), - [anon_sym_BANG_EQ] = ACTIONS(3762), - [anon_sym_LT_EQ] = ACTIONS(3762), - [anon_sym_GT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(3768), - [anon_sym_DASH_DASH] = ACTIONS(3770), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2059), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), [anon_sym_AMP_CARET] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(3782), - [anon_sym_PIPE_PIPE] = ACTIONS(3784), - [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(3788), - [anon_sym_BANGis] = ACTIONS(3788), - [anon_sym_in] = ACTIONS(3790), - [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_STAR_EQ] = ACTIONS(2059), - [anon_sym_SLASH_EQ] = ACTIONS(2059), - [anon_sym_PERCENT_EQ] = ACTIONS(2059), - [anon_sym_LT_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_AMP_EQ] = ACTIONS(2059), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2059), - [anon_sym_PLUS_EQ] = ACTIONS(2059), - [anon_sym_DASH_EQ] = ACTIONS(2059), - [anon_sym_PIPE_EQ] = ACTIONS(2059), - [anon_sym_CARET_EQ] = ACTIONS(2059), - [anon_sym_COLON_EQ] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [992] = { [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), [anon_sym_STAR] = ACTIONS(3760), [anon_sym_SLASH] = ACTIONS(3760), [anon_sym_PERCENT] = ACTIONS(3760), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), [anon_sym_AMP_CARET] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_STAR_EQ] = ACTIONS(2053), + [anon_sym_SLASH_EQ] = ACTIONS(2053), + [anon_sym_PERCENT_EQ] = ACTIONS(2053), + [anon_sym_LT_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2053), + [anon_sym_AMP_EQ] = ACTIONS(2053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2053), + [anon_sym_PLUS_EQ] = ACTIONS(2053), + [anon_sym_DASH_EQ] = ACTIONS(2053), + [anon_sym_PIPE_EQ] = ACTIONS(2053), + [anon_sym_CARET_EQ] = ACTIONS(2053), + [anon_sym_COLON_EQ] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [993] = { [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), [aux_sym_strictly_expression_list_repeat1] = STATE(1924), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2043), - [anon_sym_CR] = ACTIONS(2043), - [anon_sym_CR_LF] = ACTIONS(2043), + [sym_identifier] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_CR] = ACTIONS(1995), + [anon_sym_CR_LF] = ACTIONS(1995), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(1995), [anon_sym_DOT] = ACTIONS(3750), [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(1995), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2043), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(1995), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -137631,21 +137869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_mut] = ACTIONS(1995), [anon_sym_PLUS_PLUS] = ACTIONS(3768), [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2043), - [anon_sym_spawn] = ACTIONS(2043), - [anon_sym_json_DOTdecode] = ACTIONS(2043), + [anon_sym_go] = ACTIONS(1995), + [anon_sym_spawn] = ACTIONS(1995), + [anon_sym_json_DOTdecode] = ACTIONS(1995), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2043), + [anon_sym_TILDE] = ACTIONS(1995), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_DASH] = ACTIONS(1995), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), @@ -137653,180 +137891,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3782), [anon_sym_PIPE_PIPE] = ACTIONS(3784), [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(2043), - [sym_true] = ACTIONS(2043), - [sym_false] = ACTIONS(2043), - [sym_nil] = ACTIONS(2043), + [sym_none] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_nil] = ACTIONS(1995), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_DOLLARif] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_DOLLARif] = ACTIONS(1995), [anon_sym_is] = ACTIONS(3788), [anon_sym_BANGis] = ACTIONS(3788), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_select] = ACTIONS(2043), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_PERCENT_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP_EQ] = ACTIONS(2045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2045), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_PIPE_EQ] = ACTIONS(2045), - [anon_sym_CARET_EQ] = ACTIONS(2045), - [anon_sym_COLON_EQ] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2043), - [anon_sym_rlock] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_sql] = ACTIONS(2043), - [sym_int_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - [sym_rune_literal] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_c_SQUOTE] = ACTIONS(2043), - [anon_sym_c_DQUOTE] = ACTIONS(2043), - [anon_sym_r_SQUOTE] = ACTIONS(2043), - [anon_sym_r_DQUOTE] = ACTIONS(2043), - [sym_pseudo_compile_time_identifier] = ACTIONS(2043), - [anon_sym_shared] = ACTIONS(2043), - [anon_sym_map_LBRACK] = ACTIONS(2043), - [anon_sym_chan] = ACTIONS(2043), - [anon_sym_thread] = ACTIONS(2043), - [anon_sym_atomic] = ACTIONS(2043), - [anon_sym_assert] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_goto] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_DOLLARfor] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_asm] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_select] = ACTIONS(1995), + [anon_sym_STAR_EQ] = ACTIONS(2001), + [anon_sym_SLASH_EQ] = ACTIONS(2001), + [anon_sym_PERCENT_EQ] = ACTIONS(2001), + [anon_sym_LT_LT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_AMP_EQ] = ACTIONS(2001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(2001), + [anon_sym_DASH_EQ] = ACTIONS(2001), + [anon_sym_PIPE_EQ] = ACTIONS(2001), + [anon_sym_CARET_EQ] = ACTIONS(2001), + [anon_sym_COLON_EQ] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(1995), + [anon_sym_rlock] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_sql] = ACTIONS(1995), + [sym_int_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), + [sym_rune_literal] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_c_SQUOTE] = ACTIONS(1995), + [anon_sym_c_DQUOTE] = ACTIONS(1995), + [anon_sym_r_SQUOTE] = ACTIONS(1995), + [anon_sym_r_DQUOTE] = ACTIONS(1995), + [sym_pseudo_compile_time_identifier] = ACTIONS(1995), + [anon_sym_shared] = ACTIONS(1995), + [anon_sym_map_LBRACK] = ACTIONS(1995), + [anon_sym_chan] = ACTIONS(1995), + [anon_sym_thread] = ACTIONS(1995), + [anon_sym_atomic] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_defer] = ACTIONS(1995), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_DOLLARfor] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_asm] = ACTIONS(1995), }, [994] = { [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_CR] = ACTIONS(2065), + [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2065), [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), [anon_sym_SLASH] = ACTIONS(3760), [anon_sym_PERCENT] = ACTIONS(3760), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(3768), + [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2065), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2065), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2065), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), [anon_sym_AMP_CARET] = ACTIONS(3760), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3786), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(3788), + [anon_sym_BANGis] = ACTIONS(3788), + [anon_sym_in] = ACTIONS(3790), + [anon_sym_BANGin] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_STAR_EQ] = ACTIONS(2065), + [anon_sym_SLASH_EQ] = ACTIONS(2065), + [anon_sym_PERCENT_EQ] = ACTIONS(2065), + [anon_sym_LT_LT_EQ] = ACTIONS(2065), + [anon_sym_GT_GT_EQ] = ACTIONS(2065), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2065), + [anon_sym_AMP_EQ] = ACTIONS(2065), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2065), + [anon_sym_PLUS_EQ] = ACTIONS(2065), + [anon_sym_DASH_EQ] = ACTIONS(2065), + [anon_sym_PIPE_EQ] = ACTIONS(2065), + [anon_sym_CARET_EQ] = ACTIONS(2065), + [anon_sym_COLON_EQ] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_c_SQUOTE] = ACTIONS(2065), + [anon_sym_c_DQUOTE] = ACTIONS(2065), + [anon_sym_r_SQUOTE] = ACTIONS(2065), + [anon_sym_r_DQUOTE] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_defer] = ACTIONS(2065), + [anon_sym_goto] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_DOLLARfor] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_asm] = ACTIONS(2065), }, [995] = { [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [sym_else_branch] = STATE(1099), + [sym_else_branch] = STATE(1100), [sym_identifier] = ACTIONS(2089), [anon_sym_LF] = ACTIONS(2089), [anon_sym_CR] = ACTIONS(2089), @@ -137938,7 +138176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [996] = { [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [sym_else_branch] = STATE(1100), + [sym_else_branch] = STATE(1101), [sym_identifier] = ACTIONS(2083), [anon_sym_LF] = ACTIONS(2083), [anon_sym_CR] = ACTIONS(2083), @@ -138050,24 +138288,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [997] = { [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [sym_type_parameters] = STATE(4187), - [sym_argument_list] = STATE(1015), - [sym_or_block] = STATE(1016), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2073), - [anon_sym_CR] = ACTIONS(2073), - [anon_sym_CR_LF] = ACTIONS(2073), + [sym_type_parameters] = STATE(4185), + [sym_argument_list] = STATE(1016), + [sym_or_block] = STATE(1017), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2069), + [anon_sym_CR] = ACTIONS(2069), + [anon_sym_CR_LF] = ACTIONS(2069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2069), [anon_sym_DOT] = ACTIONS(3750), [anon_sym_as] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), [anon_sym_LPAREN] = ACTIONS(3756), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), + [anon_sym_EQ] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), [anon_sym_PLUS] = ACTIONS(3758), [anon_sym_DASH] = ACTIONS(3758), [anon_sym_STAR] = ACTIONS(3760), @@ -138080,21 +138318,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3762), [anon_sym_GT_EQ] = ACTIONS(3762), [anon_sym_LBRACK] = ACTIONS(3764), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), [anon_sym_PLUS_PLUS] = ACTIONS(3768), [anon_sym_DASH_DASH] = ACTIONS(3770), [anon_sym_QMARK] = ACTIONS(3772), [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_go] = ACTIONS(2073), - [anon_sym_spawn] = ACTIONS(2073), - [anon_sym_json_DOTdecode] = ACTIONS(2073), + [anon_sym_go] = ACTIONS(2069), + [anon_sym_spawn] = ACTIONS(2069), + [anon_sym_json_DOTdecode] = ACTIONS(2069), [anon_sym_PIPE] = ACTIONS(3758), [anon_sym_LBRACK2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2069), [anon_sym_CARET] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(2073), + [anon_sym_LT_DASH] = ACTIONS(2069), [anon_sym_LT_LT] = ACTIONS(3760), [anon_sym_GT_GT] = ACTIONS(3760), [anon_sym_GT_GT_GT] = ACTIONS(3760), @@ -138102,288 +138340,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3782), [anon_sym_PIPE_PIPE] = ACTIONS(3784), [anon_sym_or] = ACTIONS(3786), - [sym_none] = ACTIONS(2073), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_nil] = ACTIONS(2073), + [sym_none] = ACTIONS(2069), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_nil] = ACTIONS(2069), [anon_sym_QMARK_DOT] = ACTIONS(3750), [anon_sym_POUND_LBRACK] = ACTIONS(3776), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_DOLLARif] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_DOLLARif] = ACTIONS(2069), [anon_sym_is] = ACTIONS(3794), [anon_sym_BANGis] = ACTIONS(3794), [anon_sym_in] = ACTIONS(3790), [anon_sym_BANGin] = ACTIONS(3790), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_select] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_LT_LT_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2073), - [anon_sym_AMP_EQ] = ACTIONS(2073), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2073), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_PIPE_EQ] = ACTIONS(2073), - [anon_sym_CARET_EQ] = ACTIONS(2073), - [anon_sym_COLON_EQ] = ACTIONS(2073), - [anon_sym_lock] = ACTIONS(2073), - [anon_sym_rlock] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_sql] = ACTIONS(2073), - [sym_int_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_rune_literal] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_c_SQUOTE] = ACTIONS(2073), - [anon_sym_c_DQUOTE] = ACTIONS(2073), - [anon_sym_r_SQUOTE] = ACTIONS(2073), - [anon_sym_r_DQUOTE] = ACTIONS(2073), - [sym_pseudo_compile_time_identifier] = ACTIONS(2073), - [anon_sym_shared] = ACTIONS(2073), - [anon_sym_map_LBRACK] = ACTIONS(2073), - [anon_sym_chan] = ACTIONS(2073), - [anon_sym_thread] = ACTIONS(2073), - [anon_sym_atomic] = ACTIONS(2073), - [anon_sym_assert] = ACTIONS(2073), - [anon_sym_defer] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_DOLLARfor] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_asm] = ACTIONS(2073), - }, - [998] = { - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_CR] = ACTIONS(2331), - [anon_sym_CR_LF] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2331), - [anon_sym_LT_LT] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2331), - [anon_sym_AMP_CARET] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2331), - [anon_sym_POUND_LBRACK] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(3796), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2331), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_STAR_EQ] = ACTIONS(2331), - [anon_sym_SLASH_EQ] = ACTIONS(2331), - [anon_sym_PERCENT_EQ] = ACTIONS(2331), - [anon_sym_LT_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_GT_EQ] = ACTIONS(2331), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2331), - [anon_sym_AMP_EQ] = ACTIONS(2331), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2331), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_PIPE_EQ] = ACTIONS(2331), - [anon_sym_CARET_EQ] = ACTIONS(2331), - [anon_sym_COLON_EQ] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_rune_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_c_SQUOTE] = ACTIONS(2331), - [anon_sym_c_DQUOTE] = ACTIONS(2331), - [anon_sym_r_SQUOTE] = ACTIONS(2331), - [anon_sym_r_DQUOTE] = ACTIONS(2331), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2331), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), - [anon_sym_assert] = ACTIONS(2331), - [anon_sym_defer] = ACTIONS(2331), - [anon_sym_goto] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_DOLLARfor] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2331), - [anon_sym_asm] = ACTIONS(2331), - }, - [999] = { - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_COLON] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(3798), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_STAR_EQ] = ACTIONS(2139), - [anon_sym_SLASH_EQ] = ACTIONS(2139), - [anon_sym_PERCENT_EQ] = ACTIONS(2139), - [anon_sym_LT_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_AMP_EQ] = ACTIONS(2139), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), - [anon_sym_PLUS_EQ] = ACTIONS(2139), - [anon_sym_DASH_EQ] = ACTIONS(2139), - [anon_sym_PIPE_EQ] = ACTIONS(2139), - [anon_sym_CARET_EQ] = ACTIONS(2139), - [anon_sym_COLON_EQ] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), - }, - [1000] = { - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_STAR_EQ] = ACTIONS(2069), + [anon_sym_SLASH_EQ] = ACTIONS(2069), + [anon_sym_PERCENT_EQ] = ACTIONS(2069), + [anon_sym_LT_LT_EQ] = ACTIONS(2069), + [anon_sym_GT_GT_EQ] = ACTIONS(2069), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2069), + [anon_sym_AMP_EQ] = ACTIONS(2069), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2069), + [anon_sym_PLUS_EQ] = ACTIONS(2069), + [anon_sym_DASH_EQ] = ACTIONS(2069), + [anon_sym_PIPE_EQ] = ACTIONS(2069), + [anon_sym_CARET_EQ] = ACTIONS(2069), + [anon_sym_COLON_EQ] = ACTIONS(2069), + [anon_sym_lock] = ACTIONS(2069), + [anon_sym_rlock] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_sql] = ACTIONS(2069), + [sym_int_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_c_SQUOTE] = ACTIONS(2069), + [anon_sym_c_DQUOTE] = ACTIONS(2069), + [anon_sym_r_SQUOTE] = ACTIONS(2069), + [anon_sym_r_DQUOTE] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2069), + [anon_sym_shared] = ACTIONS(2069), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2069), + [anon_sym_thread] = ACTIONS(2069), + [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_defer] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_DOLLARfor] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_asm] = ACTIONS(2069), + }, + [998] = { + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), [sym_identifier] = ACTIONS(2093), [anon_sym_LF] = ACTIONS(2093), [anon_sym_CR] = ACTIONS(2093), @@ -138441,8 +138457,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2093), [anon_sym_POUND_LBRACK] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(3796), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2093), [anon_sym_in] = ACTIONS(2093), @@ -138492,1003 +138508,1335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2093), [anon_sym_asm] = ACTIONS(2093), }, + [999] = { + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_COLON] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(3798), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_STAR_EQ] = ACTIONS(2105), + [anon_sym_SLASH_EQ] = ACTIONS(2105), + [anon_sym_PERCENT_EQ] = ACTIONS(2105), + [anon_sym_LT_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_GT_EQ] = ACTIONS(2105), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), + [anon_sym_AMP_EQ] = ACTIONS(2105), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2105), + [anon_sym_PLUS_EQ] = ACTIONS(2105), + [anon_sym_DASH_EQ] = ACTIONS(2105), + [anon_sym_PIPE_EQ] = ACTIONS(2105), + [anon_sym_CARET_EQ] = ACTIONS(2105), + [anon_sym_COLON_EQ] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + }, + [1000] = { + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + }, [1001] = { [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_LT_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_AMP_EQ] = ACTIONS(2093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_PIPE_EQ] = ACTIONS(2093), - [anon_sym_CARET_EQ] = ACTIONS(2093), - [anon_sym_COLON_EQ] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), }, [1002] = { [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_COLON_EQ] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), + [anon_sym_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_EQ] = 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_mut] = ACTIONS(2169), + [anon_sym_COLON] = 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_PIPE] = 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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1003] = { [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), [sym_type_parameters] = STATE(1037), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_COLON] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_LT_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_AMP_EQ] = ACTIONS(2185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_PIPE_EQ] = ACTIONS(2185), - [anon_sym_CARET_EQ] = ACTIONS(2185), - [anon_sym_COLON_EQ] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_EQ] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_STAR_EQ] = ACTIONS(2187), + [anon_sym_SLASH_EQ] = ACTIONS(2187), + [anon_sym_PERCENT_EQ] = ACTIONS(2187), + [anon_sym_LT_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_AMP_EQ] = ACTIONS(2187), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2187), + [anon_sym_PLUS_EQ] = ACTIONS(2187), + [anon_sym_DASH_EQ] = ACTIONS(2187), + [anon_sym_PIPE_EQ] = ACTIONS(2187), + [anon_sym_CARET_EQ] = ACTIONS(2187), + [anon_sym_COLON_EQ] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), }, [1004] = { [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_COLON_EQ] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), + [anon_sym_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_EQ] = 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_mut] = ACTIONS(2169), + [anon_sym_COLON] = 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_PIPE] = 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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1005] = { [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_as] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_EQ] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2885), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2885), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_STAR_EQ] = ACTIONS(2885), - [anon_sym_SLASH_EQ] = ACTIONS(2885), - [anon_sym_PERCENT_EQ] = ACTIONS(2885), - [anon_sym_LT_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_GT_EQ] = ACTIONS(2885), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2885), - [anon_sym_AMP_EQ] = ACTIONS(2885), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2885), - [anon_sym_PLUS_EQ] = ACTIONS(2885), - [anon_sym_DASH_EQ] = ACTIONS(2885), - [anon_sym_PIPE_EQ] = ACTIONS(2885), - [anon_sym_CARET_EQ] = ACTIONS(2885), - [anon_sym_COLON_EQ] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), - [anon_sym_assert] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_DOLLARfor] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_EQ] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_COLON] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_STAR_EQ] = ACTIONS(2893), + [anon_sym_SLASH_EQ] = ACTIONS(2893), + [anon_sym_PERCENT_EQ] = ACTIONS(2893), + [anon_sym_LT_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_GT_EQ] = ACTIONS(2893), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2893), + [anon_sym_AMP_EQ] = ACTIONS(2893), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2893), + [anon_sym_PLUS_EQ] = ACTIONS(2893), + [anon_sym_DASH_EQ] = ACTIONS(2893), + [anon_sym_PIPE_EQ] = ACTIONS(2893), + [anon_sym_CARET_EQ] = ACTIONS(2893), + [anon_sym_COLON_EQ] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), }, [1006] = { [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LF] = ACTIONS(2373), - [anon_sym_CR] = ACTIONS(2373), - [anon_sym_CR_LF] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_EQ] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_PERCENT] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2373), - [anon_sym_BANG_EQ] = ACTIONS(2373), - [anon_sym_LT_EQ] = ACTIONS(2373), - [anon_sym_GT_EQ] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_COLON] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_QMARK] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_go] = ACTIONS(2373), - [anon_sym_spawn] = ACTIONS(2373), - [anon_sym_json_DOTdecode] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_LBRACK2] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_DASH] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_GT_GT] = ACTIONS(2373), - [anon_sym_GT_GT_GT] = ACTIONS(2373), - [anon_sym_AMP_CARET] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_PIPE_PIPE] = ACTIONS(2373), - [anon_sym_or] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_nil] = ACTIONS(2373), - [anon_sym_QMARK_DOT] = ACTIONS(2373), - [anon_sym_POUND_LBRACK] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2373), - [anon_sym_is] = ACTIONS(2373), - [anon_sym_BANGis] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_BANGin] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_select] = ACTIONS(2373), - [anon_sym_STAR_EQ] = ACTIONS(2373), - [anon_sym_SLASH_EQ] = ACTIONS(2373), - [anon_sym_PERCENT_EQ] = ACTIONS(2373), - [anon_sym_LT_LT_EQ] = ACTIONS(2373), - [anon_sym_GT_GT_EQ] = ACTIONS(2373), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2373), - [anon_sym_AMP_EQ] = ACTIONS(2373), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2373), - [anon_sym_PLUS_EQ] = ACTIONS(2373), - [anon_sym_DASH_EQ] = ACTIONS(2373), - [anon_sym_PIPE_EQ] = ACTIONS(2373), - [anon_sym_CARET_EQ] = ACTIONS(2373), - [anon_sym_COLON_EQ] = ACTIONS(2373), - [anon_sym_lock] = ACTIONS(2373), - [anon_sym_rlock] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_sql] = ACTIONS(2373), - [sym_int_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_rune_literal] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [anon_sym_c_SQUOTE] = ACTIONS(2373), - [anon_sym_c_DQUOTE] = ACTIONS(2373), - [anon_sym_r_SQUOTE] = ACTIONS(2373), - [anon_sym_r_DQUOTE] = ACTIONS(2373), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2373), - [anon_sym_map_LBRACK] = ACTIONS(2373), - [anon_sym_chan] = ACTIONS(2373), - [anon_sym_thread] = ACTIONS(2373), - [anon_sym_atomic] = ACTIONS(2373), - [anon_sym_assert] = ACTIONS(2373), - [anon_sym_defer] = ACTIONS(2373), - [anon_sym_goto] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_DOLLARfor] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2373), - [anon_sym_asm] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), }, [1007] = { [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2841), - [anon_sym_CR] = ACTIONS(2841), - [anon_sym_CR_LF] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2865), + [anon_sym_LF] = ACTIONS(2865), + [anon_sym_CR] = ACTIONS(2865), + [anon_sym_CR_LF] = ACTIONS(2865), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_as] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_COMMA] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_EQ] = ACTIONS(2841), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_PERCENT] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_EQ_EQ] = ACTIONS(2841), - [anon_sym_BANG_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_mut] = ACTIONS(2841), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_go] = ACTIONS(2841), - [anon_sym_spawn] = ACTIONS(2841), - [anon_sym_json_DOTdecode] = ACTIONS(2841), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK2] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_CARET] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_LT_DASH] = ACTIONS(2841), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(2841), - [anon_sym_GT_GT_GT] = ACTIONS(2841), - [anon_sym_AMP_CARET] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [sym_none] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_nil] = ACTIONS(2841), - [anon_sym_QMARK_DOT] = ACTIONS(2841), - [anon_sym_POUND_LBRACK] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_DOLLARif] = ACTIONS(2841), - [anon_sym_is] = ACTIONS(2841), - [anon_sym_BANGis] = ACTIONS(2841), - [anon_sym_in] = ACTIONS(2841), - [anon_sym_BANGin] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_select] = ACTIONS(2841), - [anon_sym_STAR_EQ] = ACTIONS(2841), - [anon_sym_SLASH_EQ] = ACTIONS(2841), - [anon_sym_PERCENT_EQ] = ACTIONS(2841), - [anon_sym_LT_LT_EQ] = ACTIONS(2841), - [anon_sym_GT_GT_EQ] = ACTIONS(2841), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2841), - [anon_sym_AMP_EQ] = ACTIONS(2841), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2841), - [anon_sym_PLUS_EQ] = ACTIONS(2841), - [anon_sym_DASH_EQ] = ACTIONS(2841), - [anon_sym_PIPE_EQ] = ACTIONS(2841), - [anon_sym_CARET_EQ] = ACTIONS(2841), - [anon_sym_COLON_EQ] = ACTIONS(2841), - [anon_sym_lock] = ACTIONS(2841), - [anon_sym_rlock] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_sql] = ACTIONS(2841), - [sym_int_literal] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(2841), - [sym_rune_literal] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [anon_sym_c_SQUOTE] = ACTIONS(2841), - [anon_sym_c_DQUOTE] = ACTIONS(2841), - [anon_sym_r_SQUOTE] = ACTIONS(2841), - [anon_sym_r_DQUOTE] = ACTIONS(2841), - [sym_pseudo_compile_time_identifier] = ACTIONS(2841), - [anon_sym_shared] = ACTIONS(2841), - [anon_sym_map_LBRACK] = ACTIONS(2841), - [anon_sym_chan] = ACTIONS(2841), - [anon_sym_thread] = ACTIONS(2841), - [anon_sym_atomic] = ACTIONS(2841), - [anon_sym_assert] = ACTIONS(2841), - [anon_sym_defer] = ACTIONS(2841), - [anon_sym_goto] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_DOLLARfor] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(2865), + [anon_sym_as] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_COMMA] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_EQ] = ACTIONS(2865), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PERCENT] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_EQ_EQ] = ACTIONS(2865), + [anon_sym_BANG_EQ] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_mut] = ACTIONS(2865), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_go] = ACTIONS(2865), + [anon_sym_spawn] = ACTIONS(2865), + [anon_sym_json_DOTdecode] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_LT_DASH] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2865), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2865), + [anon_sym_AMP_CARET] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_PIPE_PIPE] = ACTIONS(2865), + [anon_sym_or] = ACTIONS(2865), + [sym_none] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_nil] = ACTIONS(2865), + [anon_sym_QMARK_DOT] = ACTIONS(2865), + [anon_sym_POUND_LBRACK] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_DOLLARif] = ACTIONS(2865), + [anon_sym_is] = ACTIONS(2865), + [anon_sym_BANGis] = ACTIONS(2865), + [anon_sym_in] = ACTIONS(2865), + [anon_sym_BANGin] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_select] = ACTIONS(2865), + [anon_sym_STAR_EQ] = ACTIONS(2865), + [anon_sym_SLASH_EQ] = ACTIONS(2865), + [anon_sym_PERCENT_EQ] = ACTIONS(2865), + [anon_sym_LT_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_GT_EQ] = ACTIONS(2865), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2865), + [anon_sym_AMP_EQ] = ACTIONS(2865), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2865), + [anon_sym_PLUS_EQ] = ACTIONS(2865), + [anon_sym_DASH_EQ] = ACTIONS(2865), + [anon_sym_PIPE_EQ] = ACTIONS(2865), + [anon_sym_CARET_EQ] = ACTIONS(2865), + [anon_sym_COLON_EQ] = ACTIONS(2865), + [anon_sym_lock] = ACTIONS(2865), + [anon_sym_rlock] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_sql] = ACTIONS(2865), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2865), + [sym_rune_literal] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [anon_sym_c_SQUOTE] = ACTIONS(2865), + [anon_sym_c_DQUOTE] = ACTIONS(2865), + [anon_sym_r_SQUOTE] = ACTIONS(2865), + [anon_sym_r_DQUOTE] = ACTIONS(2865), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), + [anon_sym_shared] = ACTIONS(2865), + [anon_sym_map_LBRACK] = ACTIONS(2865), + [anon_sym_chan] = ACTIONS(2865), + [anon_sym_thread] = ACTIONS(2865), + [anon_sym_atomic] = ACTIONS(2865), + [anon_sym_assert] = ACTIONS(2865), + [anon_sym_defer] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_DOLLARfor] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2865), + [anon_sym_asm] = ACTIONS(2865), }, [1008] = { [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_COMMA] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_COLON] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2433), - [anon_sym_AMP_CARET] = ACTIONS(2433), - [anon_sym_AMP_AMP] = ACTIONS(2433), - [anon_sym_PIPE_PIPE] = ACTIONS(2433), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2433), - [anon_sym_POUND_LBRACK] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_COLON_EQ] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_COLON] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_STAR_EQ] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2401), + [anon_sym_PERCENT_EQ] = ACTIONS(2401), + [anon_sym_LT_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_AMP_EQ] = ACTIONS(2401), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2401), + [anon_sym_PLUS_EQ] = ACTIONS(2401), + [anon_sym_DASH_EQ] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2401), + [anon_sym_COLON_EQ] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), }, [1009] = { [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_STAR_EQ] = ACTIONS(2965), - [anon_sym_SLASH_EQ] = ACTIONS(2965), - [anon_sym_PERCENT_EQ] = ACTIONS(2965), - [anon_sym_LT_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_AMP_EQ] = ACTIONS(2965), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2965), - [anon_sym_PLUS_EQ] = ACTIONS(2965), - [anon_sym_DASH_EQ] = ACTIONS(2965), - [anon_sym_PIPE_EQ] = ACTIONS(2965), - [anon_sym_CARET_EQ] = ACTIONS(2965), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_c_SQUOTE] = ACTIONS(2965), - [anon_sym_c_DQUOTE] = ACTIONS(2965), - [anon_sym_r_SQUOTE] = ACTIONS(2965), - [anon_sym_r_DQUOTE] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_EQ] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_COLON] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_STAR_EQ] = ACTIONS(2957), + [anon_sym_SLASH_EQ] = ACTIONS(2957), + [anon_sym_PERCENT_EQ] = ACTIONS(2957), + [anon_sym_LT_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_GT_EQ] = ACTIONS(2957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2957), + [anon_sym_AMP_EQ] = ACTIONS(2957), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2957), + [anon_sym_PLUS_EQ] = ACTIONS(2957), + [anon_sym_DASH_EQ] = ACTIONS(2957), + [anon_sym_PIPE_EQ] = ACTIONS(2957), + [anon_sym_CARET_EQ] = ACTIONS(2957), + [anon_sym_COLON_EQ] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_defer] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_DOLLARfor] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), }, [1010] = { [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_COLON] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_STAR_EQ] = ACTIONS(2453), + [anon_sym_SLASH_EQ] = ACTIONS(2453), + [anon_sym_PERCENT_EQ] = ACTIONS(2453), + [anon_sym_LT_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_GT_EQ] = ACTIONS(2453), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2453), + [anon_sym_AMP_EQ] = ACTIONS(2453), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(2453), + [anon_sym_DASH_EQ] = ACTIONS(2453), + [anon_sym_PIPE_EQ] = ACTIONS(2453), + [anon_sym_CARET_EQ] = ACTIONS(2453), + [anon_sym_COLON_EQ] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + }, + [1011] = { + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), [sym_identifier] = ACTIONS(2335), [anon_sym_LF] = ACTIONS(2335), [anon_sym_CR] = ACTIONS(2335), @@ -139596,229 +139944,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2335), [anon_sym_asm] = ACTIONS(2335), }, - [1011] = { - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_EQ] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_COLON] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_STAR_EQ] = ACTIONS(2837), - [anon_sym_SLASH_EQ] = ACTIONS(2837), - [anon_sym_PERCENT_EQ] = ACTIONS(2837), - [anon_sym_LT_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_GT_EQ] = ACTIONS(2837), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2837), - [anon_sym_AMP_EQ] = ACTIONS(2837), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2837), - [anon_sym_PLUS_EQ] = ACTIONS(2837), - [anon_sym_DASH_EQ] = ACTIONS(2837), - [anon_sym_PIPE_EQ] = ACTIONS(2837), - [anon_sym_CARET_EQ] = ACTIONS(2837), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_defer] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_DOLLARfor] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_asm] = ACTIONS(2837), - }, [1012] = { [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [sym_identifier] = ACTIONS(2827), - [anon_sym_LF] = ACTIONS(2827), - [anon_sym_CR] = ACTIONS(2827), - [anon_sym_CR_LF] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_COLON] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_CARET] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_AMP_CARET] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2827), - [anon_sym_POUND_LBRACK] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_STAR_EQ] = ACTIONS(2827), - [anon_sym_SLASH_EQ] = ACTIONS(2827), - [anon_sym_PERCENT_EQ] = ACTIONS(2827), - [anon_sym_LT_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_GT_EQ] = ACTIONS(2827), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2827), - [anon_sym_AMP_EQ] = ACTIONS(2827), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2827), - [anon_sym_PLUS_EQ] = ACTIONS(2827), - [anon_sym_DASH_EQ] = ACTIONS(2827), - [anon_sym_PIPE_EQ] = ACTIONS(2827), - [anon_sym_CARET_EQ] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - [sym_rune_literal] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_c_SQUOTE] = ACTIONS(2827), - [anon_sym_c_DQUOTE] = ACTIONS(2827), - [anon_sym_r_SQUOTE] = ACTIONS(2827), - [anon_sym_r_DQUOTE] = ACTIONS(2827), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2827), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), - [anon_sym_assert] = ACTIONS(2827), - [anon_sym_defer] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_DOLLARfor] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), }, [1013] = { [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_STAR_EQ] = ACTIONS(2829), + [anon_sym_SLASH_EQ] = ACTIONS(2829), + [anon_sym_PERCENT_EQ] = ACTIONS(2829), + [anon_sym_LT_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_AMP_EQ] = ACTIONS(2829), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2829), + [anon_sym_PLUS_EQ] = ACTIONS(2829), + [anon_sym_DASH_EQ] = ACTIONS(2829), + [anon_sym_PIPE_EQ] = ACTIONS(2829), + [anon_sym_CARET_EQ] = ACTIONS(2829), + [anon_sym_COLON_EQ] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_c_SQUOTE] = ACTIONS(2829), + [anon_sym_c_DQUOTE] = ACTIONS(2829), + [anon_sym_r_SQUOTE] = ACTIONS(2829), + [anon_sym_r_DQUOTE] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), [sym_identifier] = ACTIONS(2823), [anon_sym_LF] = ACTIONS(2823), [anon_sym_CR] = ACTIONS(2823), @@ -139926,9 +140274,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2823), [anon_sym_asm] = ACTIONS(2823), }, - [1014] = { - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), + [1015] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), [sym_identifier] = ACTIONS(2819), [anon_sym_LF] = ACTIONS(2819), [anon_sym_CR] = ACTIONS(2819), @@ -140036,9 +140384,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2819), [anon_sym_asm] = ACTIONS(2819), }, - [1015] = { - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), + [1016] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), [sym_identifier] = ACTIONS(2659), [anon_sym_LF] = ACTIONS(2659), [anon_sym_CR] = ACTIONS(2659), @@ -140146,9 +140494,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2659), [anon_sym_asm] = ACTIONS(2659), }, - [1016] = { - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), + [1017] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), [sym_identifier] = ACTIONS(2655), [anon_sym_LF] = ACTIONS(2655), [anon_sym_CR] = ACTIONS(2655), @@ -140256,1787 +140604,2227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2655), [anon_sym_asm] = ACTIONS(2655), }, - [1017] = { - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [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(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [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(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_STAR_EQ] = ACTIONS(2447), - [anon_sym_SLASH_EQ] = ACTIONS(2447), - [anon_sym_PERCENT_EQ] = ACTIONS(2447), - [anon_sym_LT_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_GT_EQ] = ACTIONS(2447), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2447), - [anon_sym_AMP_EQ] = ACTIONS(2447), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2447), - [anon_sym_PLUS_EQ] = ACTIONS(2447), - [anon_sym_DASH_EQ] = ACTIONS(2447), - [anon_sym_PIPE_EQ] = ACTIONS(2447), - [anon_sym_CARET_EQ] = ACTIONS(2447), - [anon_sym_COLON_EQ] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), - }, [1018] = { [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_CR] = ACTIONS(2953), - [anon_sym_CR_LF] = ACTIONS(2953), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_STAR_EQ] = ACTIONS(2953), - [anon_sym_SLASH_EQ] = ACTIONS(2953), - [anon_sym_PERCENT_EQ] = ACTIONS(2953), - [anon_sym_LT_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_GT_EQ] = ACTIONS(2953), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2953), - [anon_sym_AMP_EQ] = ACTIONS(2953), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2953), - [anon_sym_PLUS_EQ] = ACTIONS(2953), - [anon_sym_DASH_EQ] = ACTIONS(2953), - [anon_sym_PIPE_EQ] = ACTIONS(2953), - [anon_sym_CARET_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_c_SQUOTE] = ACTIONS(2953), - [anon_sym_c_DQUOTE] = ACTIONS(2953), - [anon_sym_r_SQUOTE] = ACTIONS(2953), - [anon_sym_r_DQUOTE] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_defer] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_DOLLARfor] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_POUND] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_STAR_EQ] = ACTIONS(3035), + [anon_sym_SLASH_EQ] = ACTIONS(3035), + [anon_sym_PERCENT_EQ] = ACTIONS(3035), + [anon_sym_LT_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_AMP_EQ] = ACTIONS(3035), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3035), + [anon_sym_PLUS_EQ] = ACTIONS(3035), + [anon_sym_DASH_EQ] = ACTIONS(3035), + [anon_sym_PIPE_EQ] = ACTIONS(3035), + [anon_sym_CARET_EQ] = ACTIONS(3035), + [anon_sym_COLON_EQ] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_c_SQUOTE] = ACTIONS(3035), + [anon_sym_c_DQUOTE] = ACTIONS(3035), + [anon_sym_r_SQUOTE] = ACTIONS(3035), + [anon_sym_r_DQUOTE] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_defer] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_DOLLARfor] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), }, [1019] = { [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_LT_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_AMP_EQ] = ACTIONS(3031), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_PIPE_EQ] = ACTIONS(3031), - [anon_sym_CARET_EQ] = ACTIONS(3031), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), }, [1020] = { [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_EQ] = 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_mut] = ACTIONS(2473), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_LT_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_AMP_EQ] = ACTIONS(3045), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_PIPE_EQ] = ACTIONS(3045), + [anon_sym_CARET_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), }, [1021] = { [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_EQ] = 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_mut] = ACTIONS(2173), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_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_EQ] = 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_mut] = ACTIONS(2471), + [anon_sym_COLON] = 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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_STAR_EQ] = ACTIONS(2471), + [anon_sym_SLASH_EQ] = ACTIONS(2471), + [anon_sym_PERCENT_EQ] = ACTIONS(2471), + [anon_sym_LT_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2471), + [anon_sym_AMP_EQ] = ACTIONS(2471), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2471), + [anon_sym_PLUS_EQ] = ACTIONS(2471), + [anon_sym_DASH_EQ] = ACTIONS(2471), + [anon_sym_PIPE_EQ] = ACTIONS(2471), + [anon_sym_CARET_EQ] = ACTIONS(2471), + [anon_sym_COLON_EQ] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_c_SQUOTE] = ACTIONS(2471), + [anon_sym_c_DQUOTE] = ACTIONS(2471), + [anon_sym_r_SQUOTE] = ACTIONS(2471), + [anon_sym_r_DQUOTE] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), }, [1022] = { [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_CR] = ACTIONS(2419), - [anon_sym_CR_LF] = ACTIONS(2419), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3069), + [anon_sym_CR] = ACTIONS(3069), + [anon_sym_CR_LF] = ACTIONS(3069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2419), - [anon_sym_BANG_EQ] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_EQ] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_COLON] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2419), - [anon_sym_LT_LT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2419), - [anon_sym_AMP_CARET] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2419), - [anon_sym_POUND_LBRACK] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_STAR_EQ] = ACTIONS(2419), - [anon_sym_SLASH_EQ] = ACTIONS(2419), - [anon_sym_PERCENT_EQ] = ACTIONS(2419), - [anon_sym_LT_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_GT_EQ] = ACTIONS(2419), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2419), - [anon_sym_AMP_EQ] = ACTIONS(2419), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2419), - [anon_sym_PLUS_EQ] = ACTIONS(2419), - [anon_sym_DASH_EQ] = ACTIONS(2419), - [anon_sym_PIPE_EQ] = ACTIONS(2419), - [anon_sym_CARET_EQ] = ACTIONS(2419), - [anon_sym_COLON_EQ] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_rune_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_c_SQUOTE] = ACTIONS(2419), - [anon_sym_c_DQUOTE] = ACTIONS(2419), - [anon_sym_r_SQUOTE] = ACTIONS(2419), - [anon_sym_r_DQUOTE] = ACTIONS(2419), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2419), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), - [anon_sym_assert] = ACTIONS(2419), - [anon_sym_defer] = ACTIONS(2419), - [anon_sym_goto] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_DOLLARfor] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2419), - [anon_sym_asm] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3069), + [anon_sym_DASH_DASH] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_CARET] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3069), + [anon_sym_POUND_LBRACK] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3069), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_STAR_EQ] = ACTIONS(3069), + [anon_sym_SLASH_EQ] = ACTIONS(3069), + [anon_sym_PERCENT_EQ] = ACTIONS(3069), + [anon_sym_LT_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_GT_EQ] = ACTIONS(3069), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3069), + [anon_sym_AMP_EQ] = ACTIONS(3069), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3069), + [anon_sym_PLUS_EQ] = ACTIONS(3069), + [anon_sym_DASH_EQ] = ACTIONS(3069), + [anon_sym_PIPE_EQ] = ACTIONS(3069), + [anon_sym_CARET_EQ] = ACTIONS(3069), + [anon_sym_COLON_EQ] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), + [sym_rune_literal] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_c_SQUOTE] = ACTIONS(3069), + [anon_sym_c_DQUOTE] = ACTIONS(3069), + [anon_sym_r_SQUOTE] = ACTIONS(3069), + [anon_sym_r_DQUOTE] = ACTIONS(3069), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3069), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_goto] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_DOLLARfor] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3069), + [anon_sym_asm] = ACTIONS(3069), }, [1023] = { [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LF] = ACTIONS(3039), - [anon_sym_CR] = ACTIONS(3039), - [anon_sym_CR_LF] = ACTIONS(3039), + [sym_identifier] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2435), + [anon_sym_CR] = ACTIONS(2435), + [anon_sym_CR_LF] = ACTIONS(2435), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_STAR_EQ] = ACTIONS(3039), - [anon_sym_SLASH_EQ] = ACTIONS(3039), - [anon_sym_PERCENT_EQ] = ACTIONS(3039), - [anon_sym_LT_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_GT_EQ] = ACTIONS(3039), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3039), - [anon_sym_AMP_EQ] = ACTIONS(3039), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3039), - [anon_sym_PLUS_EQ] = ACTIONS(3039), - [anon_sym_DASH_EQ] = ACTIONS(3039), - [anon_sym_PIPE_EQ] = ACTIONS(3039), - [anon_sym_CARET_EQ] = ACTIONS(3039), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [anon_sym_c_SQUOTE] = ACTIONS(3039), - [anon_sym_c_DQUOTE] = ACTIONS(3039), - [anon_sym_r_SQUOTE] = ACTIONS(3039), - [anon_sym_r_DQUOTE] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), - [anon_sym_assert] = ACTIONS(3039), - [anon_sym_defer] = ACTIONS(3039), - [anon_sym_goto] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_DOLLARfor] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_asm] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2435), + [anon_sym_LT_LT] = ACTIONS(2435), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2435), + [anon_sym_AMP_CARET] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2435), + [anon_sym_POUND_LBRACK] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_STAR_EQ] = ACTIONS(2435), + [anon_sym_SLASH_EQ] = ACTIONS(2435), + [anon_sym_PERCENT_EQ] = ACTIONS(2435), + [anon_sym_LT_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_GT_EQ] = ACTIONS(2435), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2435), + [anon_sym_AMP_EQ] = ACTIONS(2435), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2435), + [anon_sym_DASH_EQ] = ACTIONS(2435), + [anon_sym_PIPE_EQ] = ACTIONS(2435), + [anon_sym_CARET_EQ] = ACTIONS(2435), + [anon_sym_COLON_EQ] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_rune_literal] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_c_SQUOTE] = ACTIONS(2435), + [anon_sym_c_DQUOTE] = ACTIONS(2435), + [anon_sym_r_SQUOTE] = ACTIONS(2435), + [anon_sym_r_DQUOTE] = ACTIONS(2435), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2435), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), + [anon_sym_assert] = ACTIONS(2435), + [anon_sym_defer] = ACTIONS(2435), + [anon_sym_goto] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_DOLLARfor] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_asm] = ACTIONS(2435), }, [1024] = { [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_CR] = ACTIONS(2393), - [anon_sym_CR_LF] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_EQ] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2393), - [anon_sym_BANG_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_COLON] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [anon_sym_CARET] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2393), - [anon_sym_AMP_CARET] = ACTIONS(2393), - [anon_sym_AMP_AMP] = ACTIONS(2393), - [anon_sym_PIPE_PIPE] = ACTIONS(2393), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2393), - [anon_sym_POUND_LBRACK] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_STAR_EQ] = ACTIONS(2393), - [anon_sym_SLASH_EQ] = ACTIONS(2393), - [anon_sym_PERCENT_EQ] = ACTIONS(2393), - [anon_sym_LT_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_GT_EQ] = ACTIONS(2393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2393), - [anon_sym_AMP_EQ] = ACTIONS(2393), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2393), - [anon_sym_PLUS_EQ] = ACTIONS(2393), - [anon_sym_DASH_EQ] = ACTIONS(2393), - [anon_sym_PIPE_EQ] = ACTIONS(2393), - [anon_sym_CARET_EQ] = ACTIONS(2393), - [anon_sym_COLON_EQ] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_rune_literal] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [anon_sym_c_SQUOTE] = ACTIONS(2393), - [anon_sym_c_DQUOTE] = ACTIONS(2393), - [anon_sym_r_SQUOTE] = ACTIONS(2393), - [anon_sym_r_DQUOTE] = ACTIONS(2393), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2393), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), - [anon_sym_assert] = ACTIONS(2393), - [anon_sym_defer] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_DOLLARfor] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_asm] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_EQ] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_STAR_EQ] = ACTIONS(2457), + [anon_sym_SLASH_EQ] = ACTIONS(2457), + [anon_sym_PERCENT_EQ] = ACTIONS(2457), + [anon_sym_LT_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_AMP_EQ] = ACTIONS(2457), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2457), + [anon_sym_PLUS_EQ] = ACTIONS(2457), + [anon_sym_DASH_EQ] = ACTIONS(2457), + [anon_sym_PIPE_EQ] = ACTIONS(2457), + [anon_sym_CARET_EQ] = ACTIONS(2457), + [anon_sym_COLON_EQ] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), }, [1025] = { [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2397), + [anon_sym_CR] = ACTIONS(2397), + [anon_sym_CR_LF] = ACTIONS(2397), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_GT_GT_GT] = ACTIONS(2451), - [anon_sym_AMP_CARET] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_or] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2451), - [anon_sym_POUND_LBRACK] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_STAR_EQ] = ACTIONS(2451), - [anon_sym_SLASH_EQ] = ACTIONS(2451), - [anon_sym_PERCENT_EQ] = ACTIONS(2451), - [anon_sym_LT_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_GT_EQ] = ACTIONS(2451), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2451), - [anon_sym_AMP_EQ] = ACTIONS(2451), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2451), - [anon_sym_PLUS_EQ] = ACTIONS(2451), - [anon_sym_DASH_EQ] = ACTIONS(2451), - [anon_sym_PIPE_EQ] = ACTIONS(2451), - [anon_sym_CARET_EQ] = ACTIONS(2451), - [anon_sym_COLON_EQ] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2397), + [anon_sym_AMP_CARET] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2397), + [anon_sym_POUND_LBRACK] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_STAR_EQ] = ACTIONS(2397), + [anon_sym_SLASH_EQ] = ACTIONS(2397), + [anon_sym_PERCENT_EQ] = ACTIONS(2397), + [anon_sym_LT_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_GT_EQ] = ACTIONS(2397), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2397), + [anon_sym_AMP_EQ] = ACTIONS(2397), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2397), + [anon_sym_PLUS_EQ] = ACTIONS(2397), + [anon_sym_DASH_EQ] = ACTIONS(2397), + [anon_sym_PIPE_EQ] = ACTIONS(2397), + [anon_sym_CARET_EQ] = ACTIONS(2397), + [anon_sym_COLON_EQ] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_rune_literal] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_c_SQUOTE] = ACTIONS(2397), + [anon_sym_c_DQUOTE] = ACTIONS(2397), + [anon_sym_r_SQUOTE] = ACTIONS(2397), + [anon_sym_r_DQUOTE] = ACTIONS(2397), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), + [anon_sym_assert] = ACTIONS(2397), + [anon_sym_defer] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_DOLLARfor] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_asm] = ACTIONS(2397), }, [1026] = { [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_STAR_EQ] = ACTIONS(2465), - [anon_sym_SLASH_EQ] = ACTIONS(2465), - [anon_sym_PERCENT_EQ] = ACTIONS(2465), - [anon_sym_LT_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_AMP_EQ] = ACTIONS(2465), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2465), - [anon_sym_PLUS_EQ] = ACTIONS(2465), - [anon_sym_DASH_EQ] = ACTIONS(2465), - [anon_sym_PIPE_EQ] = ACTIONS(2465), - [anon_sym_CARET_EQ] = ACTIONS(2465), - [anon_sym_COLON_EQ] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_EQ] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_STAR_EQ] = ACTIONS(2373), + [anon_sym_SLASH_EQ] = ACTIONS(2373), + [anon_sym_PERCENT_EQ] = ACTIONS(2373), + [anon_sym_LT_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_AMP_EQ] = ACTIONS(2373), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2373), + [anon_sym_PLUS_EQ] = ACTIONS(2373), + [anon_sym_DASH_EQ] = ACTIONS(2373), + [anon_sym_PIPE_EQ] = ACTIONS(2373), + [anon_sym_CARET_EQ] = ACTIONS(2373), + [anon_sym_COLON_EQ] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), }, [1027] = { [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_STAR_EQ] = ACTIONS(3031), - [anon_sym_SLASH_EQ] = ACTIONS(3031), - [anon_sym_PERCENT_EQ] = ACTIONS(3031), - [anon_sym_LT_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3031), - [anon_sym_AMP_EQ] = ACTIONS(3031), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3031), - [anon_sym_PLUS_EQ] = ACTIONS(3031), - [anon_sym_DASH_EQ] = ACTIONS(3031), - [anon_sym_PIPE_EQ] = ACTIONS(3031), - [anon_sym_CARET_EQ] = ACTIONS(3031), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_STAR_EQ] = ACTIONS(3045), + [anon_sym_SLASH_EQ] = ACTIONS(3045), + [anon_sym_PERCENT_EQ] = ACTIONS(3045), + [anon_sym_LT_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), + [anon_sym_AMP_EQ] = ACTIONS(3045), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), + [anon_sym_PLUS_EQ] = ACTIONS(3045), + [anon_sym_DASH_EQ] = ACTIONS(3045), + [anon_sym_PIPE_EQ] = ACTIONS(3045), + [anon_sym_CARET_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), }, [1028] = { [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_EQ] = 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(2178), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), }, [1029] = { [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_COLON] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_STAR_EQ] = ACTIONS(2423), - [anon_sym_SLASH_EQ] = ACTIONS(2423), - [anon_sym_PERCENT_EQ] = ACTIONS(2423), - [anon_sym_LT_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_AMP_EQ] = ACTIONS(2423), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(2423), - [anon_sym_DASH_EQ] = ACTIONS(2423), - [anon_sym_PIPE_EQ] = ACTIONS(2423), - [anon_sym_CARET_EQ] = ACTIONS(2423), - [anon_sym_COLON_EQ] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(3800), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), }, [1030] = { [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_CR] = ACTIONS(2429), + [anon_sym_CR_LF] = ACTIONS(2429), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_COLON] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_STAR_EQ] = ACTIONS(2437), - [anon_sym_SLASH_EQ] = ACTIONS(2437), - [anon_sym_PERCENT_EQ] = ACTIONS(2437), - [anon_sym_LT_LT_EQ] = ACTIONS(2437), - [anon_sym_GT_GT_EQ] = ACTIONS(2437), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2437), - [anon_sym_AMP_EQ] = ACTIONS(2437), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2437), - [anon_sym_PLUS_EQ] = ACTIONS(2437), - [anon_sym_DASH_EQ] = ACTIONS(2437), - [anon_sym_PIPE_EQ] = ACTIONS(2437), - [anon_sym_CARET_EQ] = ACTIONS(2437), - [anon_sym_COLON_EQ] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_COLON] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_COLON_EQ] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + [anon_sym_assert] = ACTIONS(2429), + [anon_sym_defer] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_DOLLARfor] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2429), + [anon_sym_asm] = ACTIONS(2429), }, [1031] = { [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_EQ] = 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(2178), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = ACTIONS(3800), - [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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1032] = { [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3340), - [anon_sym_AMP_CARET] = ACTIONS(3340), - [anon_sym_AMP_AMP] = ACTIONS(3340), - [anon_sym_PIPE_PIPE] = ACTIONS(3340), - [anon_sym_or] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_STAR_EQ] = ACTIONS(3340), - [anon_sym_SLASH_EQ] = ACTIONS(3340), - [anon_sym_PERCENT_EQ] = ACTIONS(3340), - [anon_sym_LT_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_GT_EQ] = ACTIONS(3340), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3340), - [anon_sym_AMP_EQ] = ACTIONS(3340), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3340), - [anon_sym_PLUS_EQ] = ACTIONS(3340), - [anon_sym_DASH_EQ] = ACTIONS(3340), - [anon_sym_PIPE_EQ] = ACTIONS(3340), - [anon_sym_CARET_EQ] = ACTIONS(3340), - [anon_sym_COLON_EQ] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_c_SQUOTE] = ACTIONS(3340), - [anon_sym_c_DQUOTE] = ACTIONS(3340), - [anon_sym_r_SQUOTE] = ACTIONS(3340), - [anon_sym_r_DQUOTE] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - }, - [1033] = { - [sym_line_comment] = STATE(1033), - [sym_block_comment] = STATE(1033), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_COLON] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_STAR_EQ] = ACTIONS(3328), + [anon_sym_SLASH_EQ] = ACTIONS(3328), + [anon_sym_PERCENT_EQ] = ACTIONS(3328), + [anon_sym_LT_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_GT_EQ] = ACTIONS(3328), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3328), + [anon_sym_AMP_EQ] = ACTIONS(3328), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3328), + [anon_sym_PLUS_EQ] = ACTIONS(3328), + [anon_sym_DASH_EQ] = ACTIONS(3328), + [anon_sym_PIPE_EQ] = ACTIONS(3328), + [anon_sym_CARET_EQ] = ACTIONS(3328), + [anon_sym_COLON_EQ] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3328), + [anon_sym_r_SQUOTE] = ACTIONS(3328), + [anon_sym_r_DQUOTE] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_defer] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_DOLLARfor] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + }, + [1033] = { + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LF] = ACTIONS(3286), + [anon_sym_CR] = ACTIONS(3286), + [anon_sym_CR_LF] = ACTIONS(3286), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_COLON] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_QMARK] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_go] = ACTIONS(3286), + [anon_sym_spawn] = ACTIONS(3286), + [anon_sym_json_DOTdecode] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LBRACK2] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_LT_DASH] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_or] = ACTIONS(3286), + [sym_none] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_nil] = ACTIONS(3286), + [anon_sym_QMARK_DOT] = ACTIONS(3286), + [anon_sym_POUND_LBRACK] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_DOLLARif] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_select] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_LT_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_GT_EQ] = ACTIONS(3286), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3286), + [anon_sym_AMP_EQ] = ACTIONS(3286), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_PIPE_EQ] = ACTIONS(3286), + [anon_sym_CARET_EQ] = ACTIONS(3286), + [anon_sym_COLON_EQ] = ACTIONS(3286), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3286), + [anon_sym_sql] = ACTIONS(3286), + [sym_int_literal] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3286), + [sym_rune_literal] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_c_SQUOTE] = ACTIONS(3286), + [anon_sym_c_DQUOTE] = ACTIONS(3286), + [anon_sym_r_SQUOTE] = ACTIONS(3286), + [anon_sym_r_DQUOTE] = ACTIONS(3286), + [sym_pseudo_compile_time_identifier] = ACTIONS(3286), + [anon_sym_shared] = ACTIONS(3286), + [anon_sym_map_LBRACK] = ACTIONS(3286), + [anon_sym_chan] = ACTIONS(3286), + [anon_sym_thread] = ACTIONS(3286), + [anon_sym_atomic] = ACTIONS(3286), + [anon_sym_assert] = ACTIONS(3286), + [anon_sym_defer] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_DOLLARfor] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + }, + [1034] = { + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_CR] = ACTIONS(2377), + [anon_sym_CR_LF] = ACTIONS(2377), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_COLON] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_STAR_EQ] = ACTIONS(2377), + [anon_sym_SLASH_EQ] = ACTIONS(2377), + [anon_sym_PERCENT_EQ] = ACTIONS(2377), + [anon_sym_LT_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_GT_EQ] = ACTIONS(2377), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2377), + [anon_sym_AMP_EQ] = ACTIONS(2377), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2377), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_PIPE_EQ] = ACTIONS(2377), + [anon_sym_CARET_EQ] = ACTIONS(2377), + [anon_sym_COLON_EQ] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2377), + [anon_sym_defer] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_DOLLARfor] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + }, + [1035] = { + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3280), + [anon_sym_CR] = ACTIONS(3280), + [anon_sym_CR_LF] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_EQ] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3280), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3280), + [anon_sym_AMP_CARET] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3280), + [anon_sym_POUND_LBRACK] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_STAR_EQ] = ACTIONS(3280), + [anon_sym_SLASH_EQ] = ACTIONS(3280), + [anon_sym_PERCENT_EQ] = ACTIONS(3280), + [anon_sym_LT_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_GT_EQ] = ACTIONS(3280), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3280), + [anon_sym_AMP_EQ] = ACTIONS(3280), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3280), + [anon_sym_PLUS_EQ] = ACTIONS(3280), + [anon_sym_DASH_EQ] = ACTIONS(3280), + [anon_sym_PIPE_EQ] = ACTIONS(3280), + [anon_sym_CARET_EQ] = ACTIONS(3280), + [anon_sym_COLON_EQ] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3280), + [sym_rune_literal] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_c_SQUOTE] = ACTIONS(3280), + [anon_sym_c_DQUOTE] = ACTIONS(3280), + [anon_sym_r_SQUOTE] = ACTIONS(3280), + [anon_sym_r_DQUOTE] = ACTIONS(3280), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3280), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), + [anon_sym_assert] = ACTIONS(3280), + [anon_sym_defer] = ACTIONS(3280), + [anon_sym_goto] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_DOLLARfor] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3280), + [anon_sym_asm] = ACTIONS(3280), + }, + [1036] = { + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LF] = ACTIONS(2951), + [anon_sym_CR] = ACTIONS(2951), + [anon_sym_CR_LF] = ACTIONS(2951), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_STAR_EQ] = ACTIONS(2951), + [anon_sym_SLASH_EQ] = ACTIONS(2951), + [anon_sym_PERCENT_EQ] = ACTIONS(2951), + [anon_sym_LT_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_GT_EQ] = ACTIONS(2951), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), + [anon_sym_AMP_EQ] = ACTIONS(2951), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), + [anon_sym_PLUS_EQ] = ACTIONS(2951), + [anon_sym_DASH_EQ] = ACTIONS(2951), + [anon_sym_PIPE_EQ] = ACTIONS(2951), + [anon_sym_CARET_EQ] = ACTIONS(2951), + [anon_sym_COLON_EQ] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_c_SQUOTE] = ACTIONS(2951), + [anon_sym_c_DQUOTE] = ACTIONS(2951), + [anon_sym_r_SQUOTE] = ACTIONS(2951), + [anon_sym_r_DQUOTE] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), + [anon_sym_assert] = ACTIONS(2951), + [anon_sym_defer] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_DOLLARfor] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), + }, + [1037] = { + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_as] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_PERCENT] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_BANG_EQ] = ACTIONS(2841), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_mut] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_QMARK] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_go] = ACTIONS(2841), + [anon_sym_spawn] = ACTIONS(2841), + [anon_sym_json_DOTdecode] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_LT_DASH] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_GT_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_CARET] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_or] = ACTIONS(2841), + [sym_none] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_nil] = ACTIONS(2841), + [anon_sym_QMARK_DOT] = ACTIONS(2841), + [anon_sym_POUND_LBRACK] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_DOLLARif] = ACTIONS(2841), + [anon_sym_is] = ACTIONS(2841), + [anon_sym_BANGis] = ACTIONS(2841), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_BANGin] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_select] = ACTIONS(2841), + [anon_sym_STAR_EQ] = ACTIONS(2841), + [anon_sym_SLASH_EQ] = ACTIONS(2841), + [anon_sym_PERCENT_EQ] = ACTIONS(2841), + [anon_sym_LT_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_GT_EQ] = ACTIONS(2841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2841), + [anon_sym_AMP_EQ] = ACTIONS(2841), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2841), + [anon_sym_PLUS_EQ] = ACTIONS(2841), + [anon_sym_DASH_EQ] = ACTIONS(2841), + [anon_sym_PIPE_EQ] = ACTIONS(2841), + [anon_sym_CARET_EQ] = ACTIONS(2841), + [anon_sym_COLON_EQ] = ACTIONS(2841), + [anon_sym_lock] = ACTIONS(2841), + [anon_sym_rlock] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_sql] = ACTIONS(2841), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), + [sym_rune_literal] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_c_SQUOTE] = ACTIONS(2841), + [anon_sym_c_DQUOTE] = ACTIONS(2841), + [anon_sym_r_SQUOTE] = ACTIONS(2841), + [anon_sym_r_DQUOTE] = ACTIONS(2841), + [sym_pseudo_compile_time_identifier] = ACTIONS(2841), + [anon_sym_shared] = ACTIONS(2841), + [anon_sym_map_LBRACK] = ACTIONS(2841), + [anon_sym_chan] = ACTIONS(2841), + [anon_sym_thread] = ACTIONS(2841), + [anon_sym_atomic] = ACTIONS(2841), + [anon_sym_assert] = ACTIONS(2841), + [anon_sym_defer] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_DOLLARfor] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2841), + }, + [1038] = { + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2147), [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), [anon_sym_EQ] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), [anon_sym_SLASH] = ACTIONS(2335), [anon_sym_PERCENT] = ACTIONS(2335), [anon_sym_LT] = ACTIONS(2335), @@ -142046,22 +142834,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(2335), [anon_sym_GT_EQ] = ACTIONS(2335), [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), [anon_sym_COLON] = ACTIONS(2335), [anon_sym_PLUS_PLUS] = ACTIONS(2335), [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), [anon_sym_LT_LT] = ACTIONS(2335), [anon_sym_GT_GT] = ACTIONS(2335), [anon_sym_GT_GT_GT] = ACTIONS(2335), @@ -142069,20 +142857,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(2335), [anon_sym_PIPE_PIPE] = ACTIONS(2335), [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), [anon_sym_QMARK_DOT] = ACTIONS(2335), [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), [anon_sym_is] = ACTIONS(2335), [anon_sym_BANGis] = ACTIONS(2335), [anon_sym_in] = ACTIONS(2335), [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), [anon_sym_STAR_EQ] = ACTIONS(2335), [anon_sym_SLASH_EQ] = ACTIONS(2335), [anon_sym_PERCENT_EQ] = ACTIONS(2335), @@ -142096,809 +142884,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(2335), [anon_sym_CARET_EQ] = ACTIONS(2335), [anon_sym_COLON_EQ] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - }, - [1034] = { - [sym_line_comment] = STATE(1034), - [sym_block_comment] = STATE(1034), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LF] = ACTIONS(3294), - [anon_sym_CR] = ACTIONS(3294), - [anon_sym_CR_LF] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COMMA] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_EQ] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_COLON] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_CARET] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3294), - [anon_sym_LT_LT] = ACTIONS(3294), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3294), - [anon_sym_AMP_CARET] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3294), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3294), - [anon_sym_POUND_LBRACK] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_STAR_EQ] = ACTIONS(3294), - [anon_sym_SLASH_EQ] = ACTIONS(3294), - [anon_sym_PERCENT_EQ] = ACTIONS(3294), - [anon_sym_LT_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_GT_EQ] = ACTIONS(3294), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3294), - [anon_sym_AMP_EQ] = ACTIONS(3294), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3294), - [anon_sym_PLUS_EQ] = ACTIONS(3294), - [anon_sym_DASH_EQ] = ACTIONS(3294), - [anon_sym_PIPE_EQ] = ACTIONS(3294), - [anon_sym_CARET_EQ] = ACTIONS(3294), - [anon_sym_COLON_EQ] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3294), - [sym_rune_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_c_SQUOTE] = ACTIONS(3294), - [anon_sym_c_DQUOTE] = ACTIONS(3294), - [anon_sym_r_SQUOTE] = ACTIONS(3294), - [anon_sym_r_DQUOTE] = ACTIONS(3294), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3294), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - [anon_sym_assert] = ACTIONS(3294), - [anon_sym_defer] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_DOLLARfor] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_POUND] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - }, - [1035] = { - [sym_line_comment] = STATE(1035), - [sym_block_comment] = STATE(1035), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_COLON] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_STAR_EQ] = ACTIONS(2989), - [anon_sym_SLASH_EQ] = ACTIONS(2989), - [anon_sym_PERCENT_EQ] = ACTIONS(2989), - [anon_sym_LT_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_AMP_EQ] = ACTIONS(2989), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(2989), - [anon_sym_DASH_EQ] = ACTIONS(2989), - [anon_sym_PIPE_EQ] = ACTIONS(2989), - [anon_sym_CARET_EQ] = ACTIONS(2989), - [anon_sym_COLON_EQ] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_c_SQUOTE] = ACTIONS(2989), - [anon_sym_c_DQUOTE] = ACTIONS(2989), - [anon_sym_r_SQUOTE] = ACTIONS(2989), - [anon_sym_r_DQUOTE] = ACTIONS(2989), - [sym_pseudo_compile_time_identifier] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - }, - [1036] = { - [sym_line_comment] = STATE(1036), - [sym_block_comment] = STATE(1036), - [sym_identifier] = ACTIONS(3270), - [anon_sym_LF] = ACTIONS(3270), - [anon_sym_CR] = ACTIONS(3270), - [anon_sym_CR_LF] = ACTIONS(3270), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_fn] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_LT_EQ] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_mut] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_QMARK] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_go] = ACTIONS(3270), - [anon_sym_spawn] = ACTIONS(3270), - [anon_sym_json_DOTdecode] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_LBRACK2] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_LT_DASH] = ACTIONS(3270), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3270), - [anon_sym_GT_GT_GT] = ACTIONS(3270), - [anon_sym_AMP_CARET] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3270), - [sym_none] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_nil] = ACTIONS(3270), - [anon_sym_QMARK_DOT] = ACTIONS(3270), - [anon_sym_POUND_LBRACK] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_DOLLARif] = ACTIONS(3270), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_BANGin] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_STAR_EQ] = ACTIONS(3270), - [anon_sym_SLASH_EQ] = ACTIONS(3270), - [anon_sym_PERCENT_EQ] = ACTIONS(3270), - [anon_sym_LT_LT_EQ] = ACTIONS(3270), - [anon_sym_GT_GT_EQ] = ACTIONS(3270), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3270), - [anon_sym_AMP_EQ] = ACTIONS(3270), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3270), - [anon_sym_PLUS_EQ] = ACTIONS(3270), - [anon_sym_DASH_EQ] = ACTIONS(3270), - [anon_sym_PIPE_EQ] = ACTIONS(3270), - [anon_sym_CARET_EQ] = ACTIONS(3270), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_lock] = ACTIONS(3270), - [anon_sym_rlock] = ACTIONS(3270), - [anon_sym_unsafe] = ACTIONS(3270), - [anon_sym_sql] = ACTIONS(3270), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(3270), - [sym_rune_literal] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_c_SQUOTE] = ACTIONS(3270), - [anon_sym_c_DQUOTE] = ACTIONS(3270), - [anon_sym_r_SQUOTE] = ACTIONS(3270), - [anon_sym_r_DQUOTE] = ACTIONS(3270), - [sym_pseudo_compile_time_identifier] = ACTIONS(3270), - [anon_sym_shared] = ACTIONS(3270), - [anon_sym_map_LBRACK] = ACTIONS(3270), - [anon_sym_chan] = ACTIONS(3270), - [anon_sym_thread] = ACTIONS(3270), - [anon_sym_atomic] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_defer] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_DOLLARfor] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - }, - [1037] = { - [sym_line_comment] = STATE(1037), - [sym_block_comment] = STATE(1037), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_EQ] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_STAR_EQ] = ACTIONS(2855), - [anon_sym_SLASH_EQ] = ACTIONS(2855), - [anon_sym_PERCENT_EQ] = ACTIONS(2855), - [anon_sym_LT_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_AMP_EQ] = ACTIONS(2855), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2855), - [anon_sym_DASH_EQ] = ACTIONS(2855), - [anon_sym_PIPE_EQ] = ACTIONS(2855), - [anon_sym_CARET_EQ] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - }, - [1038] = { - [sym_line_comment] = STATE(1038), - [sym_block_comment] = STATE(1038), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_STAR_EQ] = ACTIONS(2947), - [anon_sym_SLASH_EQ] = ACTIONS(2947), - [anon_sym_PERCENT_EQ] = ACTIONS(2947), - [anon_sym_LT_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_GT_EQ] = ACTIONS(2947), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2947), - [anon_sym_AMP_EQ] = ACTIONS(2947), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2947), - [anon_sym_PLUS_EQ] = ACTIONS(2947), - [anon_sym_DASH_EQ] = ACTIONS(2947), - [anon_sym_PIPE_EQ] = ACTIONS(2947), - [anon_sym_CARET_EQ] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [anon_sym_c_SQUOTE] = ACTIONS(2947), - [anon_sym_c_DQUOTE] = ACTIONS(2947), - [anon_sym_r_SQUOTE] = ACTIONS(2947), - [anon_sym_r_DQUOTE] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [anon_sym_assert] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_DOLLARfor] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), }, [1039] = { [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_COLON] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_LT_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_AMP_EQ] = ACTIONS(2185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_PIPE_EQ] = ACTIONS(2185), - [anon_sym_CARET_EQ] = ACTIONS(2185), - [anon_sym_COLON_EQ] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_COLON] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_STAR_EQ] = ACTIONS(2929), + [anon_sym_SLASH_EQ] = ACTIONS(2929), + [anon_sym_PERCENT_EQ] = ACTIONS(2929), + [anon_sym_LT_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_AMP_EQ] = ACTIONS(2929), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2929), + [anon_sym_PLUS_EQ] = ACTIONS(2929), + [anon_sym_DASH_EQ] = ACTIONS(2929), + [anon_sym_PIPE_EQ] = ACTIONS(2929), + [anon_sym_CARET_EQ] = ACTIONS(2929), + [anon_sym_COLON_EQ] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), }, [1040] = { [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LF] = ACTIONS(2925), - [anon_sym_CR] = ACTIONS(2925), - [anon_sym_CR_LF] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_as] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_EQ] = ACTIONS(2925), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_mut] = ACTIONS(2925), - [anon_sym_COLON] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2925), - [anon_sym_spawn] = ACTIONS(2925), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2925), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_nil] = ACTIONS(2925), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_DOLLARif] = ACTIONS(2925), - [anon_sym_is] = ACTIONS(2925), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_select] = ACTIONS(2925), - [anon_sym_STAR_EQ] = ACTIONS(2925), - [anon_sym_SLASH_EQ] = ACTIONS(2925), - [anon_sym_PERCENT_EQ] = ACTIONS(2925), - [anon_sym_LT_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2925), - [anon_sym_AMP_EQ] = ACTIONS(2925), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2925), - [anon_sym_PLUS_EQ] = ACTIONS(2925), - [anon_sym_DASH_EQ] = ACTIONS(2925), - [anon_sym_PIPE_EQ] = ACTIONS(2925), - [anon_sym_CARET_EQ] = ACTIONS(2925), - [anon_sym_COLON_EQ] = ACTIONS(2925), - [anon_sym_lock] = ACTIONS(2925), - [anon_sym_rlock] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_sql] = ACTIONS(2925), - [sym_int_literal] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_c_SQUOTE] = ACTIONS(2925), - [anon_sym_c_DQUOTE] = ACTIONS(2925), - [anon_sym_r_SQUOTE] = ACTIONS(2925), - [anon_sym_r_DQUOTE] = ACTIONS(2925), - [sym_pseudo_compile_time_identifier] = ACTIONS(2925), - [anon_sym_shared] = ACTIONS(2925), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2925), - [anon_sym_thread] = ACTIONS(2925), - [anon_sym_atomic] = ACTIONS(2925), - [anon_sym_assert] = ACTIONS(2925), - [anon_sym_defer] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_DOLLARfor] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_POUND] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - }, - [1041] = { - [sym_line_comment] = STATE(1041), - [sym_block_comment] = STATE(1041), [sym_identifier] = ACTIONS(2881), [anon_sym_LF] = ACTIONS(2881), [anon_sym_CR] = ACTIONS(2881), @@ -143006,1219 +143134,1439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2881), [anon_sym_asm] = ACTIONS(2881), }, - [1042] = { - [sym_line_comment] = STATE(1042), - [sym_block_comment] = STATE(1042), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [1041] = { + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_STAR_EQ] = ACTIONS(2465), - [anon_sym_SLASH_EQ] = ACTIONS(2465), - [anon_sym_PERCENT_EQ] = ACTIONS(2465), - [anon_sym_LT_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2465), - [anon_sym_AMP_EQ] = ACTIONS(2465), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2465), - [anon_sym_PLUS_EQ] = ACTIONS(2465), - [anon_sym_DASH_EQ] = ACTIONS(2465), - [anon_sym_PIPE_EQ] = ACTIONS(2465), - [anon_sym_CARET_EQ] = ACTIONS(2465), - [anon_sym_COLON_EQ] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_EQ] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_STAR_EQ] = ACTIONS(2373), + [anon_sym_SLASH_EQ] = ACTIONS(2373), + [anon_sym_PERCENT_EQ] = ACTIONS(2373), + [anon_sym_LT_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2373), + [anon_sym_AMP_EQ] = ACTIONS(2373), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2373), + [anon_sym_PLUS_EQ] = ACTIONS(2373), + [anon_sym_DASH_EQ] = ACTIONS(2373), + [anon_sym_PIPE_EQ] = ACTIONS(2373), + [anon_sym_CARET_EQ] = ACTIONS(2373), + [anon_sym_COLON_EQ] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + }, + [1042] = { + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_STAR_EQ] = ACTIONS(2383), + [anon_sym_SLASH_EQ] = ACTIONS(2383), + [anon_sym_PERCENT_EQ] = ACTIONS(2383), + [anon_sym_LT_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_AMP_EQ] = ACTIONS(2383), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2383), + [anon_sym_PLUS_EQ] = ACTIONS(2383), + [anon_sym_DASH_EQ] = ACTIONS(2383), + [anon_sym_PIPE_EQ] = ACTIONS(2383), + [anon_sym_CARET_EQ] = ACTIONS(2383), + [anon_sym_COLON_EQ] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), }, [1043] = { [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [sym_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_CR] = ACTIONS(2387), - [anon_sym_CR_LF] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_COLON] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2387), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2387), - [anon_sym_POUND_LBRACK] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_STAR_EQ] = ACTIONS(2387), - [anon_sym_SLASH_EQ] = ACTIONS(2387), - [anon_sym_PERCENT_EQ] = ACTIONS(2387), - [anon_sym_LT_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_GT_EQ] = ACTIONS(2387), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2387), - [anon_sym_AMP_EQ] = ACTIONS(2387), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(2387), - [anon_sym_DASH_EQ] = ACTIONS(2387), - [anon_sym_PIPE_EQ] = ACTIONS(2387), - [anon_sym_CARET_EQ] = ACTIONS(2387), - [anon_sym_COLON_EQ] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_rune_literal] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_c_SQUOTE] = ACTIONS(2387), - [anon_sym_c_DQUOTE] = ACTIONS(2387), - [anon_sym_r_SQUOTE] = ACTIONS(2387), - [anon_sym_r_DQUOTE] = ACTIONS(2387), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2387), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), - [anon_sym_assert] = ACTIONS(2387), - [anon_sym_defer] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_DOLLARfor] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(2387), - [anon_sym_asm] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_STAR_EQ] = ACTIONS(2639), + [anon_sym_SLASH_EQ] = ACTIONS(2639), + [anon_sym_PERCENT_EQ] = ACTIONS(2639), + [anon_sym_LT_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_AMP_EQ] = ACTIONS(2639), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2639), + [anon_sym_PLUS_EQ] = ACTIONS(2639), + [anon_sym_DASH_EQ] = ACTIONS(2639), + [anon_sym_PIPE_EQ] = ACTIONS(2639), + [anon_sym_CARET_EQ] = ACTIONS(2639), + [anon_sym_COLON_EQ] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), }, [1044] = { [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_CR] = ACTIONS(2693), - [anon_sym_CR_LF] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2631), + [anon_sym_LF] = ACTIONS(2631), + [anon_sym_CR] = ACTIONS(2631), + [anon_sym_CR_LF] = ACTIONS(2631), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(2693), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_EQ_EQ] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(3802), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_GT_GT_GT] = ACTIONS(2693), - [anon_sym_AMP_CARET] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_PIPE_PIPE] = ACTIONS(2693), - [anon_sym_or] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2693), - [anon_sym_POUND_LBRACK] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_STAR_EQ] = ACTIONS(2693), - [anon_sym_SLASH_EQ] = ACTIONS(2693), - [anon_sym_PERCENT_EQ] = ACTIONS(2693), - [anon_sym_LT_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_GT_EQ] = ACTIONS(2693), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2693), - [anon_sym_AMP_EQ] = ACTIONS(2693), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2693), - [anon_sym_DASH_EQ] = ACTIONS(2693), - [anon_sym_PIPE_EQ] = ACTIONS(2693), - [anon_sym_CARET_EQ] = ACTIONS(2693), - [anon_sym_COLON_EQ] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - [sym_rune_literal] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_c_SQUOTE] = ACTIONS(2693), - [anon_sym_c_DQUOTE] = ACTIONS(2693), - [anon_sym_r_SQUOTE] = ACTIONS(2693), - [anon_sym_r_DQUOTE] = ACTIONS(2693), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_defer] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_DOLLARfor] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_asm] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_COLON] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_AMP_CARET] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2631), + [anon_sym_POUND_LBRACK] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_STAR_EQ] = ACTIONS(2631), + [anon_sym_SLASH_EQ] = ACTIONS(2631), + [anon_sym_PERCENT_EQ] = ACTIONS(2631), + [anon_sym_LT_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_GT_EQ] = ACTIONS(2631), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2631), + [anon_sym_AMP_EQ] = ACTIONS(2631), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2631), + [anon_sym_PLUS_EQ] = ACTIONS(2631), + [anon_sym_DASH_EQ] = ACTIONS(2631), + [anon_sym_PIPE_EQ] = ACTIONS(2631), + [anon_sym_CARET_EQ] = ACTIONS(2631), + [anon_sym_COLON_EQ] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), + [sym_rune_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_c_SQUOTE] = ACTIONS(2631), + [anon_sym_c_DQUOTE] = ACTIONS(2631), + [anon_sym_r_SQUOTE] = ACTIONS(2631), + [anon_sym_r_DQUOTE] = ACTIONS(2631), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2631), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2631), + [anon_sym_defer] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_DOLLARfor] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), }, [1045] = { [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LF] = ACTIONS(2637), - [anon_sym_CR] = ACTIONS(2637), - [anon_sym_CR_LF] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2697), + [anon_sym_LF] = ACTIONS(2697), + [anon_sym_CR] = ACTIONS(2697), + [anon_sym_CR_LF] = ACTIONS(2697), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_AMP_CARET] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2637), - [anon_sym_POUND_LBRACK] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_STAR_EQ] = ACTIONS(2637), - [anon_sym_SLASH_EQ] = ACTIONS(2637), - [anon_sym_PERCENT_EQ] = ACTIONS(2637), - [anon_sym_LT_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_GT_EQ] = ACTIONS(2637), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2637), - [anon_sym_AMP_EQ] = ACTIONS(2637), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2637), - [anon_sym_PLUS_EQ] = ACTIONS(2637), - [anon_sym_DASH_EQ] = ACTIONS(2637), - [anon_sym_PIPE_EQ] = ACTIONS(2637), - [anon_sym_CARET_EQ] = ACTIONS(2637), - [anon_sym_COLON_EQ] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_rune_literal] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_c_SQUOTE] = ACTIONS(2637), - [anon_sym_c_DQUOTE] = ACTIONS(2637), - [anon_sym_r_SQUOTE] = ACTIONS(2637), - [anon_sym_r_DQUOTE] = ACTIONS(2637), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2637), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), - [anon_sym_assert] = ACTIONS(2637), - [anon_sym_defer] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_DOLLARfor] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_EQ] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2697), + [anon_sym_BANG_EQ] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_COLON] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(3802), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2697), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2697), + [anon_sym_AMP_CARET] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2697), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2697), + [anon_sym_POUND_LBRACK] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_STAR_EQ] = ACTIONS(2697), + [anon_sym_SLASH_EQ] = ACTIONS(2697), + [anon_sym_PERCENT_EQ] = ACTIONS(2697), + [anon_sym_LT_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_GT_EQ] = ACTIONS(2697), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2697), + [anon_sym_AMP_EQ] = ACTIONS(2697), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2697), + [anon_sym_PLUS_EQ] = ACTIONS(2697), + [anon_sym_DASH_EQ] = ACTIONS(2697), + [anon_sym_PIPE_EQ] = ACTIONS(2697), + [anon_sym_CARET_EQ] = ACTIONS(2697), + [anon_sym_COLON_EQ] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), + [sym_rune_literal] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_c_SQUOTE] = ACTIONS(2697), + [anon_sym_c_DQUOTE] = ACTIONS(2697), + [anon_sym_r_SQUOTE] = ACTIONS(2697), + [anon_sym_r_DQUOTE] = ACTIONS(2697), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2697), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), + [anon_sym_assert] = ACTIONS(2697), + [anon_sym_defer] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_DOLLARfor] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_asm] = ACTIONS(2697), }, [1046] = { [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [sym_identifier] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_CR] = ACTIONS(2633), - [anon_sym_CR_LF] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_COLON] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_STAR_EQ] = ACTIONS(2633), - [anon_sym_SLASH_EQ] = ACTIONS(2633), - [anon_sym_PERCENT_EQ] = ACTIONS(2633), - [anon_sym_LT_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_GT_EQ] = ACTIONS(2633), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2633), - [anon_sym_AMP_EQ] = ACTIONS(2633), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2633), - [anon_sym_PLUS_EQ] = ACTIONS(2633), - [anon_sym_DASH_EQ] = ACTIONS(2633), - [anon_sym_PIPE_EQ] = ACTIONS(2633), - [anon_sym_CARET_EQ] = ACTIONS(2633), - [anon_sym_COLON_EQ] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_c_SQUOTE] = ACTIONS(2633), - [anon_sym_c_DQUOTE] = ACTIONS(2633), - [anon_sym_r_SQUOTE] = ACTIONS(2633), - [anon_sym_r_DQUOTE] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), - [anon_sym_assert] = ACTIONS(2633), - [anon_sym_defer] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_DOLLARfor] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_COLON] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_QMARK] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_AMP_CARET] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2627), + [anon_sym_POUND_LBRACK] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2627), + [anon_sym_BANGis] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_BANGin] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_STAR_EQ] = ACTIONS(2627), + [anon_sym_SLASH_EQ] = ACTIONS(2627), + [anon_sym_PERCENT_EQ] = ACTIONS(2627), + [anon_sym_LT_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_GT_EQ] = ACTIONS(2627), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2627), + [anon_sym_AMP_EQ] = ACTIONS(2627), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2627), + [anon_sym_PLUS_EQ] = ACTIONS(2627), + [anon_sym_DASH_EQ] = ACTIONS(2627), + [anon_sym_PIPE_EQ] = ACTIONS(2627), + [anon_sym_CARET_EQ] = ACTIONS(2627), + [anon_sym_COLON_EQ] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_defer] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_DOLLARfor] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), }, [1047] = { [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_STAR_EQ] = ACTIONS(2973), - [anon_sym_SLASH_EQ] = ACTIONS(2973), - [anon_sym_PERCENT_EQ] = ACTIONS(2973), - [anon_sym_LT_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_AMP_EQ] = ACTIONS(2973), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2973), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_PIPE_EQ] = ACTIONS(2973), - [anon_sym_CARET_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_c_SQUOTE] = ACTIONS(2973), - [anon_sym_c_DQUOTE] = ACTIONS(2973), - [anon_sym_r_SQUOTE] = ACTIONS(2973), - [anon_sym_r_DQUOTE] = ACTIONS(2973), - [sym_pseudo_compile_time_identifier] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_DOLLARfor] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2977), + [anon_sym_AMP_CARET] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_or] = ACTIONS(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_STAR_EQ] = ACTIONS(2977), + [anon_sym_SLASH_EQ] = ACTIONS(2977), + [anon_sym_PERCENT_EQ] = ACTIONS(2977), + [anon_sym_LT_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_GT_EQ] = ACTIONS(2977), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2977), + [anon_sym_AMP_EQ] = ACTIONS(2977), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2977), + [anon_sym_PLUS_EQ] = ACTIONS(2977), + [anon_sym_DASH_EQ] = ACTIONS(2977), + [anon_sym_PIPE_EQ] = ACTIONS(2977), + [anon_sym_CARET_EQ] = ACTIONS(2977), + [anon_sym_COLON_EQ] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_defer] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_DOLLARfor] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), }, [1048] = { [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_EQ] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_COLON] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_STAR_EQ] = ACTIONS(2831), - [anon_sym_SLASH_EQ] = ACTIONS(2831), - [anon_sym_PERCENT_EQ] = ACTIONS(2831), - [anon_sym_LT_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_GT_EQ] = ACTIONS(2831), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2831), - [anon_sym_AMP_EQ] = ACTIONS(2831), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2831), - [anon_sym_PLUS_EQ] = ACTIONS(2831), - [anon_sym_DASH_EQ] = ACTIONS(2831), - [anon_sym_PIPE_EQ] = ACTIONS(2831), - [anon_sym_CARET_EQ] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_STAR_EQ] = ACTIONS(2981), + [anon_sym_SLASH_EQ] = ACTIONS(2981), + [anon_sym_PERCENT_EQ] = ACTIONS(2981), + [anon_sym_LT_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_GT_EQ] = ACTIONS(2981), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2981), + [anon_sym_AMP_EQ] = ACTIONS(2981), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2981), + [anon_sym_PLUS_EQ] = ACTIONS(2981), + [anon_sym_DASH_EQ] = ACTIONS(2981), + [anon_sym_PIPE_EQ] = ACTIONS(2981), + [anon_sym_CARET_EQ] = ACTIONS(2981), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), }, [1049] = { [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_LT_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3001), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_PIPE_EQ] = ACTIONS(3001), - [anon_sym_CARET_EQ] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [anon_sym_c_SQUOTE] = ACTIONS(3001), - [anon_sym_c_DQUOTE] = ACTIONS(3001), - [anon_sym_r_SQUOTE] = ACTIONS(3001), - [anon_sym_r_DQUOTE] = ACTIONS(3001), - [sym_pseudo_compile_time_identifier] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_STAR_EQ] = ACTIONS(2837), + [anon_sym_SLASH_EQ] = ACTIONS(2837), + [anon_sym_PERCENT_EQ] = ACTIONS(2837), + [anon_sym_LT_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_GT_EQ] = ACTIONS(2837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2837), + [anon_sym_AMP_EQ] = ACTIONS(2837), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2837), + [anon_sym_PLUS_EQ] = ACTIONS(2837), + [anon_sym_DASH_EQ] = ACTIONS(2837), + [anon_sym_PIPE_EQ] = ACTIONS(2837), + [anon_sym_CARET_EQ] = ACTIONS(2837), + [anon_sym_COLON_EQ] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), }, [1050] = { [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(3007), + [anon_sym_CR] = ACTIONS(3007), + [anon_sym_CR_LF] = ACTIONS(3007), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_COLON] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_STAR_EQ] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2869), - [anon_sym_PERCENT_EQ] = ACTIONS(2869), - [anon_sym_LT_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_AMP_EQ] = ACTIONS(2869), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2869), - [anon_sym_PLUS_EQ] = ACTIONS(2869), - [anon_sym_DASH_EQ] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_c_SQUOTE] = ACTIONS(2869), - [anon_sym_c_DQUOTE] = ACTIONS(2869), - [anon_sym_r_SQUOTE] = ACTIONS(2869), - [anon_sym_r_DQUOTE] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_STAR_EQ] = ACTIONS(3007), + [anon_sym_SLASH_EQ] = ACTIONS(3007), + [anon_sym_PERCENT_EQ] = ACTIONS(3007), + [anon_sym_LT_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_GT_EQ] = ACTIONS(3007), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3007), + [anon_sym_AMP_EQ] = ACTIONS(3007), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3007), + [anon_sym_PLUS_EQ] = ACTIONS(3007), + [anon_sym_DASH_EQ] = ACTIONS(3007), + [anon_sym_PIPE_EQ] = ACTIONS(3007), + [anon_sym_CARET_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [anon_sym_c_SQUOTE] = ACTIONS(3007), + [anon_sym_c_DQUOTE] = ACTIONS(3007), + [anon_sym_r_SQUOTE] = ACTIONS(3007), + [anon_sym_r_DQUOTE] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_defer] = ACTIONS(3007), + [anon_sym_goto] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_DOLLARfor] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_asm] = ACTIONS(3007), }, [1051] = { [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_EQ] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_COLON] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_STAR_EQ] = ACTIONS(2815), - [anon_sym_SLASH_EQ] = ACTIONS(2815), - [anon_sym_PERCENT_EQ] = ACTIONS(2815), - [anon_sym_LT_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_GT_EQ] = ACTIONS(2815), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2815), - [anon_sym_AMP_EQ] = ACTIONS(2815), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2815), - [anon_sym_PLUS_EQ] = ACTIONS(2815), - [anon_sym_DASH_EQ] = ACTIONS(2815), - [anon_sym_PIPE_EQ] = ACTIONS(2815), - [anon_sym_CARET_EQ] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_COLON] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_STAR_EQ] = ACTIONS(2873), + [anon_sym_SLASH_EQ] = ACTIONS(2873), + [anon_sym_PERCENT_EQ] = ACTIONS(2873), + [anon_sym_LT_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_AMP_EQ] = ACTIONS(2873), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2873), + [anon_sym_PLUS_EQ] = ACTIONS(2873), + [anon_sym_DASH_EQ] = ACTIONS(2873), + [anon_sym_PIPE_EQ] = ACTIONS(2873), + [anon_sym_CARET_EQ] = ACTIONS(2873), + [anon_sym_COLON_EQ] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_c_SQUOTE] = ACTIONS(2873), + [anon_sym_c_DQUOTE] = ACTIONS(2873), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), }, [1052] = { [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_EQ] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_COLON] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_STAR_EQ] = ACTIONS(2877), - [anon_sym_SLASH_EQ] = ACTIONS(2877), - [anon_sym_PERCENT_EQ] = ACTIONS(2877), - [anon_sym_LT_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_GT_EQ] = ACTIONS(2877), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2877), - [anon_sym_AMP_EQ] = ACTIONS(2877), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2877), - [anon_sym_PLUS_EQ] = ACTIONS(2877), - [anon_sym_DASH_EQ] = ACTIONS(2877), - [anon_sym_PIPE_EQ] = ACTIONS(2877), - [anon_sym_CARET_EQ] = ACTIONS(2877), - [anon_sym_COLON_EQ] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - [anon_sym_assert] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_DOLLARfor] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_COLON_EQ] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), }, [1053] = { [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), + [sym_identifier] = ACTIONS(2885), + [anon_sym_LF] = ACTIONS(2885), + [anon_sym_CR] = ACTIONS(2885), + [anon_sym_CR_LF] = ACTIONS(2885), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_DOT] = ACTIONS(2885), + [anon_sym_as] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_fn] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2885), + [anon_sym_mut] = ACTIONS(2885), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2885), + [anon_sym_spawn] = ACTIONS(2885), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2885), + [sym_none] = ACTIONS(2885), + [sym_true] = ACTIONS(2885), + [sym_false] = ACTIONS(2885), + [sym_nil] = ACTIONS(2885), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_DOLLARif] = ACTIONS(2885), + [anon_sym_is] = ACTIONS(2885), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2885), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2885), + [anon_sym_select] = ACTIONS(2885), + [anon_sym_STAR_EQ] = ACTIONS(2885), + [anon_sym_SLASH_EQ] = ACTIONS(2885), + [anon_sym_PERCENT_EQ] = ACTIONS(2885), + [anon_sym_LT_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_GT_EQ] = ACTIONS(2885), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2885), + [anon_sym_AMP_EQ] = ACTIONS(2885), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2885), + [anon_sym_PIPE_EQ] = ACTIONS(2885), + [anon_sym_CARET_EQ] = ACTIONS(2885), + [anon_sym_COLON_EQ] = ACTIONS(2885), + [anon_sym_lock] = ACTIONS(2885), + [anon_sym_rlock] = ACTIONS(2885), + [anon_sym_unsafe] = ACTIONS(2885), + [anon_sym_sql] = ACTIONS(2885), + [sym_int_literal] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2885), + [anon_sym_shared] = ACTIONS(2885), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2885), + [anon_sym_thread] = ACTIONS(2885), + [anon_sym_atomic] = ACTIONS(2885), + [anon_sym_assert] = ACTIONS(2885), + [anon_sym_defer] = ACTIONS(2885), + [anon_sym_goto] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_DOLLARfor] = ACTIONS(2885), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_asm] = ACTIONS(2885), + }, + [1054] = { + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), [sym_identifier] = ACTIONS(3015), [anon_sym_LF] = ACTIONS(3015), [anon_sym_CR] = ACTIONS(3015), @@ -144326,116 +144674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3015), [anon_sym_asm] = ACTIONS(3015), }, - [1054] = { - [sym_line_comment] = STATE(1054), - [sym_block_comment] = STATE(1054), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_STAR_EQ] = ACTIONS(2909), - [anon_sym_SLASH_EQ] = ACTIONS(2909), - [anon_sym_PERCENT_EQ] = ACTIONS(2909), - [anon_sym_LT_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_AMP_EQ] = ACTIONS(2909), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2909), - [anon_sym_PLUS_EQ] = ACTIONS(2909), - [anon_sym_DASH_EQ] = ACTIONS(2909), - [anon_sym_PIPE_EQ] = ACTIONS(2909), - [anon_sym_CARET_EQ] = ACTIONS(2909), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_c_SQUOTE] = ACTIONS(2909), - [anon_sym_c_DQUOTE] = ACTIONS(2909), - [anon_sym_r_SQUOTE] = ACTIONS(2909), - [anon_sym_r_DQUOTE] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - }, [1055] = { [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), @@ -144659,6 +144897,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1057] = { [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_EQ] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_COLON] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_STAR_EQ] = ACTIONS(2925), + [anon_sym_SLASH_EQ] = ACTIONS(2925), + [anon_sym_PERCENT_EQ] = ACTIONS(2925), + [anon_sym_LT_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_GT_EQ] = ACTIONS(2925), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2925), + [anon_sym_AMP_EQ] = ACTIONS(2925), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2925), + [anon_sym_PLUS_EQ] = ACTIONS(2925), + [anon_sym_DASH_EQ] = ACTIONS(2925), + [anon_sym_PIPE_EQ] = ACTIONS(2925), + [anon_sym_CARET_EQ] = ACTIONS(2925), + [anon_sym_COLON_EQ] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_assert] = ACTIONS(2925), + [anon_sym_defer] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_DOLLARfor] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + }, + [1058] = { + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), [sym_identifier] = ACTIONS(3019), [anon_sym_LF] = ACTIONS(3019), [anon_sym_CR] = ACTIONS(3019), @@ -144766,9 +145114,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3019), [anon_sym_asm] = ACTIONS(3019), }, - [1058] = { - [sym_line_comment] = STATE(1058), - [sym_block_comment] = STATE(1058), + [1059] = { + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_EQ] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_STAR_EQ] = ACTIONS(2187), + [anon_sym_SLASH_EQ] = ACTIONS(2187), + [anon_sym_PERCENT_EQ] = ACTIONS(2187), + [anon_sym_LT_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2187), + [anon_sym_AMP_EQ] = ACTIONS(2187), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2187), + [anon_sym_PLUS_EQ] = ACTIONS(2187), + [anon_sym_DASH_EQ] = ACTIONS(2187), + [anon_sym_PIPE_EQ] = ACTIONS(2187), + [anon_sym_CARET_EQ] = ACTIONS(2187), + [anon_sym_COLON_EQ] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + }, + [1060] = { + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_STAR_EQ] = ACTIONS(2465), + [anon_sym_SLASH_EQ] = ACTIONS(2465), + [anon_sym_PERCENT_EQ] = ACTIONS(2465), + [anon_sym_LT_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_GT_EQ] = ACTIONS(2465), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2465), + [anon_sym_AMP_EQ] = ACTIONS(2465), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2465), + [anon_sym_PLUS_EQ] = ACTIONS(2465), + [anon_sym_DASH_EQ] = ACTIONS(2465), + [anon_sym_PIPE_EQ] = ACTIONS(2465), + [anon_sym_CARET_EQ] = ACTIONS(2465), + [anon_sym_COLON_EQ] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_defer] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_DOLLARfor] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_asm] = ACTIONS(2465), + }, + [1061] = { + [sym_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_STAR_EQ] = ACTIONS(2669), + [anon_sym_SLASH_EQ] = ACTIONS(2669), + [anon_sym_PERCENT_EQ] = ACTIONS(2669), + [anon_sym_LT_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_AMP_EQ] = ACTIONS(2669), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), + [anon_sym_PLUS_EQ] = ACTIONS(2669), + [anon_sym_DASH_EQ] = ACTIONS(2669), + [anon_sym_PIPE_EQ] = ACTIONS(2669), + [anon_sym_CARET_EQ] = ACTIONS(2669), + [anon_sym_COLON_EQ] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + }, + [1062] = { + [sym_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_COLON] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_STAR_EQ] = ACTIONS(2989), + [anon_sym_SLASH_EQ] = ACTIONS(2989), + [anon_sym_PERCENT_EQ] = ACTIONS(2989), + [anon_sym_LT_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_AMP_EQ] = ACTIONS(2989), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), + [anon_sym_PLUS_EQ] = ACTIONS(2989), + [anon_sym_DASH_EQ] = ACTIONS(2989), + [anon_sym_PIPE_EQ] = ACTIONS(2989), + [anon_sym_CARET_EQ] = ACTIONS(2989), + [anon_sym_COLON_EQ] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + }, + [1063] = { + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_STAR_EQ] = ACTIONS(2993), + [anon_sym_SLASH_EQ] = ACTIONS(2993), + [anon_sym_PERCENT_EQ] = ACTIONS(2993), + [anon_sym_LT_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_AMP_EQ] = ACTIONS(2993), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), + [anon_sym_PLUS_EQ] = ACTIONS(2993), + [anon_sym_DASH_EQ] = ACTIONS(2993), + [anon_sym_PIPE_EQ] = ACTIONS(2993), + [anon_sym_CARET_EQ] = ACTIONS(2993), + [anon_sym_COLON_EQ] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_c_SQUOTE] = ACTIONS(2993), + [anon_sym_c_DQUOTE] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(2993), + [anon_sym_r_DQUOTE] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + }, + [1064] = { + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_STAR_EQ] = ACTIONS(3023), + [anon_sym_SLASH_EQ] = ACTIONS(3023), + [anon_sym_PERCENT_EQ] = ACTIONS(3023), + [anon_sym_LT_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_GT_EQ] = ACTIONS(3023), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3023), + [anon_sym_AMP_EQ] = ACTIONS(3023), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(3023), + [anon_sym_DASH_EQ] = ACTIONS(3023), + [anon_sym_PIPE_EQ] = ACTIONS(3023), + [anon_sym_CARET_EQ] = ACTIONS(3023), + [anon_sym_COLON_EQ] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_c_SQUOTE] = ACTIONS(3023), + [anon_sym_c_DQUOTE] = ACTIONS(3023), + [anon_sym_r_SQUOTE] = ACTIONS(3023), + [anon_sym_r_DQUOTE] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_defer] = ACTIONS(3023), + [anon_sym_goto] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_DOLLARfor] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_asm] = ACTIONS(3023), + }, + [1065] = { + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_STAR_EQ] = ACTIONS(3001), + [anon_sym_SLASH_EQ] = ACTIONS(3001), + [anon_sym_PERCENT_EQ] = ACTIONS(3001), + [anon_sym_LT_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_AMP_EQ] = ACTIONS(3001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), + [anon_sym_PLUS_EQ] = ACTIONS(3001), + [anon_sym_DASH_EQ] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3001), + [anon_sym_CARET_EQ] = ACTIONS(3001), + [anon_sym_COLON_EQ] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + }, + [1066] = { + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), [sym_identifier] = ACTIONS(2997), [anon_sym_LF] = ACTIONS(2997), [anon_sym_CR] = ACTIONS(2997), @@ -144876,779 +145994,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2997), [anon_sym_asm] = ACTIONS(2997), }, - [1059] = { - [sym_line_comment] = STATE(1059), - [sym_block_comment] = STATE(1059), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_CR] = ACTIONS(2627), - [anon_sym_CR_LF] = ACTIONS(2627), + [1067] = { + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_DOT] = ACTIONS(2627), - [anon_sym_as] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_COMMA] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(2627), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_SLASH] = ACTIONS(2627), - [anon_sym_PERCENT] = ACTIONS(2627), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_GT] = ACTIONS(2627), - [anon_sym_EQ_EQ] = ACTIONS(2627), - [anon_sym_BANG_EQ] = ACTIONS(2627), - [anon_sym_LT_EQ] = ACTIONS(2627), - [anon_sym_GT_EQ] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_mut] = ACTIONS(2627), - [anon_sym_COLON] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_go] = ACTIONS(2627), - [anon_sym_spawn] = ACTIONS(2627), - [anon_sym_json_DOTdecode] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_CARET] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_LT_DASH] = ACTIONS(2627), - [anon_sym_LT_LT] = ACTIONS(2627), - [anon_sym_GT_GT] = ACTIONS(2627), - [anon_sym_GT_GT_GT] = ACTIONS(2627), - [anon_sym_AMP_CARET] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_PIPE_PIPE] = ACTIONS(2627), - [anon_sym_or] = ACTIONS(2627), - [sym_none] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_nil] = ACTIONS(2627), - [anon_sym_QMARK_DOT] = ACTIONS(2627), - [anon_sym_POUND_LBRACK] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_DOLLARif] = ACTIONS(2627), - [anon_sym_is] = ACTIONS(2627), - [anon_sym_BANGis] = ACTIONS(2627), - [anon_sym_in] = ACTIONS(2627), - [anon_sym_BANGin] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_select] = ACTIONS(2627), - [anon_sym_STAR_EQ] = ACTIONS(2627), - [anon_sym_SLASH_EQ] = ACTIONS(2627), - [anon_sym_PERCENT_EQ] = ACTIONS(2627), - [anon_sym_LT_LT_EQ] = ACTIONS(2627), - [anon_sym_GT_GT_EQ] = ACTIONS(2627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2627), - [anon_sym_AMP_EQ] = ACTIONS(2627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2627), - [anon_sym_PLUS_EQ] = ACTIONS(2627), - [anon_sym_DASH_EQ] = ACTIONS(2627), - [anon_sym_PIPE_EQ] = ACTIONS(2627), - [anon_sym_CARET_EQ] = ACTIONS(2627), - [anon_sym_COLON_EQ] = ACTIONS(2627), - [anon_sym_lock] = ACTIONS(2627), - [anon_sym_rlock] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_sql] = ACTIONS(2627), - [sym_int_literal] = ACTIONS(2627), - [sym_float_literal] = ACTIONS(2627), - [sym_rune_literal] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_c_SQUOTE] = ACTIONS(2627), - [anon_sym_c_DQUOTE] = ACTIONS(2627), - [anon_sym_r_SQUOTE] = ACTIONS(2627), - [anon_sym_r_DQUOTE] = ACTIONS(2627), - [sym_pseudo_compile_time_identifier] = ACTIONS(2627), - [anon_sym_shared] = ACTIONS(2627), - [anon_sym_map_LBRACK] = ACTIONS(2627), - [anon_sym_chan] = ACTIONS(2627), - [anon_sym_thread] = ACTIONS(2627), - [anon_sym_atomic] = ACTIONS(2627), - [anon_sym_assert] = ACTIONS(2627), - [anon_sym_defer] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_DOLLARfor] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_POUND] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_EQ] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_COLON] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_STAR_EQ] = ACTIONS(2967), + [anon_sym_SLASH_EQ] = ACTIONS(2967), + [anon_sym_PERCENT_EQ] = ACTIONS(2967), + [anon_sym_LT_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_GT_EQ] = ACTIONS(2967), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2967), + [anon_sym_AMP_EQ] = ACTIONS(2967), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2967), + [anon_sym_PLUS_EQ] = ACTIONS(2967), + [anon_sym_DASH_EQ] = ACTIONS(2967), + [anon_sym_PIPE_EQ] = ACTIONS(2967), + [anon_sym_CARET_EQ] = ACTIONS(2967), + [anon_sym_COLON_EQ] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), }, - [1060] = { - [sym_line_comment] = STATE(1060), - [sym_block_comment] = STATE(1060), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_LT_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_AMP_EQ] = ACTIONS(2093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_PIPE_EQ] = ACTIONS(2093), - [anon_sym_CARET_EQ] = ACTIONS(2093), - [anon_sym_COLON_EQ] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - }, - [1061] = { - [sym_line_comment] = STATE(1061), - [sym_block_comment] = STATE(1061), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_EQ] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_COLON] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_STAR_EQ] = ACTIONS(2981), - [anon_sym_SLASH_EQ] = ACTIONS(2981), - [anon_sym_PERCENT_EQ] = ACTIONS(2981), - [anon_sym_LT_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_AMP_EQ] = ACTIONS(2981), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2981), - [anon_sym_PLUS_EQ] = ACTIONS(2981), - [anon_sym_DASH_EQ] = ACTIONS(2981), - [anon_sym_PIPE_EQ] = ACTIONS(2981), - [anon_sym_CARET_EQ] = ACTIONS(2981), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [anon_sym_c_SQUOTE] = ACTIONS(2981), - [anon_sym_c_DQUOTE] = ACTIONS(2981), - [anon_sym_r_SQUOTE] = ACTIONS(2981), - [anon_sym_r_DQUOTE] = ACTIONS(2981), - [sym_pseudo_compile_time_identifier] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - }, - [1062] = { - [sym_line_comment] = STATE(1062), - [sym_block_comment] = STATE(1062), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_EQ] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_COLON] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_STAR_EQ] = ACTIONS(2985), - [anon_sym_SLASH_EQ] = ACTIONS(2985), - [anon_sym_PERCENT_EQ] = ACTIONS(2985), - [anon_sym_LT_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_AMP_EQ] = ACTIONS(2985), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), - [anon_sym_PLUS_EQ] = ACTIONS(2985), - [anon_sym_DASH_EQ] = ACTIONS(2985), - [anon_sym_PIPE_EQ] = ACTIONS(2985), - [anon_sym_CARET_EQ] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(2985), - [anon_sym_c_SQUOTE] = ACTIONS(2985), - [anon_sym_c_DQUOTE] = ACTIONS(2985), - [anon_sym_r_SQUOTE] = ACTIONS(2985), - [anon_sym_r_DQUOTE] = ACTIONS(2985), - [sym_pseudo_compile_time_identifier] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - }, - [1063] = { - [sym_line_comment] = STATE(1063), - [sym_block_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LF] = ACTIONS(3023), - [anon_sym_CR] = ACTIONS(3023), - [anon_sym_CR_LF] = ACTIONS(3023), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_fn] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_mut] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_go] = ACTIONS(3023), - [anon_sym_spawn] = ACTIONS(3023), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_GT_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_CARET] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3023), - [sym_none] = ACTIONS(3023), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_nil] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_DOLLARif] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3023), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_select] = ACTIONS(3023), - [anon_sym_STAR_EQ] = ACTIONS(3023), - [anon_sym_SLASH_EQ] = ACTIONS(3023), - [anon_sym_PERCENT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_GT_EQ] = ACTIONS(3023), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3023), - [anon_sym_AMP_EQ] = ACTIONS(3023), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3023), - [anon_sym_PLUS_EQ] = ACTIONS(3023), - [anon_sym_DASH_EQ] = ACTIONS(3023), - [anon_sym_PIPE_EQ] = ACTIONS(3023), - [anon_sym_CARET_EQ] = ACTIONS(3023), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_lock] = ACTIONS(3023), - [anon_sym_rlock] = ACTIONS(3023), - [anon_sym_unsafe] = ACTIONS(3023), - [anon_sym_sql] = ACTIONS(3023), - [sym_int_literal] = ACTIONS(3023), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_c_SQUOTE] = ACTIONS(3023), - [anon_sym_c_DQUOTE] = ACTIONS(3023), - [anon_sym_r_SQUOTE] = ACTIONS(3023), - [anon_sym_r_DQUOTE] = ACTIONS(3023), - [sym_pseudo_compile_time_identifier] = ACTIONS(3023), - [anon_sym_shared] = ACTIONS(3023), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3023), - [anon_sym_thread] = ACTIONS(3023), - [anon_sym_atomic] = ACTIONS(3023), - [anon_sym_assert] = ACTIONS(3023), - [anon_sym_defer] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_DOLLARfor] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_POUND] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - }, - [1064] = { - [sym_line_comment] = STATE(1064), - [sym_block_comment] = STATE(1064), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), + [1068] = { + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_LT_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_AMP_EQ] = ACTIONS(3005), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), + [anon_sym_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_EQ] = 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_mut] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_STAR_EQ] = ACTIONS(2647), + [anon_sym_SLASH_EQ] = ACTIONS(2647), + [anon_sym_PERCENT_EQ] = ACTIONS(2647), + [anon_sym_LT_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_GT_EQ] = ACTIONS(2647), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2647), + [anon_sym_AMP_EQ] = ACTIONS(2647), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2647), + [anon_sym_DASH_EQ] = ACTIONS(2647), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_CARET_EQ] = ACTIONS(2647), + [anon_sym_COLON_EQ] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_c_SQUOTE] = ACTIONS(2647), + [anon_sym_c_DQUOTE] = ACTIONS(2647), + [anon_sym_r_SQUOTE] = ACTIONS(2647), + [anon_sym_r_DQUOTE] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + [anon_sym_assert] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_DOLLARfor] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), }, - [1065] = { - [sym_line_comment] = STATE(1065), - [sym_block_comment] = STATE(1065), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), + [1069] = { + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_CR] = ACTIONS(3240), + [anon_sym_CR_LF] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_COLON] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_STAR_EQ] = ACTIONS(2993), - [anon_sym_SLASH_EQ] = ACTIONS(2993), - [anon_sym_PERCENT_EQ] = ACTIONS(2993), - [anon_sym_LT_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_AMP_EQ] = ACTIONS(2993), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), - [anon_sym_PLUS_EQ] = ACTIONS(2993), - [anon_sym_DASH_EQ] = ACTIONS(2993), - [anon_sym_PIPE_EQ] = ACTIONS(2993), - [anon_sym_CARET_EQ] = ACTIONS(2993), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [anon_sym_c_SQUOTE] = ACTIONS(2993), - [anon_sym_c_DQUOTE] = ACTIONS(2993), - [anon_sym_r_SQUOTE] = ACTIONS(2993), - [anon_sym_r_DQUOTE] = ACTIONS(2993), - [sym_pseudo_compile_time_identifier] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_LT_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_GT_EQ] = ACTIONS(3240), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3240), + [anon_sym_AMP_EQ] = ACTIONS(3240), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_PIPE_EQ] = ACTIONS(3240), + [anon_sym_CARET_EQ] = ACTIONS(3240), + [anon_sym_COLON_EQ] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3240), + [anon_sym_c_DQUOTE] = ACTIONS(3240), + [anon_sym_r_SQUOTE] = ACTIONS(3240), + [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), + [anon_sym_assert] = ACTIONS(3240), + [anon_sym_defer] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_DOLLARfor] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), }, - [1066] = { - [sym_line_comment] = STATE(1066), - [sym_block_comment] = STATE(1066), + [1070] = { + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), [sym_identifier] = ACTIONS(3027), [anon_sym_LF] = ACTIONS(3027), [anon_sym_CR] = ACTIONS(3027), @@ -145756,1325 +146434,885 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3027), [anon_sym_asm] = ACTIONS(3027), }, - [1067] = { - [sym_line_comment] = STATE(1067), - [sym_block_comment] = STATE(1067), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_STAR_EQ] = ACTIONS(2961), - [anon_sym_SLASH_EQ] = ACTIONS(2961), - [anon_sym_PERCENT_EQ] = ACTIONS(2961), - [anon_sym_LT_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_GT_EQ] = ACTIONS(2961), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2961), - [anon_sym_AMP_EQ] = ACTIONS(2961), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2961), - [anon_sym_PIPE_EQ] = ACTIONS(2961), - [anon_sym_CARET_EQ] = ACTIONS(2961), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - }, - [1068] = { - [sym_line_comment] = STATE(1068), - [sym_block_comment] = STATE(1068), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3035), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_STAR_EQ] = ACTIONS(3035), - [anon_sym_SLASH_EQ] = ACTIONS(3035), - [anon_sym_PERCENT_EQ] = ACTIONS(3035), - [anon_sym_LT_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_GT_EQ] = ACTIONS(3035), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3035), - [anon_sym_AMP_EQ] = ACTIONS(3035), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3035), - [anon_sym_PLUS_EQ] = ACTIONS(3035), - [anon_sym_DASH_EQ] = ACTIONS(3035), - [anon_sym_PIPE_EQ] = ACTIONS(3035), - [anon_sym_CARET_EQ] = ACTIONS(3035), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - [anon_sym_assert] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_DOLLARfor] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - }, - [1069] = { - [sym_line_comment] = STATE(1069), - [sym_block_comment] = STATE(1069), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_STAR_EQ] = ACTIONS(3043), - [anon_sym_SLASH_EQ] = ACTIONS(3043), - [anon_sym_PERCENT_EQ] = ACTIONS(3043), - [anon_sym_LT_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_GT_EQ] = ACTIONS(3043), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3043), - [anon_sym_AMP_EQ] = ACTIONS(3043), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3043), - [anon_sym_PLUS_EQ] = ACTIONS(3043), - [anon_sym_DASH_EQ] = ACTIONS(3043), - [anon_sym_PIPE_EQ] = ACTIONS(3043), - [anon_sym_CARET_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - }, - [1070] = { - [sym_line_comment] = STATE(1070), - [sym_block_comment] = STATE(1070), - [sym_identifier] = ACTIONS(3244), - [anon_sym_LF] = ACTIONS(3244), - [anon_sym_CR] = ACTIONS(3244), - [anon_sym_CR_LF] = ACTIONS(3244), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3244), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3244), - [anon_sym_POUND_LBRACK] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3244), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_LT_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_GT_EQ] = ACTIONS(3244), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3244), - [anon_sym_AMP_EQ] = ACTIONS(3244), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_PIPE_EQ] = ACTIONS(3244), - [anon_sym_CARET_EQ] = ACTIONS(3244), - [anon_sym_COLON_EQ] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_c_SQUOTE] = ACTIONS(3244), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3244), - [anon_sym_r_DQUOTE] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3244), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), - [anon_sym_assert] = ACTIONS(3244), - [anon_sym_defer] = ACTIONS(3244), - [anon_sym_goto] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_DOLLARfor] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_asm] = ACTIONS(3244), - }, [1071] = { [sym_line_comment] = STATE(1071), [sym_block_comment] = STATE(1071), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_EQ] = 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(2178), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_STAR_EQ] = ACTIONS(3031), + [anon_sym_SLASH_EQ] = ACTIONS(3031), + [anon_sym_PERCENT_EQ] = ACTIONS(3031), + [anon_sym_LT_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_GT_EQ] = ACTIONS(3031), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3031), + [anon_sym_AMP_EQ] = ACTIONS(3031), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3031), + [anon_sym_PLUS_EQ] = ACTIONS(3031), + [anon_sym_DASH_EQ] = ACTIONS(3031), + [anon_sym_PIPE_EQ] = ACTIONS(3031), + [anon_sym_CARET_EQ] = ACTIONS(3031), + [anon_sym_COLON_EQ] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_c_SQUOTE] = ACTIONS(3031), + [anon_sym_c_DQUOTE] = ACTIONS(3031), + [anon_sym_r_SQUOTE] = ACTIONS(3031), + [anon_sym_r_DQUOTE] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), }, [1072] = { [sym_line_comment] = STATE(1072), [sym_block_comment] = STATE(1072), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_STAR_EQ] = ACTIONS(3047), - [anon_sym_SLASH_EQ] = ACTIONS(3047), - [anon_sym_PERCENT_EQ] = ACTIONS(3047), - [anon_sym_LT_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_GT_EQ] = ACTIONS(3047), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3047), - [anon_sym_AMP_EQ] = ACTIONS(3047), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3047), - [anon_sym_PLUS_EQ] = ACTIONS(3047), - [anon_sym_DASH_EQ] = ACTIONS(3047), - [anon_sym_PIPE_EQ] = ACTIONS(3047), - [anon_sym_CARET_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3041), + [anon_sym_AMP_CARET] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_PIPE_PIPE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_STAR_EQ] = ACTIONS(3041), + [anon_sym_SLASH_EQ] = ACTIONS(3041), + [anon_sym_PERCENT_EQ] = ACTIONS(3041), + [anon_sym_LT_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_GT_EQ] = ACTIONS(3041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), + [anon_sym_AMP_EQ] = ACTIONS(3041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), + [anon_sym_PLUS_EQ] = ACTIONS(3041), + [anon_sym_DASH_EQ] = ACTIONS(3041), + [anon_sym_PIPE_EQ] = ACTIONS(3041), + [anon_sym_CARET_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), }, [1073] = { [sym_line_comment] = STATE(1073), [sym_block_comment] = STATE(1073), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LF] = ACTIONS(3060), - [anon_sym_CR] = ACTIONS(3060), - [anon_sym_CR_LF] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_LT_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_GT_EQ] = ACTIONS(3060), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3060), - [anon_sym_AMP_EQ] = ACTIONS(3060), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_PIPE_EQ] = ACTIONS(3060), - [anon_sym_CARET_EQ] = ACTIONS(3060), - [anon_sym_COLON_EQ] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_c_SQUOTE] = ACTIONS(3060), - [anon_sym_c_DQUOTE] = ACTIONS(3060), - [anon_sym_r_SQUOTE] = ACTIONS(3060), - [anon_sym_r_DQUOTE] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_goto] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_DOLLARfor] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_asm] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_LT_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_AMP_EQ] = ACTIONS(3049), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_PIPE_EQ] = ACTIONS(3049), + [anon_sym_CARET_EQ] = ACTIONS(3049), + [anon_sym_COLON_EQ] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), }, [1074] = { [sym_line_comment] = STATE(1074), [sym_block_comment] = STATE(1074), - [sym_identifier] = ACTIONS(3064), - [anon_sym_LF] = ACTIONS(3064), - [anon_sym_CR] = ACTIONS(3064), - [anon_sym_CR_LF] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_STAR_EQ] = ACTIONS(3064), - [anon_sym_SLASH_EQ] = ACTIONS(3064), - [anon_sym_PERCENT_EQ] = ACTIONS(3064), - [anon_sym_LT_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_GT_EQ] = ACTIONS(3064), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3064), - [anon_sym_AMP_EQ] = ACTIONS(3064), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3064), - [anon_sym_PLUS_EQ] = ACTIONS(3064), - [anon_sym_DASH_EQ] = ACTIONS(3064), - [anon_sym_PIPE_EQ] = ACTIONS(3064), - [anon_sym_CARET_EQ] = ACTIONS(3064), - [anon_sym_COLON_EQ] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_c_SQUOTE] = ACTIONS(3064), - [anon_sym_c_DQUOTE] = ACTIONS(3064), - [anon_sym_r_SQUOTE] = ACTIONS(3064), - [anon_sym_r_DQUOTE] = ACTIONS(3064), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_defer] = ACTIONS(3064), - [anon_sym_goto] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_DOLLARfor] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_COLON] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_LT_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_AMP_EQ] = ACTIONS(3061), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_PIPE_EQ] = ACTIONS(3061), + [anon_sym_CARET_EQ] = ACTIONS(3061), + [anon_sym_COLON_EQ] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_c_SQUOTE] = ACTIONS(3061), + [anon_sym_c_DQUOTE] = ACTIONS(3061), + [anon_sym_r_SQUOTE] = ACTIONS(3061), + [anon_sym_r_DQUOTE] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), }, [1075] = { [sym_line_comment] = STATE(1075), [sym_block_comment] = STATE(1075), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_CR] = ACTIONS(3065), + [anon_sym_CR_LF] = ACTIONS(3065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_COLON] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_STAR_EQ] = ACTIONS(3051), - [anon_sym_SLASH_EQ] = ACTIONS(3051), - [anon_sym_PERCENT_EQ] = ACTIONS(3051), - [anon_sym_LT_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_AMP_EQ] = ACTIONS(3051), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3051), - [anon_sym_PLUS_EQ] = ACTIONS(3051), - [anon_sym_DASH_EQ] = ACTIONS(3051), - [anon_sym_PIPE_EQ] = ACTIONS(3051), - [anon_sym_CARET_EQ] = ACTIONS(3051), - [anon_sym_COLON_EQ] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_COLON] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3065), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_CARET] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3065), + [anon_sym_POUND_LBRACK] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_STAR_EQ] = ACTIONS(3065), + [anon_sym_SLASH_EQ] = ACTIONS(3065), + [anon_sym_PERCENT_EQ] = ACTIONS(3065), + [anon_sym_LT_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_GT_EQ] = ACTIONS(3065), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3065), + [anon_sym_AMP_EQ] = ACTIONS(3065), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3065), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_PIPE_EQ] = ACTIONS(3065), + [anon_sym_CARET_EQ] = ACTIONS(3065), + [anon_sym_COLON_EQ] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), + [sym_rune_literal] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_c_SQUOTE] = ACTIONS(3065), + [anon_sym_c_DQUOTE] = ACTIONS(3065), + [anon_sym_r_SQUOTE] = ACTIONS(3065), + [anon_sym_r_DQUOTE] = ACTIONS(3065), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3065), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_goto] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_DOLLARfor] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_asm] = ACTIONS(3065), }, [1076] = { [sym_line_comment] = STATE(1076), [sym_block_comment] = STATE(1076), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_STAR_EQ] = ACTIONS(3070), - [anon_sym_SLASH_EQ] = ACTIONS(3070), - [anon_sym_PERCENT_EQ] = ACTIONS(3070), - [anon_sym_LT_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_AMP_EQ] = ACTIONS(3070), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3070), - [anon_sym_PLUS_EQ] = ACTIONS(3070), - [anon_sym_DASH_EQ] = ACTIONS(3070), - [anon_sym_PIPE_EQ] = ACTIONS(3070), - [anon_sym_CARET_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_c_SQUOTE] = ACTIONS(3070), - [anon_sym_c_DQUOTE] = ACTIONS(3070), - [anon_sym_r_SQUOTE] = ACTIONS(3070), - [anon_sym_r_DQUOTE] = ACTIONS(3070), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_RBRACE] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_STAR_EQ] = ACTIONS(3055), + [anon_sym_SLASH_EQ] = ACTIONS(3055), + [anon_sym_PERCENT_EQ] = ACTIONS(3055), + [anon_sym_LT_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_GT_EQ] = ACTIONS(3055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3055), + [anon_sym_AMP_EQ] = ACTIONS(3055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3055), + [anon_sym_PLUS_EQ] = ACTIONS(3055), + [anon_sym_DASH_EQ] = ACTIONS(3055), + [anon_sym_PIPE_EQ] = ACTIONS(3055), + [anon_sym_CARET_EQ] = ACTIONS(3055), + [anon_sym_COLON_EQ] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), }, [1077] = { [sym_line_comment] = STATE(1077), [sym_block_comment] = STATE(1077), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_CR] = ACTIONS(3073), + [anon_sym_CR_LF] = ACTIONS(3073), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_EQ] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_COLON] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_or] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3080), - [anon_sym_POUND_LBRACK] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_LT_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_GT_EQ] = ACTIONS(3080), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3080), - [anon_sym_AMP_EQ] = ACTIONS(3080), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3080), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_PIPE_EQ] = ACTIONS(3080), - [anon_sym_CARET_EQ] = ACTIONS(3080), - [anon_sym_COLON_EQ] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - [anon_sym_assert] = ACTIONS(3080), - [anon_sym_defer] = ACTIONS(3080), - [anon_sym_goto] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_DOLLARfor] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_asm] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3073), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3073), + [anon_sym_AMP_CARET] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3073), + [anon_sym_POUND_LBRACK] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3073), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_STAR_EQ] = ACTIONS(3073), + [anon_sym_SLASH_EQ] = ACTIONS(3073), + [anon_sym_PERCENT_EQ] = ACTIONS(3073), + [anon_sym_LT_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_GT_EQ] = ACTIONS(3073), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3073), + [anon_sym_AMP_EQ] = ACTIONS(3073), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3073), + [anon_sym_PLUS_EQ] = ACTIONS(3073), + [anon_sym_DASH_EQ] = ACTIONS(3073), + [anon_sym_PIPE_EQ] = ACTIONS(3073), + [anon_sym_CARET_EQ] = ACTIONS(3073), + [anon_sym_COLON_EQ] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), + [sym_rune_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_c_SQUOTE] = ACTIONS(3073), + [anon_sym_c_DQUOTE] = ACTIONS(3073), + [anon_sym_r_SQUOTE] = ACTIONS(3073), + [anon_sym_r_DQUOTE] = ACTIONS(3073), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3073), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_defer] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_DOLLARfor] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), }, [1078] = { [sym_line_comment] = STATE(1078), [sym_block_comment] = STATE(1078), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_EQ] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_COLON] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_LT_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_AMP_EQ] = ACTIONS(3090), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3090), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_PIPE_EQ] = ACTIONS(3090), - [anon_sym_CARET_EQ] = ACTIONS(3090), - [anon_sym_COLON_EQ] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_LT_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_GT_EQ] = ACTIONS(3084), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3084), + [anon_sym_AMP_EQ] = ACTIONS(3084), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3084), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_PIPE_EQ] = ACTIONS(3084), + [anon_sym_CARET_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_c_SQUOTE] = ACTIONS(3084), + [anon_sym_c_DQUOTE] = ACTIONS(3084), + [anon_sym_r_SQUOTE] = ACTIONS(3084), + [anon_sym_r_DQUOTE] = ACTIONS(3084), + [sym_pseudo_compile_time_identifier] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_defer] = ACTIONS(3084), + [anon_sym_goto] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_DOLLARfor] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_asm] = ACTIONS(3084), }, [1079] = { [sym_line_comment] = STATE(1079), @@ -147189,112 +147427,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1080] = { [sym_line_comment] = STATE(1080), [sym_block_comment] = STATE(1080), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_LT_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_AMP_EQ] = ACTIONS(2643), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2643), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_PIPE_EQ] = ACTIONS(2643), - [anon_sym_CARET_EQ] = ACTIONS(2643), - [anon_sym_COLON_EQ] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_c_SQUOTE] = ACTIONS(2643), - [anon_sym_c_DQUOTE] = ACTIONS(2643), - [anon_sym_r_SQUOTE] = ACTIONS(2643), - [anon_sym_r_DQUOTE] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), + [anon_sym_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_EQ] = 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_mut] = ACTIONS(2651), + [anon_sym_COLON] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1081] = { [sym_line_comment] = STATE(1081), @@ -147409,222 +147647,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1082] = { [sym_line_comment] = STATE(1082), [sym_block_comment] = STATE(1082), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LF] = ACTIONS(3266), - [anon_sym_CR] = ACTIONS(3266), - [anon_sym_CR_LF] = ACTIONS(3266), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_as] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_EQ] = ACTIONS(3266), - [anon_sym_fn] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_PERCENT] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_GT] = ACTIONS(3266), - [anon_sym_EQ_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_mut] = ACTIONS(3266), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_go] = ACTIONS(3266), - [anon_sym_spawn] = ACTIONS(3266), - [anon_sym_json_DOTdecode] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_LBRACK2] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_LT_DASH] = ACTIONS(3266), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_GT_GT_GT] = ACTIONS(3266), - [anon_sym_AMP_CARET] = ACTIONS(3266), - [anon_sym_AMP_AMP] = ACTIONS(3266), - [anon_sym_PIPE_PIPE] = ACTIONS(3266), - [anon_sym_or] = ACTIONS(3266), - [sym_none] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_nil] = ACTIONS(3266), - [anon_sym_QMARK_DOT] = ACTIONS(3266), - [anon_sym_POUND_LBRACK] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_DOLLARif] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_BANGis] = ACTIONS(3266), - [anon_sym_in] = ACTIONS(3266), - [anon_sym_BANGin] = ACTIONS(3266), - [anon_sym_match] = ACTIONS(3266), - [anon_sym_select] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_LT_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_GT_EQ] = ACTIONS(3266), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3266), - [anon_sym_AMP_EQ] = ACTIONS(3266), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_PIPE_EQ] = ACTIONS(3266), - [anon_sym_CARET_EQ] = ACTIONS(3266), - [anon_sym_COLON_EQ] = ACTIONS(3266), - [anon_sym_lock] = ACTIONS(3266), - [anon_sym_rlock] = ACTIONS(3266), - [anon_sym_unsafe] = ACTIONS(3266), - [anon_sym_sql] = ACTIONS(3266), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(3266), - [sym_rune_literal] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_c_SQUOTE] = ACTIONS(3266), - [anon_sym_c_DQUOTE] = ACTIONS(3266), - [anon_sym_r_SQUOTE] = ACTIONS(3266), - [anon_sym_r_DQUOTE] = ACTIONS(3266), - [sym_pseudo_compile_time_identifier] = ACTIONS(3266), - [anon_sym_shared] = ACTIONS(3266), - [anon_sym_map_LBRACK] = ACTIONS(3266), - [anon_sym_chan] = ACTIONS(3266), - [anon_sym_thread] = ACTIONS(3266), - [anon_sym_atomic] = ACTIONS(3266), - [anon_sym_assert] = ACTIONS(3266), - [anon_sym_defer] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_DOLLARfor] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_select] = ACTIONS(2443), + [anon_sym_STAR_EQ] = ACTIONS(2445), + [anon_sym_SLASH_EQ] = ACTIONS(2445), + [anon_sym_PERCENT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_AMP_EQ] = ACTIONS(2445), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(2445), + [anon_sym_DASH_EQ] = ACTIONS(2445), + [anon_sym_PIPE_EQ] = ACTIONS(2445), + [anon_sym_CARET_EQ] = ACTIONS(2445), + [anon_sym_COLON_EQ] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1083] = { [sym_line_comment] = STATE(1083), [sym_block_comment] = STATE(1083), - [sym_identifier] = ACTIONS(2647), - [anon_sym_LF] = ACTIONS(2647), - [anon_sym_CR] = ACTIONS(2647), - [anon_sym_CR_LF] = ACTIONS(2647), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_EQ] = 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_mut] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_STAR_EQ] = ACTIONS(2647), - [anon_sym_SLASH_EQ] = ACTIONS(2647), - [anon_sym_PERCENT_EQ] = ACTIONS(2647), - [anon_sym_LT_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_GT_EQ] = ACTIONS(2647), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2647), - [anon_sym_AMP_EQ] = ACTIONS(2647), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2647), - [anon_sym_PLUS_EQ] = ACTIONS(2647), - [anon_sym_DASH_EQ] = ACTIONS(2647), - [anon_sym_PIPE_EQ] = ACTIONS(2647), - [anon_sym_CARET_EQ] = ACTIONS(2647), - [anon_sym_COLON_EQ] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_c_SQUOTE] = ACTIONS(2647), - [anon_sym_c_DQUOTE] = ACTIONS(2647), - [anon_sym_r_SQUOTE] = ACTIONS(2647), - [anon_sym_r_DQUOTE] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_defer] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_DOLLARfor] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_asm] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_c_SQUOTE] = ACTIONS(3262), + [anon_sym_c_DQUOTE] = ACTIONS(3262), + [anon_sym_r_SQUOTE] = ACTIONS(3262), + [anon_sym_r_DQUOTE] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_defer] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_DOLLARfor] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), }, [1084] = { [sym_line_comment] = STATE(1084), @@ -147739,112 +147977,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1085] = { [sym_line_comment] = STATE(1085), [sym_block_comment] = STATE(1085), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3314), - [anon_sym_BANG_EQ] = ACTIONS(3314), - [anon_sym_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_EQ] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [anon_sym_LT_LT] = ACTIONS(3314), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3314), - [anon_sym_AMP_CARET] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_PIPE_PIPE] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3314), - [anon_sym_POUND_LBRACK] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3314), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_STAR_EQ] = ACTIONS(3314), - [anon_sym_SLASH_EQ] = ACTIONS(3314), - [anon_sym_PERCENT_EQ] = ACTIONS(3314), - [anon_sym_LT_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_GT_EQ] = ACTIONS(3314), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3314), - [anon_sym_AMP_EQ] = ACTIONS(3314), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3314), - [anon_sym_PLUS_EQ] = ACTIONS(3314), - [anon_sym_DASH_EQ] = ACTIONS(3314), - [anon_sym_PIPE_EQ] = ACTIONS(3314), - [anon_sym_CARET_EQ] = ACTIONS(3314), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_LT_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_GT_EQ] = ACTIONS(3312), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3312), + [anon_sym_AMP_EQ] = ACTIONS(3312), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_PIPE_EQ] = ACTIONS(3312), + [anon_sym_CARET_EQ] = ACTIONS(3312), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), }, [1086] = { [sym_line_comment] = STATE(1086), @@ -147959,556 +148197,666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1087] = { [sym_line_comment] = STATE(1087), [sym_block_comment] = STATE(1087), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_EQ_EQ] = ACTIONS(3328), - [anon_sym_BANG_EQ] = ACTIONS(3328), - [anon_sym_LT_EQ] = ACTIONS(3328), - [anon_sym_GT_EQ] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3328), - [anon_sym_AMP_CARET] = ACTIONS(3328), - [anon_sym_AMP_AMP] = ACTIONS(3328), - [anon_sym_PIPE_PIPE] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_STAR_EQ] = ACTIONS(3328), - [anon_sym_SLASH_EQ] = ACTIONS(3328), - [anon_sym_PERCENT_EQ] = ACTIONS(3328), - [anon_sym_LT_LT_EQ] = ACTIONS(3328), - [anon_sym_GT_GT_EQ] = ACTIONS(3328), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3328), - [anon_sym_AMP_EQ] = ACTIONS(3328), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3328), - [anon_sym_PLUS_EQ] = ACTIONS(3328), - [anon_sym_DASH_EQ] = ACTIONS(3328), - [anon_sym_PIPE_EQ] = ACTIONS(3328), - [anon_sym_CARET_EQ] = ACTIONS(3328), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3328), - [anon_sym_r_SQUOTE] = ACTIONS(3328), - [anon_sym_r_DQUOTE] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - }, - [1088] = { - [sym_line_comment] = STATE(1088), - [sym_block_comment] = STATE(1088), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_EQ] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_COLON] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_STAR_EQ] = ACTIONS(2931), - [anon_sym_SLASH_EQ] = ACTIONS(2931), - [anon_sym_PERCENT_EQ] = ACTIONS(2931), - [anon_sym_LT_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_AMP_EQ] = ACTIONS(2931), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), - [anon_sym_PLUS_EQ] = ACTIONS(2931), - [anon_sym_DASH_EQ] = ACTIONS(2931), - [anon_sym_PIPE_EQ] = ACTIONS(2931), - [anon_sym_CARET_EQ] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [anon_sym_c_SQUOTE] = ACTIONS(2931), - [anon_sym_c_DQUOTE] = ACTIONS(2931), - [anon_sym_r_SQUOTE] = ACTIONS(2931), - [anon_sym_r_DQUOTE] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - }, - [1089] = { - [sym_line_comment] = STATE(1089), - [sym_block_comment] = STATE(1089), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_EQ] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_COLON] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_STAR_EQ] = ACTIONS(2913), - [anon_sym_SLASH_EQ] = ACTIONS(2913), - [anon_sym_PERCENT_EQ] = ACTIONS(2913), - [anon_sym_LT_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_AMP_EQ] = ACTIONS(2913), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2913), - [anon_sym_PLUS_EQ] = ACTIONS(2913), - [anon_sym_DASH_EQ] = ACTIONS(2913), - [anon_sym_PIPE_EQ] = ACTIONS(2913), - [anon_sym_CARET_EQ] = ACTIONS(2913), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_c_SQUOTE] = ACTIONS(2913), - [anon_sym_c_DQUOTE] = ACTIONS(2913), - [anon_sym_r_SQUOTE] = ACTIONS(2913), - [anon_sym_r_DQUOTE] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - }, - [1090] = { - [sym_line_comment] = STATE(1090), - [sym_block_comment] = STATE(1090), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_EQ_EQ] = ACTIONS(3336), - [anon_sym_BANG_EQ] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3336), - [anon_sym_AMP_CARET] = ACTIONS(3336), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_PIPE_PIPE] = ACTIONS(3336), - [anon_sym_or] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_STAR_EQ] = ACTIONS(3336), - [anon_sym_SLASH_EQ] = ACTIONS(3336), - [anon_sym_PERCENT_EQ] = ACTIONS(3336), - [anon_sym_LT_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_GT_EQ] = ACTIONS(3336), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3336), - [anon_sym_AMP_EQ] = ACTIONS(3336), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3336), - [anon_sym_PLUS_EQ] = ACTIONS(3336), - [anon_sym_DASH_EQ] = ACTIONS(3336), - [anon_sym_PIPE_EQ] = ACTIONS(3336), - [anon_sym_CARET_EQ] = ACTIONS(3336), - [anon_sym_COLON_EQ] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_c_SQUOTE] = ACTIONS(3336), - [anon_sym_c_DQUOTE] = ACTIONS(3336), - [anon_sym_r_SQUOTE] = ACTIONS(3336), - [anon_sym_r_DQUOTE] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_EQ_EQ] = ACTIONS(3324), + [anon_sym_BANG_EQ] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3324), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3324), + [anon_sym_AMP_CARET] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_QMARK_DOT] = ACTIONS(3324), + [anon_sym_POUND_LBRACK] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_is] = ACTIONS(3324), + [anon_sym_BANGis] = ACTIONS(3324), + [anon_sym_in] = ACTIONS(3324), + [anon_sym_BANGin] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_STAR_EQ] = ACTIONS(3324), + [anon_sym_SLASH_EQ] = ACTIONS(3324), + [anon_sym_PERCENT_EQ] = ACTIONS(3324), + [anon_sym_LT_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_GT_EQ] = ACTIONS(3324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3324), + [anon_sym_AMP_EQ] = ACTIONS(3324), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3324), + [anon_sym_PLUS_EQ] = ACTIONS(3324), + [anon_sym_DASH_EQ] = ACTIONS(3324), + [anon_sym_PIPE_EQ] = ACTIONS(3324), + [anon_sym_CARET_EQ] = ACTIONS(3324), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_assert] = ACTIONS(3324), + [anon_sym_defer] = ACTIONS(3324), + [anon_sym_goto] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_DOLLARfor] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3324), + [anon_sym_asm] = ACTIONS(3324), + }, + [1088] = { + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_LT_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_GT_EQ] = ACTIONS(3346), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3346), + [anon_sym_AMP_EQ] = ACTIONS(3346), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_PIPE_EQ] = ACTIONS(3346), + [anon_sym_CARET_EQ] = ACTIONS(3346), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + }, + [1089] = { + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [sym_identifier] = ACTIONS(2889), + [anon_sym_LF] = ACTIONS(2889), + [anon_sym_CR] = ACTIONS(2889), + [anon_sym_CR_LF] = ACTIONS(2889), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym_fn] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_STAR_EQ] = ACTIONS(2889), + [anon_sym_SLASH_EQ] = ACTIONS(2889), + [anon_sym_PERCENT_EQ] = ACTIONS(2889), + [anon_sym_LT_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_GT_EQ] = ACTIONS(2889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2889), + [anon_sym_AMP_EQ] = ACTIONS(2889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2889), + [anon_sym_PLUS_EQ] = ACTIONS(2889), + [anon_sym_DASH_EQ] = ACTIONS(2889), + [anon_sym_PIPE_EQ] = ACTIONS(2889), + [anon_sym_CARET_EQ] = ACTIONS(2889), + [anon_sym_COLON_EQ] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), + [anon_sym_assert] = ACTIONS(2889), + [anon_sym_defer] = ACTIONS(2889), + [anon_sym_goto] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_DOLLARfor] = ACTIONS(2889), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_asm] = ACTIONS(2889), + }, + [1090] = { + [sym_line_comment] = STATE(1090), + [sym_block_comment] = STATE(1090), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LF] = ACTIONS(2877), + [anon_sym_CR] = ACTIONS(2877), + [anon_sym_CR_LF] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_COLON] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_STAR_EQ] = ACTIONS(2877), + [anon_sym_SLASH_EQ] = ACTIONS(2877), + [anon_sym_PERCENT_EQ] = ACTIONS(2877), + [anon_sym_LT_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_GT_EQ] = ACTIONS(2877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2877), + [anon_sym_AMP_EQ] = ACTIONS(2877), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2877), + [anon_sym_PLUS_EQ] = ACTIONS(2877), + [anon_sym_DASH_EQ] = ACTIONS(2877), + [anon_sym_PIPE_EQ] = ACTIONS(2877), + [anon_sym_CARET_EQ] = ACTIONS(2877), + [anon_sym_COLON_EQ] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_defer] = ACTIONS(2877), + [anon_sym_goto] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_DOLLARfor] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_asm] = ACTIONS(2877), }, [1091] = { [sym_line_comment] = STATE(1091), [sym_block_comment] = STATE(1091), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_COLON] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_STAR_EQ] = ACTIONS(2865), - [anon_sym_SLASH_EQ] = ACTIONS(2865), - [anon_sym_PERCENT_EQ] = ACTIONS(2865), - [anon_sym_LT_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_AMP_EQ] = ACTIONS(2865), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2865), - [anon_sym_PLUS_EQ] = ACTIONS(2865), - [anon_sym_DASH_EQ] = ACTIONS(2865), - [anon_sym_PIPE_EQ] = ACTIONS(2865), - [anon_sym_CARET_EQ] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [anon_sym_c_SQUOTE] = ACTIONS(2865), - [anon_sym_c_DQUOTE] = ACTIONS(2865), - [anon_sym_r_SQUOTE] = ACTIONS(2865), - [anon_sym_r_DQUOTE] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_COLON] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_STAR_EQ] = ACTIONS(3350), + [anon_sym_SLASH_EQ] = ACTIONS(3350), + [anon_sym_PERCENT_EQ] = ACTIONS(3350), + [anon_sym_LT_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_GT_EQ] = ACTIONS(3350), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3350), + [anon_sym_AMP_EQ] = ACTIONS(3350), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3350), + [anon_sym_PLUS_EQ] = ACTIONS(3350), + [anon_sym_DASH_EQ] = ACTIONS(3350), + [anon_sym_PIPE_EQ] = ACTIONS(3350), + [anon_sym_CARET_EQ] = ACTIONS(3350), + [anon_sym_COLON_EQ] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), }, [1092] = { [sym_line_comment] = STATE(1092), [sym_block_comment] = STATE(1092), + [sym_identifier] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2849), + [anon_sym_CR] = ACTIONS(2849), + [anon_sym_CR_LF] = ACTIONS(2849), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_STAR_EQ] = ACTIONS(2849), + [anon_sym_SLASH_EQ] = ACTIONS(2849), + [anon_sym_PERCENT_EQ] = ACTIONS(2849), + [anon_sym_LT_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_GT_EQ] = ACTIONS(2849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2849), + [anon_sym_AMP_EQ] = ACTIONS(2849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2849), + [anon_sym_PLUS_EQ] = ACTIONS(2849), + [anon_sym_DASH_EQ] = ACTIONS(2849), + [anon_sym_PIPE_EQ] = ACTIONS(2849), + [anon_sym_CARET_EQ] = ACTIONS(2849), + [anon_sym_COLON_EQ] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_defer] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_DOLLARfor] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_asm] = ACTIONS(2849), + }, + [1093] = { + [sym_line_comment] = STATE(1093), + [sym_block_comment] = STATE(1093), [sym_identifier] = ACTIONS(2845), [anon_sym_LF] = ACTIONS(2845), [anon_sym_CR] = ACTIONS(2845), @@ -148616,559 +148964,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2845), [anon_sym_asm] = ACTIONS(2845), }, - [1093] = { - [sym_line_comment] = STATE(1093), - [sym_block_comment] = STATE(1093), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3350), - [anon_sym_GT_GT_GT] = ACTIONS(3350), - [anon_sym_AMP_CARET] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_or] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_QMARK_DOT] = ACTIONS(3350), - [anon_sym_POUND_LBRACK] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3350), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_LT_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_GT_EQ] = ACTIONS(3350), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3350), - [anon_sym_AMP_EQ] = ACTIONS(3350), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_PIPE_EQ] = ACTIONS(3350), - [anon_sym_CARET_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_defer] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_DOLLARfor] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - }, [1094] = { [sym_line_comment] = STATE(1094), [sym_block_comment] = STATE(1094), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [anon_sym_CR] = ACTIONS(2459), - [anon_sym_CR_LF] = ACTIONS(2459), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_EQ] = 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_mut] = ACTIONS(2459), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_c_SQUOTE] = ACTIONS(2459), - [anon_sym_c_DQUOTE] = ACTIONS(2459), - [anon_sym_r_SQUOTE] = ACTIONS(2459), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(3356), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_STAR_EQ] = ACTIONS(3356), + [anon_sym_SLASH_EQ] = ACTIONS(3356), + [anon_sym_PERCENT_EQ] = ACTIONS(3356), + [anon_sym_LT_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_AMP_EQ] = ACTIONS(3356), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3356), + [anon_sym_PLUS_EQ] = ACTIONS(3356), + [anon_sym_DASH_EQ] = ACTIONS(3356), + [anon_sym_PIPE_EQ] = ACTIONS(3356), + [anon_sym_CARET_EQ] = ACTIONS(3356), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), }, [1095] = { [sym_line_comment] = STATE(1095), [sym_block_comment] = STATE(1095), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LF] = ACTIONS(2947), + [anon_sym_CR] = ACTIONS(2947), + [anon_sym_CR_LF] = ACTIONS(2947), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3354), - [anon_sym_BANG_EQ] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_COLON] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3354), - [anon_sym_AMP_CARET] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_PIPE_PIPE] = ACTIONS(3354), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_STAR_EQ] = ACTIONS(3354), - [anon_sym_SLASH_EQ] = ACTIONS(3354), - [anon_sym_PERCENT_EQ] = ACTIONS(3354), - [anon_sym_LT_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_GT_EQ] = ACTIONS(3354), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3354), - [anon_sym_AMP_EQ] = ACTIONS(3354), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3354), - [anon_sym_PLUS_EQ] = ACTIONS(3354), - [anon_sym_DASH_EQ] = ACTIONS(3354), - [anon_sym_PIPE_EQ] = ACTIONS(3354), - [anon_sym_CARET_EQ] = ACTIONS(3354), - [anon_sym_COLON_EQ] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_as] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_EQ] = ACTIONS(2947), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_mut] = ACTIONS(2947), + [anon_sym_COLON] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_QMARK] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2947), + [anon_sym_spawn] = ACTIONS(2947), + [anon_sym_json_DOTdecode] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2947), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2947), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_or] = ACTIONS(2947), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_QMARK_DOT] = ACTIONS(2947), + [anon_sym_POUND_LBRACK] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_DOLLARif] = ACTIONS(2947), + [anon_sym_is] = ACTIONS(2947), + [anon_sym_BANGis] = ACTIONS(2947), + [anon_sym_in] = ACTIONS(2947), + [anon_sym_BANGin] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_select] = ACTIONS(2947), + [anon_sym_STAR_EQ] = ACTIONS(2947), + [anon_sym_SLASH_EQ] = ACTIONS(2947), + [anon_sym_PERCENT_EQ] = ACTIONS(2947), + [anon_sym_LT_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_GT_EQ] = ACTIONS(2947), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2947), + [anon_sym_AMP_EQ] = ACTIONS(2947), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2947), + [anon_sym_PLUS_EQ] = ACTIONS(2947), + [anon_sym_DASH_EQ] = ACTIONS(2947), + [anon_sym_PIPE_EQ] = ACTIONS(2947), + [anon_sym_CARET_EQ] = ACTIONS(2947), + [anon_sym_COLON_EQ] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2947), + [anon_sym_rlock] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_sql] = ACTIONS(2947), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2947), + [sym_rune_literal] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_c_SQUOTE] = ACTIONS(2947), + [anon_sym_c_DQUOTE] = ACTIONS(2947), + [anon_sym_r_SQUOTE] = ACTIONS(2947), + [anon_sym_r_DQUOTE] = ACTIONS(2947), + [sym_pseudo_compile_time_identifier] = ACTIONS(2947), + [anon_sym_shared] = ACTIONS(2947), + [anon_sym_map_LBRACK] = ACTIONS(2947), + [anon_sym_chan] = ACTIONS(2947), + [anon_sym_thread] = ACTIONS(2947), + [anon_sym_atomic] = ACTIONS(2947), + [anon_sym_assert] = ACTIONS(2947), + [anon_sym_defer] = ACTIONS(2947), + [anon_sym_goto] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_DOLLARfor] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_asm] = ACTIONS(2947), }, [1096] = { [sym_line_comment] = STATE(1096), [sym_block_comment] = STATE(1096), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_STAR_EQ] = ACTIONS(3074), - [anon_sym_SLASH_EQ] = ACTIONS(3074), - [anon_sym_PERCENT_EQ] = ACTIONS(3074), - [anon_sym_LT_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_AMP_EQ] = ACTIONS(3074), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3074), - [anon_sym_PLUS_EQ] = ACTIONS(3074), - [anon_sym_DASH_EQ] = ACTIONS(3074), - [anon_sym_PIPE_EQ] = ACTIONS(3074), - [anon_sym_CARET_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_c_SQUOTE] = ACTIONS(3074), - [anon_sym_c_DQUOTE] = ACTIONS(3074), - [anon_sym_r_SQUOTE] = ACTIONS(3074), - [anon_sym_r_DQUOTE] = ACTIONS(3074), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - }, - [1097] = { - [sym_line_comment] = STATE(1097), - [sym_block_comment] = STATE(1097), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_COLON] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_STAR_EQ] = ACTIONS(2439), - [anon_sym_SLASH_EQ] = ACTIONS(2439), - [anon_sym_PERCENT_EQ] = ACTIONS(2439), - [anon_sym_LT_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_AMP_EQ] = ACTIONS(2439), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), - [anon_sym_PLUS_EQ] = ACTIONS(2439), - [anon_sym_DASH_EQ] = ACTIONS(2439), - [anon_sym_PIPE_EQ] = ACTIONS(2439), - [anon_sym_CARET_EQ] = ACTIONS(2439), - [anon_sym_COLON_EQ] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), - }, - [1098] = { - [sym_line_comment] = STATE(1098), - [sym_block_comment] = STATE(1098), [sym_identifier] = ACTIONS(2935), [anon_sym_LF] = ACTIONS(2935), [anon_sym_CR] = ACTIONS(2935), @@ -149276,339 +149294,669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2935), [anon_sym_asm] = ACTIONS(2935), }, + [1097] = { + [sym_line_comment] = STATE(1097), + [sym_block_comment] = STATE(1097), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_LT_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_GT_EQ] = ACTIONS(3080), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3080), + [anon_sym_AMP_EQ] = ACTIONS(3080), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3080), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_PIPE_EQ] = ACTIONS(3080), + [anon_sym_CARET_EQ] = ACTIONS(3080), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_c_SQUOTE] = ACTIONS(3080), + [anon_sym_c_DQUOTE] = ACTIONS(3080), + [anon_sym_r_SQUOTE] = ACTIONS(3080), + [anon_sym_r_DQUOTE] = ACTIONS(3080), + [sym_pseudo_compile_time_identifier] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_assert] = ACTIONS(3080), + [anon_sym_defer] = ACTIONS(3080), + [anon_sym_goto] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_DOLLARfor] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_asm] = ACTIONS(3080), + }, + [1098] = { + [sym_line_comment] = STATE(1098), + [sym_block_comment] = STATE(1098), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + }, [1099] = { [sym_line_comment] = STATE(1099), [sym_block_comment] = STATE(1099), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LF] = ACTIONS(3324), - [anon_sym_CR] = ACTIONS(3324), - [anon_sym_CR_LF] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_as] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_fn] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_EQ_EQ] = ACTIONS(3324), - [anon_sym_BANG_EQ] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_mut] = ACTIONS(3324), - [anon_sym_COLON] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_go] = ACTIONS(3324), - [anon_sym_spawn] = ACTIONS(3324), - [anon_sym_json_DOTdecode] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_LBRACK2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_LT_DASH] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3324), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3324), - [anon_sym_AMP_CARET] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_PIPE_PIPE] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(3324), - [sym_none] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_nil] = ACTIONS(3324), - [anon_sym_QMARK_DOT] = ACTIONS(3324), - [anon_sym_POUND_LBRACK] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3324), - [anon_sym_is] = ACTIONS(3324), - [anon_sym_BANGis] = ACTIONS(3324), - [anon_sym_in] = ACTIONS(3324), - [anon_sym_BANGin] = ACTIONS(3324), - [anon_sym_match] = ACTIONS(3324), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_STAR_EQ] = ACTIONS(3324), - [anon_sym_SLASH_EQ] = ACTIONS(3324), - [anon_sym_PERCENT_EQ] = ACTIONS(3324), - [anon_sym_LT_LT_EQ] = ACTIONS(3324), - [anon_sym_GT_GT_EQ] = ACTIONS(3324), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3324), - [anon_sym_AMP_EQ] = ACTIONS(3324), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3324), - [anon_sym_PLUS_EQ] = ACTIONS(3324), - [anon_sym_DASH_EQ] = ACTIONS(3324), - [anon_sym_PIPE_EQ] = ACTIONS(3324), - [anon_sym_CARET_EQ] = ACTIONS(3324), - [anon_sym_COLON_EQ] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3324), - [anon_sym_rlock] = ACTIONS(3324), - [anon_sym_unsafe] = ACTIONS(3324), - [anon_sym_sql] = ACTIONS(3324), - [sym_int_literal] = ACTIONS(3324), - [sym_float_literal] = ACTIONS(3324), - [sym_rune_literal] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_c_SQUOTE] = ACTIONS(3324), - [anon_sym_c_DQUOTE] = ACTIONS(3324), - [anon_sym_r_SQUOTE] = ACTIONS(3324), - [anon_sym_r_DQUOTE] = ACTIONS(3324), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(3324), - [anon_sym_map_LBRACK] = ACTIONS(3324), - [anon_sym_chan] = ACTIONS(3324), - [anon_sym_thread] = ACTIONS(3324), - [anon_sym_atomic] = ACTIONS(3324), - [anon_sym_assert] = ACTIONS(3324), - [anon_sym_defer] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_DOLLARfor] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3324), - [anon_sym_asm] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_STAR_EQ] = ACTIONS(3296), + [anon_sym_SLASH_EQ] = ACTIONS(3296), + [anon_sym_PERCENT_EQ] = ACTIONS(3296), + [anon_sym_LT_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_GT_EQ] = ACTIONS(3296), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3296), + [anon_sym_AMP_EQ] = ACTIONS(3296), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3296), + [anon_sym_PLUS_EQ] = ACTIONS(3296), + [anon_sym_DASH_EQ] = ACTIONS(3296), + [anon_sym_PIPE_EQ] = ACTIONS(3296), + [anon_sym_CARET_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), }, [1100] = { [sym_line_comment] = STATE(1100), [sym_block_comment] = STATE(1100), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_CR] = ACTIONS(3346), - [anon_sym_CR_LF] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3346), - [anon_sym_fn] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_mut] = ACTIONS(3346), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_go] = ACTIONS(3346), - [anon_sym_spawn] = ACTIONS(3346), - [anon_sym_json_DOTdecode] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3346), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_or] = ACTIONS(3346), - [sym_none] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_nil] = ACTIONS(3346), - [anon_sym_QMARK_DOT] = ACTIONS(3346), - [anon_sym_POUND_LBRACK] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3346), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_select] = ACTIONS(3346), - [anon_sym_STAR_EQ] = ACTIONS(3346), - [anon_sym_SLASH_EQ] = ACTIONS(3346), - [anon_sym_PERCENT_EQ] = ACTIONS(3346), - [anon_sym_LT_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_GT_EQ] = ACTIONS(3346), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3346), - [anon_sym_AMP_EQ] = ACTIONS(3346), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3346), - [anon_sym_PLUS_EQ] = ACTIONS(3346), - [anon_sym_DASH_EQ] = ACTIONS(3346), - [anon_sym_PIPE_EQ] = ACTIONS(3346), - [anon_sym_CARET_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3346), - [anon_sym_lock] = ACTIONS(3346), - [anon_sym_rlock] = ACTIONS(3346), - [anon_sym_unsafe] = ACTIONS(3346), - [anon_sym_sql] = ACTIONS(3346), - [sym_int_literal] = ACTIONS(3346), - [sym_float_literal] = ACTIONS(3346), - [sym_rune_literal] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_c_SQUOTE] = ACTIONS(3346), - [anon_sym_c_DQUOTE] = ACTIONS(3346), - [anon_sym_r_SQUOTE] = ACTIONS(3346), - [anon_sym_r_DQUOTE] = ACTIONS(3346), - [sym_pseudo_compile_time_identifier] = ACTIONS(3346), - [anon_sym_shared] = ACTIONS(3346), - [anon_sym_map_LBRACK] = ACTIONS(3346), - [anon_sym_chan] = ACTIONS(3346), - [anon_sym_thread] = ACTIONS(3346), - [anon_sym_atomic] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_defer] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_DOLLARfor] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_POUND] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_LT_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_GT_EQ] = ACTIONS(3340), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3340), + [anon_sym_AMP_EQ] = ACTIONS(3340), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_PIPE_EQ] = ACTIONS(3340), + [anon_sym_CARET_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_c_SQUOTE] = ACTIONS(3340), + [anon_sym_c_DQUOTE] = ACTIONS(3340), + [anon_sym_r_SQUOTE] = ACTIONS(3340), + [anon_sym_r_DQUOTE] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), }, [1101] = { [sym_line_comment] = STATE(1101), [sym_block_comment] = STATE(1101), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_QMARK_DOT] = ACTIONS(3286), - [anon_sym_POUND_LBRACK] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_is] = ACTIONS(3286), - [anon_sym_BANGis] = ACTIONS(3286), - [anon_sym_in] = ACTIONS(3286), - [anon_sym_BANGin] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_STAR_EQ] = ACTIONS(3286), - [anon_sym_SLASH_EQ] = ACTIONS(3286), - [anon_sym_PERCENT_EQ] = ACTIONS(3286), - [anon_sym_LT_LT_EQ] = ACTIONS(3286), - [anon_sym_GT_GT_EQ] = ACTIONS(3286), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3286), - [anon_sym_AMP_EQ] = ACTIONS(3286), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3286), - [anon_sym_PLUS_EQ] = ACTIONS(3286), - [anon_sym_DASH_EQ] = ACTIONS(3286), - [anon_sym_PIPE_EQ] = ACTIONS(3286), - [anon_sym_CARET_EQ] = ACTIONS(3286), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - [anon_sym_assert] = ACTIONS(3286), - [anon_sym_defer] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_DOLLARfor] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_STAR_EQ] = ACTIONS(3336), + [anon_sym_SLASH_EQ] = ACTIONS(3336), + [anon_sym_PERCENT_EQ] = ACTIONS(3336), + [anon_sym_LT_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_GT_EQ] = ACTIONS(3336), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3336), + [anon_sym_AMP_EQ] = ACTIONS(3336), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3336), + [anon_sym_PLUS_EQ] = ACTIONS(3336), + [anon_sym_DASH_EQ] = ACTIONS(3336), + [anon_sym_PIPE_EQ] = ACTIONS(3336), + [anon_sym_CARET_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_c_SQUOTE] = ACTIONS(3336), + [anon_sym_c_DQUOTE] = ACTIONS(3336), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_defer] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_DOLLARfor] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), }, [1102] = { [sym_line_comment] = STATE(1102), [sym_block_comment] = STATE(1102), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_STAR_EQ] = ACTIONS(3292), + [anon_sym_SLASH_EQ] = ACTIONS(3292), + [anon_sym_PERCENT_EQ] = ACTIONS(3292), + [anon_sym_LT_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_GT_EQ] = ACTIONS(3292), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3292), + [anon_sym_AMP_EQ] = ACTIONS(3292), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3292), + [anon_sym_PLUS_EQ] = ACTIONS(3292), + [anon_sym_DASH_EQ] = ACTIONS(3292), + [anon_sym_PIPE_EQ] = ACTIONS(3292), + [anon_sym_CARET_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), + }, + [1103] = { + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), [sym_identifier] = ACTIONS(3332), [anon_sym_LF] = ACTIONS(3332), [anon_sym_CR] = ACTIONS(3332), @@ -149716,339 +150064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3332), [anon_sym_asm] = ACTIONS(3332), }, - [1103] = { - [sym_line_comment] = STATE(1103), - [sym_block_comment] = STATE(1103), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LF] = ACTIONS(3278), - [anon_sym_CR] = ACTIONS(3278), - [anon_sym_CR_LF] = ACTIONS(3278), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3278), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3278), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3278), - [anon_sym_POUND_LBRACK] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3278), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_STAR_EQ] = ACTIONS(3278), - [anon_sym_SLASH_EQ] = ACTIONS(3278), - [anon_sym_PERCENT_EQ] = ACTIONS(3278), - [anon_sym_LT_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_GT_EQ] = ACTIONS(3278), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3278), - [anon_sym_AMP_EQ] = ACTIONS(3278), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3278), - [anon_sym_PLUS_EQ] = ACTIONS(3278), - [anon_sym_DASH_EQ] = ACTIONS(3278), - [anon_sym_PIPE_EQ] = ACTIONS(3278), - [anon_sym_CARET_EQ] = ACTIONS(3278), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3278), - [sym_rune_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_c_SQUOTE] = ACTIONS(3278), - [anon_sym_c_DQUOTE] = ACTIONS(3278), - [anon_sym_r_SQUOTE] = ACTIONS(3278), - [anon_sym_r_DQUOTE] = ACTIONS(3278), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3278), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_defer] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_DOLLARfor] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - }, [1104] = { [sym_line_comment] = STATE(1104), [sym_block_comment] = STATE(1104), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LF] = ACTIONS(3262), - [anon_sym_CR] = ACTIONS(3262), - [anon_sym_CR_LF] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3262), - [anon_sym_fn] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_mut] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_go] = ACTIONS(3262), - [anon_sym_spawn] = ACTIONS(3262), - [anon_sym_json_DOTdecode] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_LBRACK2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_GT_GT_GT] = ACTIONS(3262), - [anon_sym_AMP_CARET] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_or] = ACTIONS(3262), - [sym_none] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_nil] = ACTIONS(3262), - [anon_sym_QMARK_DOT] = ACTIONS(3262), - [anon_sym_POUND_LBRACK] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_DOLLARif] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_BANGis] = ACTIONS(3262), - [anon_sym_in] = ACTIONS(3262), - [anon_sym_BANGin] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_select] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_LT_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_GT_EQ] = ACTIONS(3262), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3262), - [anon_sym_AMP_EQ] = ACTIONS(3262), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_PIPE_EQ] = ACTIONS(3262), - [anon_sym_CARET_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3262), - [anon_sym_lock] = ACTIONS(3262), - [anon_sym_rlock] = ACTIONS(3262), - [anon_sym_unsafe] = ACTIONS(3262), - [anon_sym_sql] = ACTIONS(3262), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(3262), - [sym_rune_literal] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_c_SQUOTE] = ACTIONS(3262), - [anon_sym_c_DQUOTE] = ACTIONS(3262), - [anon_sym_r_SQUOTE] = ACTIONS(3262), - [anon_sym_r_DQUOTE] = ACTIONS(3262), - [sym_pseudo_compile_time_identifier] = ACTIONS(3262), - [anon_sym_shared] = ACTIONS(3262), - [anon_sym_map_LBRACK] = ACTIONS(3262), - [anon_sym_chan] = ACTIONS(3262), - [anon_sym_thread] = ACTIONS(3262), - [anon_sym_atomic] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_defer] = ACTIONS(3262), - [anon_sym_goto] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_DOLLARfor] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_POUND] = ACTIONS(3262), - [anon_sym_asm] = ACTIONS(3262), - }, - [1105] = { - [sym_line_comment] = STATE(1105), - [sym_block_comment] = STATE(1105), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_COMMA] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3254), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3254), - [anon_sym_AMP_CARET] = ACTIONS(3254), - [anon_sym_AMP_AMP] = ACTIONS(3254), - [anon_sym_PIPE_PIPE] = ACTIONS(3254), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3254), - [anon_sym_POUND_LBRACK] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3254), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_STAR_EQ] = ACTIONS(3254), - [anon_sym_SLASH_EQ] = ACTIONS(3254), - [anon_sym_PERCENT_EQ] = ACTIONS(3254), - [anon_sym_LT_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_GT_EQ] = ACTIONS(3254), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3254), - [anon_sym_AMP_EQ] = ACTIONS(3254), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3254), - [anon_sym_PLUS_EQ] = ACTIONS(3254), - [anon_sym_DASH_EQ] = ACTIONS(3254), - [anon_sym_PIPE_EQ] = ACTIONS(3254), - [anon_sym_CARET_EQ] = ACTIONS(3254), - [anon_sym_COLON_EQ] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - }, - [1106] = { - [sym_line_comment] = STATE(1106), - [sym_block_comment] = STATE(1106), [sym_identifier] = ACTIONS(3274), [anon_sym_LF] = ACTIONS(3274), [anon_sym_CR] = ACTIONS(3274), @@ -150156,659 +150174,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3274), [anon_sym_asm] = ACTIONS(3274), }, + [1105] = { + [sym_line_comment] = STATE(1105), + [sym_block_comment] = STATE(1105), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3256), + [anon_sym_CR] = ACTIONS(3256), + [anon_sym_CR_LF] = ACTIONS(3256), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_STAR_EQ] = ACTIONS(3256), + [anon_sym_SLASH_EQ] = ACTIONS(3256), + [anon_sym_PERCENT_EQ] = ACTIONS(3256), + [anon_sym_LT_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_GT_EQ] = ACTIONS(3256), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3256), + [anon_sym_AMP_EQ] = ACTIONS(3256), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3256), + [anon_sym_PLUS_EQ] = ACTIONS(3256), + [anon_sym_DASH_EQ] = ACTIONS(3256), + [anon_sym_PIPE_EQ] = ACTIONS(3256), + [anon_sym_CARET_EQ] = ACTIONS(3256), + [anon_sym_COLON_EQ] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_c_SQUOTE] = ACTIONS(3256), + [anon_sym_c_DQUOTE] = ACTIONS(3256), + [anon_sym_r_SQUOTE] = ACTIONS(3256), + [anon_sym_r_DQUOTE] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), + [anon_sym_assert] = ACTIONS(3256), + [anon_sym_defer] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_DOLLARfor] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + }, + [1106] = { + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_COLON_EQ] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + }, [1107] = { [sym_line_comment] = STATE(1107), [sym_block_comment] = STATE(1107), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_EQ] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3258), - [anon_sym_BANG_EQ] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_COLON] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3258), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_CARET] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3258), - [anon_sym_POUND_LBRACK] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3258), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_STAR_EQ] = ACTIONS(3258), - [anon_sym_SLASH_EQ] = ACTIONS(3258), - [anon_sym_PERCENT_EQ] = ACTIONS(3258), - [anon_sym_LT_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_GT_EQ] = ACTIONS(3258), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3258), - [anon_sym_AMP_EQ] = ACTIONS(3258), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3258), - [anon_sym_PLUS_EQ] = ACTIONS(3258), - [anon_sym_DASH_EQ] = ACTIONS(3258), - [anon_sym_PIPE_EQ] = ACTIONS(3258), - [anon_sym_CARET_EQ] = ACTIONS(3258), - [anon_sym_COLON_EQ] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_COLON_EQ] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_c_SQUOTE] = ACTIONS(3270), + [anon_sym_c_DQUOTE] = ACTIONS(3270), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), }, [1108] = { [sym_line_comment] = STATE(1108), [sym_block_comment] = STATE(1108), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3248), - [anon_sym_POUND_LBRACK] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_LT_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_GT_EQ] = ACTIONS(3248), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3248), - [anon_sym_AMP_EQ] = ACTIONS(3248), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_PIPE_EQ] = ACTIONS(3248), - [anon_sym_CARET_EQ] = ACTIONS(3248), - [anon_sym_COLON_EQ] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_COLON_EQ] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), }, [1109] = { [sym_line_comment] = STATE(1109), [sym_block_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LF] = ACTIONS(3084), - [anon_sym_CR] = ACTIONS(3084), - [anon_sym_CR_LF] = ACTIONS(3084), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_EQ] = ACTIONS(3084), - [anon_sym_fn] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_mut] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_go] = ACTIONS(3084), - [anon_sym_spawn] = ACTIONS(3084), - [anon_sym_json_DOTdecode] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_LT_DASH] = ACTIONS(3084), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3084), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_true] = ACTIONS(3084), - [sym_false] = ACTIONS(3084), - [sym_nil] = ACTIONS(3084), - [anon_sym_QMARK_DOT] = ACTIONS(3084), - [anon_sym_POUND_LBRACK] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_DOLLARif] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3084), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_STAR_EQ] = ACTIONS(3084), - [anon_sym_SLASH_EQ] = ACTIONS(3084), - [anon_sym_PERCENT_EQ] = ACTIONS(3084), - [anon_sym_LT_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_GT_EQ] = ACTIONS(3084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3084), - [anon_sym_AMP_EQ] = ACTIONS(3084), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3084), - [anon_sym_PLUS_EQ] = ACTIONS(3084), - [anon_sym_DASH_EQ] = ACTIONS(3084), - [anon_sym_PIPE_EQ] = ACTIONS(3084), - [anon_sym_CARET_EQ] = ACTIONS(3084), - [anon_sym_COLON_EQ] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3084), - [anon_sym_rlock] = ACTIONS(3084), - [anon_sym_unsafe] = ACTIONS(3084), - [anon_sym_sql] = ACTIONS(3084), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(3084), - [sym_rune_literal] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [anon_sym_c_SQUOTE] = ACTIONS(3084), - [anon_sym_c_DQUOTE] = ACTIONS(3084), - [anon_sym_r_SQUOTE] = ACTIONS(3084), - [anon_sym_r_DQUOTE] = ACTIONS(3084), - [sym_pseudo_compile_time_identifier] = ACTIONS(3084), - [anon_sym_shared] = ACTIONS(3084), - [anon_sym_map_LBRACK] = ACTIONS(3084), - [anon_sym_chan] = ACTIONS(3084), - [anon_sym_thread] = ACTIONS(3084), - [anon_sym_atomic] = ACTIONS(3084), - [anon_sym_assert] = ACTIONS(3084), - [anon_sym_defer] = ACTIONS(3084), - [anon_sym_goto] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_DOLLARfor] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [anon_sym_asm] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_STAR_EQ] = ACTIONS(2961), + [anon_sym_SLASH_EQ] = ACTIONS(2961), + [anon_sym_PERCENT_EQ] = ACTIONS(2961), + [anon_sym_LT_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_GT_EQ] = ACTIONS(2961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2961), + [anon_sym_AMP_EQ] = ACTIONS(2961), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2961), + [anon_sym_PIPE_EQ] = ACTIONS(2961), + [anon_sym_CARET_EQ] = ACTIONS(2961), + [anon_sym_COLON_EQ] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), }, [1110] = { [sym_line_comment] = STATE(1110), [sym_block_comment] = STATE(1110), - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_STAR_EQ] = ACTIONS(2977), - [anon_sym_SLASH_EQ] = ACTIONS(2977), - [anon_sym_PERCENT_EQ] = ACTIONS(2977), - [anon_sym_LT_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_GT_EQ] = ACTIONS(2977), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2977), - [anon_sym_AMP_EQ] = ACTIONS(2977), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2977), - [anon_sym_PLUS_EQ] = ACTIONS(2977), - [anon_sym_DASH_EQ] = ACTIONS(2977), - [anon_sym_PIPE_EQ] = ACTIONS(2977), - [anon_sym_CARET_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_c_SQUOTE] = ACTIONS(2977), - [anon_sym_c_DQUOTE] = ACTIONS(2977), - [anon_sym_r_SQUOTE] = ACTIONS(2977), - [anon_sym_r_DQUOTE] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_defer] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_DOLLARfor] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_COLON_EQ] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), }, [1111] = { [sym_line_comment] = STATE(1111), [sym_block_comment] = STATE(1111), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LF] = ACTIONS(2957), - [anon_sym_CR] = ACTIONS(2957), - [anon_sym_CR_LF] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_EQ] = ACTIONS(2957), - [anon_sym_fn] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_mut] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_go] = ACTIONS(2957), - [anon_sym_spawn] = ACTIONS(2957), - [anon_sym_json_DOTdecode] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_LT_DASH] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2957), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_AMP_CARET] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2957), - [sym_none] = ACTIONS(2957), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_nil] = ACTIONS(2957), - [anon_sym_QMARK_DOT] = ACTIONS(2957), - [anon_sym_POUND_LBRACK] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_DOLLARif] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_BANGis] = ACTIONS(2957), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_BANGin] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_STAR_EQ] = ACTIONS(2957), - [anon_sym_SLASH_EQ] = ACTIONS(2957), - [anon_sym_PERCENT_EQ] = ACTIONS(2957), - [anon_sym_LT_LT_EQ] = ACTIONS(2957), - [anon_sym_GT_GT_EQ] = ACTIONS(2957), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2957), - [anon_sym_AMP_EQ] = ACTIONS(2957), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2957), - [anon_sym_PLUS_EQ] = ACTIONS(2957), - [anon_sym_DASH_EQ] = ACTIONS(2957), - [anon_sym_PIPE_EQ] = ACTIONS(2957), - [anon_sym_CARET_EQ] = ACTIONS(2957), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2957), - [anon_sym_sql] = ACTIONS(2957), - [sym_int_literal] = ACTIONS(2957), - [sym_float_literal] = ACTIONS(2957), - [sym_rune_literal] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_c_SQUOTE] = ACTIONS(2957), - [anon_sym_c_DQUOTE] = ACTIONS(2957), - [anon_sym_r_SQUOTE] = ACTIONS(2957), - [anon_sym_r_DQUOTE] = ACTIONS(2957), - [sym_pseudo_compile_time_identifier] = ACTIONS(2957), - [anon_sym_shared] = ACTIONS(2957), - [anon_sym_map_LBRACK] = ACTIONS(2957), - [anon_sym_chan] = ACTIONS(2957), - [anon_sym_thread] = ACTIONS(2957), - [anon_sym_atomic] = ACTIONS(2957), - [anon_sym_assert] = ACTIONS(2957), - [anon_sym_defer] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_DOLLARfor] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_POUND] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_CARET] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_STAR_EQ] = ACTIONS(2973), + [anon_sym_SLASH_EQ] = ACTIONS(2973), + [anon_sym_PERCENT_EQ] = ACTIONS(2973), + [anon_sym_LT_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_GT_EQ] = ACTIONS(2973), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2973), + [anon_sym_AMP_EQ] = ACTIONS(2973), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2973), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_PIPE_EQ] = ACTIONS(2973), + [anon_sym_CARET_EQ] = ACTIONS(2973), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_assert] = ACTIONS(2973), + [anon_sym_defer] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_DOLLARfor] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), }, [1112] = { [sym_line_comment] = STATE(1112), [sym_block_comment] = STATE(1112), - [sym_reference_expression] = STATE(4457), - [sym_type_reference_expression] = STATE(3434), - [sym_plain_type] = STATE(3453), - [sym__plain_type_without_special] = STATE(3468), - [sym_anon_struct_type] = STATE(3455), - [sym_multi_return_type] = STATE(3468), - [sym_result_type] = STATE(3468), - [sym_option_type] = STATE(3468), - [sym_qualified_type] = STATE(3434), - [sym_fixed_array_type] = STATE(3455), - [sym_array_type] = STATE(3455), - [sym_pointer_type] = STATE(3455), - [sym_wrong_pointer_type] = STATE(3455), - [sym_map_type] = STATE(3455), - [sym_channel_type] = STATE(3455), - [sym_shared_type] = STATE(3455), - [sym_thread_type] = STATE(3455), - [sym_atomic_type] = STATE(3455), - [sym_generic_type] = STATE(3455), - [sym_function_type] = STATE(3455), + [sym_reference_expression] = STATE(4454), + [sym_type_reference_expression] = STATE(3423), + [sym_plain_type] = STATE(3452), + [sym__plain_type_without_special] = STATE(3458), + [sym_anon_struct_type] = STATE(3459), + [sym_multi_return_type] = STATE(3458), + [sym_result_type] = STATE(3458), + [sym_option_type] = STATE(3458), + [sym_qualified_type] = STATE(3423), + [sym_fixed_array_type] = STATE(3459), + [sym_array_type] = STATE(3459), + [sym_pointer_type] = STATE(3459), + [sym_wrong_pointer_type] = STATE(3459), + [sym_map_type] = STATE(3459), + [sym_channel_type] = STATE(3459), + [sym_shared_type] = STATE(3459), + [sym_thread_type] = STATE(3459), + [sym_atomic_type] = STATE(3459), + [sym_generic_type] = STATE(3459), + [sym_function_type] = STATE(3459), [sym_identifier] = ACTIONS(3804), - [anon_sym_LF] = ACTIONS(2175), - [anon_sym_CR] = ACTIONS(2175), - [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2177), + [anon_sym_CR] = ACTIONS(2177), + [anon_sym_CR_LF] = ACTIONS(2177), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(3806), - [anon_sym___global] = ACTIONS(2465), + [anon_sym___global] = ACTIONS(2373), [anon_sym_fn] = ACTIONS(3808), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), [anon_sym_STAR] = ACTIONS(3810), - [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(2178), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), [anon_sym_struct] = ACTIONS(3812), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_pub] = ACTIONS(2373), + [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(3814), [anon_sym_BANG] = ACTIONS(3816), - [anon_sym_go] = ACTIONS(2173), - [anon_sym_spawn] = ACTIONS(2173), - [anon_sym_json_DOTdecode] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), [anon_sym_LBRACK2] = ACTIONS(3818), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), [anon_sym_AMP] = ACTIONS(3820), - [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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(2173), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), [anon_sym_shared] = ACTIONS(3822), [anon_sym_map_LBRACK] = ACTIONS(3824), [anon_sym_chan] = ACTIONS(3826), @@ -150818,213 +151056,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1113] = { [sym_line_comment] = STATE(1113), [sym_block_comment] = STATE(1113), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_STAR_EQ] = ACTIONS(2439), - [anon_sym_SLASH_EQ] = ACTIONS(2439), - [anon_sym_PERCENT_EQ] = ACTIONS(2439), - [anon_sym_LT_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_AMP_EQ] = ACTIONS(2439), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), - [anon_sym_PLUS_EQ] = ACTIONS(2439), - [anon_sym_DASH_EQ] = ACTIONS(2439), - [anon_sym_PIPE_EQ] = ACTIONS(2439), - [anon_sym_CARET_EQ] = ACTIONS(2439), - [anon_sym_COLON_EQ] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_STAR_EQ] = ACTIONS(2445), + [anon_sym_SLASH_EQ] = ACTIONS(2445), + [anon_sym_PERCENT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_AMP_EQ] = ACTIONS(2445), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(2445), + [anon_sym_DASH_EQ] = ACTIONS(2445), + [anon_sym_PIPE_EQ] = ACTIONS(2445), + [anon_sym_CARET_EQ] = ACTIONS(2445), + [anon_sym_COLON_EQ] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), }, [1114] = { [sym_line_comment] = STATE(1114), [sym_block_comment] = STATE(1114), - [sym_reference_expression] = STATE(4505), - [sym_type_reference_expression] = STATE(1429), - [sym_plain_type] = STATE(1464), - [sym__plain_type_without_special] = STATE(1541), - [sym_anon_struct_type] = STATE(1543), - [sym_multi_return_type] = STATE(1541), - [sym_result_type] = STATE(1541), - [sym_option_type] = STATE(1541), - [sym_qualified_type] = STATE(1429), - [sym_fixed_array_type] = STATE(1543), - [sym_array_type] = STATE(1543), - [sym_pointer_type] = STATE(1543), - [sym_wrong_pointer_type] = STATE(1543), - [sym_map_type] = STATE(1543), - [sym_channel_type] = STATE(1543), - [sym_shared_type] = STATE(1543), - [sym_thread_type] = STATE(1543), - [sym_atomic_type] = STATE(1543), - [sym_generic_type] = STATE(1543), - [sym_function_type] = STATE(1543), + [sym_reference_expression] = STATE(4507), + [sym_type_reference_expression] = STATE(1426), + [sym_plain_type] = STATE(1549), + [sym__plain_type_without_special] = STATE(1528), + [sym_anon_struct_type] = STATE(1529), + [sym_multi_return_type] = STATE(1528), + [sym_result_type] = STATE(1528), + [sym_option_type] = STATE(1528), + [sym_qualified_type] = STATE(1426), + [sym_fixed_array_type] = STATE(1529), + [sym_array_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_wrong_pointer_type] = STATE(1529), + [sym_map_type] = STATE(1529), + [sym_channel_type] = STATE(1529), + [sym_shared_type] = STATE(1529), + [sym_thread_type] = STATE(1529), + [sym_atomic_type] = STATE(1529), + [sym_generic_type] = STATE(1529), + [sym_function_type] = STATE(1529), [sym_identifier] = ACTIONS(3832), - [anon_sym_LF] = ACTIONS(821), - [anon_sym_CR] = ACTIONS(821), - [anon_sym_CR_LF] = ACTIONS(821), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_as] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_RPAREN] = ACTIONS(859), [anon_sym_fn] = ACTIONS(3836), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), [anon_sym_STAR] = ACTIONS(3838), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), [anon_sym_struct] = ACTIONS(3840), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), [anon_sym_QMARK] = ACTIONS(3842), [anon_sym_BANG] = ACTIONS(3844), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(821), - [anon_sym_json_DOTdecode] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), [anon_sym_LBRACK2] = ACTIONS(3846), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), [anon_sym_AMP] = ACTIONS(3848), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_AMP_CARET] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_nil] = ACTIONS(821), - [anon_sym_QMARK_DOT] = ACTIONS(821), - [anon_sym_POUND_LBRACK] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_DOLLARif] = ACTIONS(821), - [anon_sym_is] = ACTIONS(821), - [anon_sym_BANGis] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_BANGin] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_select] = ACTIONS(821), - [anon_sym_lock] = ACTIONS(821), - [anon_sym_rlock] = ACTIONS(821), - [anon_sym_unsafe] = ACTIONS(821), - [anon_sym_sql] = ACTIONS(821), - [sym_int_literal] = ACTIONS(821), - [sym_float_literal] = ACTIONS(821), - [sym_rune_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_c_SQUOTE] = ACTIONS(821), - [anon_sym_c_DQUOTE] = ACTIONS(821), - [anon_sym_r_SQUOTE] = ACTIONS(821), - [anon_sym_r_DQUOTE] = ACTIONS(821), - [sym_pseudo_compile_time_identifier] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), [anon_sym_shared] = ACTIONS(3850), [anon_sym_map_LBRACK] = ACTIONS(3852), [anon_sym_chan] = ACTIONS(3854), @@ -151034,26 +151272,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1115] = { [sym_line_comment] = STATE(1115), [sym_block_comment] = STATE(1115), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), [anon_sym_CR] = ACTIONS(851), @@ -151141,105 +151379,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1116] = { [sym_line_comment] = STATE(1116), [sym_block_comment] = STATE(1116), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), [anon_sym_QMARK] = ACTIONS(327), [anon_sym_BANG] = ACTIONS(3860), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), - [anon_sym_json_DOTdecode] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(857), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_c_SQUOTE] = ACTIONS(857), - [anon_sym_c_DQUOTE] = ACTIONS(857), - [anon_sym_r_SQUOTE] = ACTIONS(857), - [anon_sym_r_DQUOTE] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + [sym_rune_literal] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_c_SQUOTE] = ACTIONS(865), + [anon_sym_c_DQUOTE] = ACTIONS(865), + [anon_sym_r_SQUOTE] = ACTIONS(865), + [anon_sym_r_DQUOTE] = ACTIONS(865), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(351), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -151248,104 +151486,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1117] = { [sym_line_comment] = STATE(1117), [sym_block_comment] = STATE(1117), - [sym_reference_expression] = STATE(4505), - [sym_type_reference_expression] = STATE(1429), - [sym_plain_type] = STATE(1546), - [sym__plain_type_without_special] = STATE(1541), - [sym_anon_struct_type] = STATE(1543), - [sym_multi_return_type] = STATE(1541), - [sym_result_type] = STATE(1541), - [sym_option_type] = STATE(1541), - [sym_qualified_type] = STATE(1429), - [sym_fixed_array_type] = STATE(1543), - [sym_array_type] = STATE(1543), - [sym_pointer_type] = STATE(1543), - [sym_wrong_pointer_type] = STATE(1543), - [sym_map_type] = STATE(1543), - [sym_channel_type] = STATE(1543), - [sym_shared_type] = STATE(1543), - [sym_thread_type] = STATE(1543), - [sym_atomic_type] = STATE(1543), - [sym_generic_type] = STATE(1543), - [sym_function_type] = STATE(1543), + [sym_reference_expression] = STATE(4507), + [sym_type_reference_expression] = STATE(1426), + [sym_plain_type] = STATE(1518), + [sym__plain_type_without_special] = STATE(1528), + [sym_anon_struct_type] = STATE(1529), + [sym_multi_return_type] = STATE(1528), + [sym_result_type] = STATE(1528), + [sym_option_type] = STATE(1528), + [sym_qualified_type] = STATE(1426), + [sym_fixed_array_type] = STATE(1529), + [sym_array_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_wrong_pointer_type] = STATE(1529), + [sym_map_type] = STATE(1529), + [sym_channel_type] = STATE(1529), + [sym_shared_type] = STATE(1529), + [sym_thread_type] = STATE(1529), + [sym_atomic_type] = STATE(1529), + [sym_generic_type] = STATE(1529), + [sym_function_type] = STATE(1529), [sym_identifier] = ACTIONS(3832), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(855), [anon_sym_fn] = ACTIONS(3836), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), [anon_sym_STAR] = ACTIONS(3838), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), [anon_sym_struct] = ACTIONS(3840), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), [anon_sym_QMARK] = ACTIONS(3842), [anon_sym_BANG] = ACTIONS(3844), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), [anon_sym_LBRACK2] = ACTIONS(3846), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), [anon_sym_AMP] = ACTIONS(3848), - [anon_sym_LT_DASH] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), + [anon_sym_LT_DASH] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(3850), [anon_sym_map_LBRACK] = ACTIONS(3852), [anon_sym_chan] = ACTIONS(3854), @@ -151355,104 +151593,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1118] = { [sym_line_comment] = STATE(1118), [sym_block_comment] = STATE(1118), - [sym_reference_expression] = STATE(4505), - [sym_type_reference_expression] = STATE(1429), - [sym_plain_type] = STATE(1483), - [sym__plain_type_without_special] = STATE(1541), - [sym_anon_struct_type] = STATE(1543), - [sym_multi_return_type] = STATE(1541), - [sym_result_type] = STATE(1541), - [sym_option_type] = STATE(1541), - [sym_qualified_type] = STATE(1429), - [sym_fixed_array_type] = STATE(1543), - [sym_array_type] = STATE(1543), - [sym_pointer_type] = STATE(1543), - [sym_wrong_pointer_type] = STATE(1543), - [sym_map_type] = STATE(1543), - [sym_channel_type] = STATE(1543), - [sym_shared_type] = STATE(1543), - [sym_thread_type] = STATE(1543), - [sym_atomic_type] = STATE(1543), - [sym_generic_type] = STATE(1543), - [sym_function_type] = STATE(1543), + [sym_reference_expression] = STATE(4507), + [sym_type_reference_expression] = STATE(1426), + [sym_plain_type] = STATE(1532), + [sym__plain_type_without_special] = STATE(1528), + [sym_anon_struct_type] = STATE(1529), + [sym_multi_return_type] = STATE(1528), + [sym_result_type] = STATE(1528), + [sym_option_type] = STATE(1528), + [sym_qualified_type] = STATE(1426), + [sym_fixed_array_type] = STATE(1529), + [sym_array_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_wrong_pointer_type] = STATE(1529), + [sym_map_type] = STATE(1529), + [sym_channel_type] = STATE(1529), + [sym_shared_type] = STATE(1529), + [sym_thread_type] = STATE(1529), + [sym_atomic_type] = STATE(1529), + [sym_generic_type] = STATE(1529), + [sym_function_type] = STATE(1529), [sym_identifier] = ACTIONS(3832), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_CR] = ACTIONS(821), + [anon_sym_CR_LF] = ACTIONS(821), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_as] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(821), [anon_sym_fn] = ACTIONS(3836), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), [anon_sym_STAR] = ACTIONS(3838), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_struct] = ACTIONS(3840), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_mut] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), [anon_sym_QMARK] = ACTIONS(3842), [anon_sym_BANG] = ACTIONS(3844), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(821), + [anon_sym_json_DOTdecode] = ACTIONS(821), + [anon_sym_PIPE] = ACTIONS(821), [anon_sym_LBRACK2] = ACTIONS(3846), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(821), [anon_sym_AMP] = ACTIONS(3848), - [anon_sym_LT_DASH] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), + [anon_sym_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_GT_GT_GT] = ACTIONS(821), + [anon_sym_AMP_CARET] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_or] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_true] = ACTIONS(821), + [sym_false] = ACTIONS(821), + [sym_nil] = ACTIONS(821), + [anon_sym_QMARK_DOT] = ACTIONS(821), + [anon_sym_POUND_LBRACK] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(821), + [anon_sym_is] = ACTIONS(821), + [anon_sym_BANGis] = ACTIONS(821), + [anon_sym_in] = ACTIONS(821), + [anon_sym_BANGin] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_select] = ACTIONS(821), + [anon_sym_lock] = ACTIONS(821), + [anon_sym_rlock] = ACTIONS(821), + [anon_sym_unsafe] = ACTIONS(821), + [anon_sym_sql] = ACTIONS(821), + [sym_int_literal] = ACTIONS(821), + [sym_float_literal] = ACTIONS(821), + [sym_rune_literal] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_c_SQUOTE] = ACTIONS(821), + [anon_sym_c_DQUOTE] = ACTIONS(821), + [anon_sym_r_SQUOTE] = ACTIONS(821), + [anon_sym_r_DQUOTE] = ACTIONS(821), + [sym_pseudo_compile_time_identifier] = ACTIONS(821), [anon_sym_shared] = ACTIONS(3850), [anon_sym_map_LBRACK] = ACTIONS(3852), [anon_sym_chan] = ACTIONS(3854), @@ -151462,26 +151700,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1119] = { [sym_line_comment] = STATE(1119), [sym_block_comment] = STATE(1119), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [aux_sym_strictly_expression_list_repeat1] = STATE(1734), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [aux_sym_strictly_expression_list_repeat1] = STATE(1737), [ts_builtin_sym_end] = ACTIONS(3862), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_CR] = ACTIONS(2007), - [anon_sym_CR_LF] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2041), [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2041), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(2007), + [anon_sym___global] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -151494,25 +151732,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_pub] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_interface] = ACTIONS(2041), [anon_sym_PLUS_PLUS] = ACTIONS(3880), [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2007), - [anon_sym_spawn] = ACTIONS(2007), - [anon_sym_json_DOTdecode] = ACTIONS(2007), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2007), + [anon_sym_TILDE] = ACTIONS(2041), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2041), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), @@ -151520,283 +151758,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3890), [anon_sym_PIPE_PIPE] = ACTIONS(3892), [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2007), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_nil] = ACTIONS(2007), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_DOLLARif] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), [anon_sym_is] = ACTIONS(3896), [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_select] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(2007), - [anon_sym_rlock] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_sql] = ACTIONS(2007), - [sym_int_literal] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), - [sym_rune_literal] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_c_SQUOTE] = ACTIONS(2007), - [anon_sym_c_DQUOTE] = ACTIONS(2007), - [anon_sym_r_SQUOTE] = ACTIONS(2007), - [anon_sym_r_DQUOTE] = ACTIONS(2007), - [sym_pseudo_compile_time_identifier] = ACTIONS(2007), - [anon_sym_shared] = ACTIONS(2007), - [anon_sym_map_LBRACK] = ACTIONS(2007), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2007), - [anon_sym_atomic] = ACTIONS(2007), - [anon_sym_assert] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_goto] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_DOLLARfor] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_asm] = ACTIONS(2007), - [anon_sym_AT_LBRACK] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), + [anon_sym_AT_LBRACK] = ACTIONS(2041), }, [1120] = { [sym_line_comment] = STATE(1120), [sym_block_comment] = STATE(1120), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2063), - [sym_identifier] = ACTIONS(2065), - [anon_sym_LF] = ACTIONS(2065), - [anon_sym_CR] = ACTIONS(2065), - [anon_sym_CR_LF] = ACTIONS(2065), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_COMMA] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2065), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym___global] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_union] = ACTIONS(2065), - [anon_sym_pub] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2065), - [anon_sym_spawn] = ACTIONS(2065), - [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2065), - [anon_sym_AMP_CARET] = ACTIONS(2065), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2065), - [sym_none] = ACTIONS(2065), - [sym_true] = ACTIONS(2065), - [sym_false] = ACTIONS(2065), - [sym_nil] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_AMP_CARET] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_select] = ACTIONS(2065), - [anon_sym_lock] = ACTIONS(2065), - [anon_sym_rlock] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_sql] = ACTIONS(2065), - [sym_int_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), - [sym_rune_literal] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_c_SQUOTE] = ACTIONS(2065), - [anon_sym_c_DQUOTE] = ACTIONS(2065), - [anon_sym_r_SQUOTE] = ACTIONS(2065), - [anon_sym_r_DQUOTE] = ACTIONS(2065), - [sym_pseudo_compile_time_identifier] = ACTIONS(2065), - [anon_sym_shared] = ACTIONS(2065), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2065), - [anon_sym_thread] = ACTIONS(2065), - [anon_sym_atomic] = ACTIONS(2065), - [anon_sym_assert] = ACTIONS(2065), - [anon_sym_defer] = ACTIONS(2065), - [anon_sym_goto] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_DOLLARfor] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2065), - [anon_sym_asm] = ACTIONS(2065), - [anon_sym_AT_LBRACK] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_rune_literal] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_c_SQUOTE] = ACTIONS(2057), + [anon_sym_c_DQUOTE] = ACTIONS(2057), + [anon_sym_r_SQUOTE] = ACTIONS(2057), + [anon_sym_r_DQUOTE] = ACTIONS(2057), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2057), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2057), + [anon_sym_defer] = ACTIONS(2057), + [anon_sym_goto] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_DOLLARfor] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_asm] = ACTIONS(2057), + [anon_sym_AT_LBRACK] = ACTIONS(2057), }, [1121] = { [sym_line_comment] = STATE(1121), [sym_block_comment] = STATE(1121), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), [anon_sym_STAR] = ACTIONS(3874), [anon_sym_SLASH] = ACTIONS(3874), [anon_sym_PERCENT] = ACTIONS(3874), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1122] = { [sym_line_comment] = STATE(1122), [sym_block_comment] = STATE(1122), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3900), - [sym_identifier] = ACTIONS(3902), - [anon_sym_LF] = ACTIONS(3902), - [anon_sym_CR] = ACTIONS(3902), - [anon_sym_CR_LF] = ACTIONS(3902), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2069), + [anon_sym_CR] = ACTIONS(2069), + [anon_sym_CR_LF] = ACTIONS(2069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3902), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_const] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(3902), - [anon_sym_type] = ACTIONS(3902), - [anon_sym_fn] = ACTIONS(3902), + [anon_sym___global] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -151809,25 +152047,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_union] = ACTIONS(3902), - [anon_sym_pub] = ACTIONS(3902), - [anon_sym_mut] = ACTIONS(3902), - [anon_sym_enum] = ACTIONS(3902), - [anon_sym_interface] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), [anon_sym_PLUS_PLUS] = ACTIONS(3880), [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(3902), - [anon_sym_spawn] = ACTIONS(3902), - [anon_sym_json_DOTdecode] = ACTIONS(3902), + [anon_sym_go] = ACTIONS(2069), + [anon_sym_spawn] = ACTIONS(2069), + [anon_sym_json_DOTdecode] = ACTIONS(2069), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(3902), + [anon_sym_TILDE] = ACTIONS(2069), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(3902), + [anon_sym_LT_DASH] = ACTIONS(2069), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), @@ -151835,73 +152073,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3890), [anon_sym_PIPE_PIPE] = ACTIONS(3892), [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(3902), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [sym_nil] = ACTIONS(3902), + [sym_none] = ACTIONS(2069), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_nil] = ACTIONS(2069), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_DOLLARif] = ACTIONS(3902), - [anon_sym_is] = ACTIONS(3896), - [anon_sym_BANGis] = ACTIONS(3896), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_is] = ACTIONS(3900), + [anon_sym_BANGis] = ACTIONS(3900), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(3902), - [anon_sym_select] = ACTIONS(3902), - [anon_sym_lock] = ACTIONS(3902), - [anon_sym_rlock] = ACTIONS(3902), - [anon_sym_unsafe] = ACTIONS(3902), - [anon_sym_sql] = ACTIONS(3902), - [sym_int_literal] = ACTIONS(3902), - [sym_float_literal] = ACTIONS(3902), - [sym_rune_literal] = ACTIONS(3902), - [anon_sym_SQUOTE] = ACTIONS(3902), - [anon_sym_DQUOTE] = ACTIONS(3902), - [anon_sym_c_SQUOTE] = ACTIONS(3902), - [anon_sym_c_DQUOTE] = ACTIONS(3902), - [anon_sym_r_SQUOTE] = ACTIONS(3902), - [anon_sym_r_DQUOTE] = ACTIONS(3902), - [sym_pseudo_compile_time_identifier] = ACTIONS(3902), - [anon_sym_shared] = ACTIONS(3902), - [anon_sym_map_LBRACK] = ACTIONS(3902), - [anon_sym_chan] = ACTIONS(3902), - [anon_sym_thread] = ACTIONS(3902), - [anon_sym_atomic] = ACTIONS(3902), - [anon_sym_assert] = ACTIONS(3902), - [anon_sym_defer] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_DOLLARfor] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_POUND] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - [anon_sym_AT_LBRACK] = ACTIONS(3902), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_lock] = ACTIONS(2069), + [anon_sym_rlock] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_sql] = ACTIONS(2069), + [sym_int_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_c_SQUOTE] = ACTIONS(2069), + [anon_sym_c_DQUOTE] = ACTIONS(2069), + [anon_sym_r_SQUOTE] = ACTIONS(2069), + [anon_sym_r_DQUOTE] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2069), + [anon_sym_shared] = ACTIONS(2069), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2069), + [anon_sym_thread] = ACTIONS(2069), + [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_defer] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_DOLLARfor] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_asm] = ACTIONS(2069), + [anon_sym_AT_LBRACK] = ACTIONS(2069), }, [1123] = { [sym_line_comment] = STATE(1123), [sym_block_comment] = STATE(1123), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2073), - [anon_sym_CR] = ACTIONS(2073), - [anon_sym_CR_LF] = ACTIONS(2073), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(3902), + [sym_identifier] = ACTIONS(3904), + [anon_sym_LF] = ACTIONS(3904), + [anon_sym_CR] = ACTIONS(3904), + [anon_sym_CR_LF] = ACTIONS(3904), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(3904), + [anon_sym_COMMA] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3904), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), + [anon_sym___global] = ACTIONS(3904), + [anon_sym_type] = ACTIONS(3904), + [anon_sym_fn] = ACTIONS(3904), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -151914,25 +152152,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(3904), + [anon_sym_union] = ACTIONS(3904), + [anon_sym_pub] = ACTIONS(3904), + [anon_sym_mut] = ACTIONS(3904), + [anon_sym_enum] = ACTIONS(3904), + [anon_sym_interface] = ACTIONS(3904), [anon_sym_PLUS_PLUS] = ACTIONS(3880), [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2073), - [anon_sym_spawn] = ACTIONS(2073), - [anon_sym_json_DOTdecode] = ACTIONS(2073), + [anon_sym_go] = ACTIONS(3904), + [anon_sym_spawn] = ACTIONS(3904), + [anon_sym_json_DOTdecode] = ACTIONS(3904), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(3904), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2073), + [anon_sym_LT_DASH] = ACTIONS(3904), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), @@ -151940,178 +152178,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3890), [anon_sym_PIPE_PIPE] = ACTIONS(3892), [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2073), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_nil] = ACTIONS(2073), + [sym_none] = ACTIONS(3904), + [sym_true] = ACTIONS(3904), + [sym_false] = ACTIONS(3904), + [sym_nil] = ACTIONS(3904), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_DOLLARif] = ACTIONS(2073), - [anon_sym_is] = ACTIONS(3906), - [anon_sym_BANGis] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3904), + [anon_sym_DOLLARif] = ACTIONS(3904), + [anon_sym_is] = ACTIONS(3896), + [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_select] = ACTIONS(2073), - [anon_sym_lock] = ACTIONS(2073), - [anon_sym_rlock] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_sql] = ACTIONS(2073), - [sym_int_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_rune_literal] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_c_SQUOTE] = ACTIONS(2073), - [anon_sym_c_DQUOTE] = ACTIONS(2073), - [anon_sym_r_SQUOTE] = ACTIONS(2073), - [anon_sym_r_DQUOTE] = ACTIONS(2073), - [sym_pseudo_compile_time_identifier] = ACTIONS(2073), - [anon_sym_shared] = ACTIONS(2073), - [anon_sym_map_LBRACK] = ACTIONS(2073), - [anon_sym_chan] = ACTIONS(2073), - [anon_sym_thread] = ACTIONS(2073), - [anon_sym_atomic] = ACTIONS(2073), - [anon_sym_assert] = ACTIONS(2073), - [anon_sym_defer] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_DOLLARfor] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_asm] = ACTIONS(2073), - [anon_sym_AT_LBRACK] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(3904), + [anon_sym_select] = ACTIONS(3904), + [anon_sym_lock] = ACTIONS(3904), + [anon_sym_rlock] = ACTIONS(3904), + [anon_sym_unsafe] = ACTIONS(3904), + [anon_sym_sql] = ACTIONS(3904), + [sym_int_literal] = ACTIONS(3904), + [sym_float_literal] = ACTIONS(3904), + [sym_rune_literal] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [anon_sym_c_SQUOTE] = ACTIONS(3904), + [anon_sym_c_DQUOTE] = ACTIONS(3904), + [anon_sym_r_SQUOTE] = ACTIONS(3904), + [anon_sym_r_DQUOTE] = ACTIONS(3904), + [sym_pseudo_compile_time_identifier] = ACTIONS(3904), + [anon_sym_shared] = ACTIONS(3904), + [anon_sym_map_LBRACK] = ACTIONS(3904), + [anon_sym_chan] = ACTIONS(3904), + [anon_sym_thread] = ACTIONS(3904), + [anon_sym_atomic] = ACTIONS(3904), + [anon_sym_assert] = ACTIONS(3904), + [anon_sym_defer] = ACTIONS(3904), + [anon_sym_goto] = ACTIONS(3904), + [anon_sym_break] = ACTIONS(3904), + [anon_sym_continue] = ACTIONS(3904), + [anon_sym_return] = ACTIONS(3904), + [anon_sym_DOLLARfor] = ACTIONS(3904), + [anon_sym_for] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_asm] = ACTIONS(3904), + [anon_sym_AT_LBRACK] = ACTIONS(3904), }, [1124] = { [sym_line_comment] = STATE(1124), [sym_block_comment] = STATE(1124), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_CR] = ACTIONS(2049), + [anon_sym_CR_LF] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), + [anon_sym___global] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), [anon_sym_SLASH] = ACTIONS(3874), [anon_sym_PERCENT] = ACTIONS(3874), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_interface] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2049), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2049), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2079), + [anon_sym_LT_DASH] = ACTIONS(2049), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_defer] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_DOLLARfor] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_asm] = ACTIONS(2079), - [anon_sym_AT_LBRACK] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2049), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + [sym_rune_literal] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_c_SQUOTE] = ACTIONS(2049), + [anon_sym_c_DQUOTE] = ACTIONS(2049), + [anon_sym_r_SQUOTE] = ACTIONS(2049), + [anon_sym_r_DQUOTE] = ACTIONS(2049), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2049), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_defer] = ACTIONS(2049), + [anon_sym_goto] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_DOLLARfor] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_asm] = ACTIONS(2049), + [anon_sym_AT_LBRACK] = ACTIONS(2049), }, [1125] = { [sym_line_comment] = STATE(1125), [sym_block_comment] = STATE(1125), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3908), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -152124,99 +152362,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2045), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), [anon_sym_AMP_AMP] = ACTIONS(3890), - [anon_sym_PIPE_PIPE] = ACTIONS(3892), - [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_is] = ACTIONS(3896), - [anon_sym_BANGis] = ACTIONS(3896), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), - [anon_sym_AT_LBRACK] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1126] = { [sym_line_comment] = STATE(1126), [sym_block_comment] = STATE(1126), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -152229,99 +152467,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2075), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2075), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), [anon_sym_AMP_AMP] = ACTIONS(3890), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(3892), + [anon_sym_or] = ACTIONS(3894), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(3896), + [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), + [anon_sym_AT_LBRACK] = ACTIONS(2075), }, [1127] = { [sym_line_comment] = STATE(1127), [sym_block_comment] = STATE(1127), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -152334,99 +152572,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2059), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3890), - [anon_sym_PIPE_PIPE] = ACTIONS(3892), - [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(3896), - [anon_sym_BANGis] = ACTIONS(3896), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1128] = { [sym_line_comment] = STATE(1128), [sym_block_comment] = STATE(1128), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_CR] = ACTIONS(2065), + [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), + [anon_sym___global] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), @@ -152439,25 +152677,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3876), [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_interface] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), [anon_sym_PLUS_PLUS] = ACTIONS(3880), [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2065), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2065), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2069), + [anon_sym_LT_DASH] = ACTIONS(2065), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), @@ -152465,477 +152703,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3890), [anon_sym_PIPE_PIPE] = ACTIONS(3892), [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), [anon_sym_is] = ACTIONS(3896), [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3898), [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), - [anon_sym_assert] = ACTIONS(2069), - [anon_sym_defer] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_DOLLARfor] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_asm] = ACTIONS(2069), - [anon_sym_AT_LBRACK] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_c_SQUOTE] = ACTIONS(2065), + [anon_sym_c_DQUOTE] = ACTIONS(2065), + [anon_sym_r_SQUOTE] = ACTIONS(2065), + [anon_sym_r_DQUOTE] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_defer] = ACTIONS(2065), + [anon_sym_goto] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_DOLLARfor] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_asm] = ACTIONS(2065), + [anon_sym_AT_LBRACK] = ACTIONS(2065), }, [1129] = { [sym_line_comment] = STATE(1129), [sym_block_comment] = STATE(1129), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_CR] = ACTIONS(2049), - [anon_sym_CR_LF] = ACTIONS(2049), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_CR] = ACTIONS(2061), + [anon_sym_CR_LF] = ACTIONS(2061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2049), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT_EQ] = ACTIONS(2049), + [anon_sym___global] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_union] = ACTIONS(2049), - [anon_sym_pub] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2049), - [anon_sym_spawn] = ACTIONS(2049), - [anon_sym_json_DOTdecode] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_LT_DASH] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2049), - [anon_sym_AMP_CARET] = ACTIONS(2049), - [anon_sym_AMP_AMP] = ACTIONS(2049), - [anon_sym_PIPE_PIPE] = ACTIONS(2049), - [anon_sym_or] = ACTIONS(2049), - [sym_none] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_nil] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_AMP_CARET] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_DOLLARif] = ACTIONS(2049), - [anon_sym_is] = ACTIONS(2049), - [anon_sym_BANGis] = ACTIONS(2049), - [anon_sym_in] = ACTIONS(2049), - [anon_sym_BANGin] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_select] = ACTIONS(2049), - [anon_sym_lock] = ACTIONS(2049), - [anon_sym_rlock] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_sql] = ACTIONS(2049), - [sym_int_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), - [sym_rune_literal] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [anon_sym_c_SQUOTE] = ACTIONS(2049), - [anon_sym_c_DQUOTE] = ACTIONS(2049), - [anon_sym_r_SQUOTE] = ACTIONS(2049), - [anon_sym_r_DQUOTE] = ACTIONS(2049), - [sym_pseudo_compile_time_identifier] = ACTIONS(2049), - [anon_sym_shared] = ACTIONS(2049), - [anon_sym_map_LBRACK] = ACTIONS(2049), - [anon_sym_chan] = ACTIONS(2049), - [anon_sym_thread] = ACTIONS(2049), - [anon_sym_atomic] = ACTIONS(2049), - [anon_sym_assert] = ACTIONS(2049), - [anon_sym_defer] = ACTIONS(2049), - [anon_sym_goto] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_DOLLARfor] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2049), - [anon_sym_asm] = ACTIONS(2049), - [anon_sym_AT_LBRACK] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_rune_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [anon_sym_c_SQUOTE] = ACTIONS(2061), + [anon_sym_c_DQUOTE] = ACTIONS(2061), + [anon_sym_r_SQUOTE] = ACTIONS(2061), + [anon_sym_r_DQUOTE] = ACTIONS(2061), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2061), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(2061), + [anon_sym_defer] = ACTIONS(2061), + [anon_sym_goto] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_DOLLARfor] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_asm] = ACTIONS(2061), + [anon_sym_AT_LBRACK] = ACTIONS(2061), }, [1130] = { [sym_line_comment] = STATE(1130), [sym_block_comment] = STATE(1130), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3872), [anon_sym_DASH] = ACTIONS(3872), [anon_sym_STAR] = ACTIONS(3874), [anon_sym_SLASH] = ACTIONS(3874), [anon_sym_PERCENT] = ACTIONS(3874), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_EQ_EQ] = ACTIONS(3876), - [anon_sym_BANG_EQ] = ACTIONS(3876), - [anon_sym_LT_EQ] = ACTIONS(3876), - [anon_sym_GT_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3872), [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3874), [anon_sym_GT_GT] = ACTIONS(3874), [anon_sym_GT_GT_GT] = ACTIONS(3874), [anon_sym_AMP_CARET] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(3898), - [anon_sym_BANGin] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1131] = { [sym_line_comment] = STATE(1131), [sym_block_comment] = STATE(1131), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_SLASH] = ACTIONS(3874), - [anon_sym_PERCENT] = ACTIONS(3874), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(3872), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(3872), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(3874), - [anon_sym_GT_GT] = ACTIONS(3874), - [anon_sym_GT_GT_GT] = ACTIONS(3874), - [anon_sym_AMP_CARET] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1132] = { [sym_line_comment] = STATE(1132), [sym_block_comment] = STATE(1132), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(3908), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_SLASH] = ACTIONS(3874), + [anon_sym_PERCENT] = ACTIONS(3874), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_EQ_EQ] = ACTIONS(3876), + [anon_sym_BANG_EQ] = ACTIONS(3876), + [anon_sym_LT_EQ] = ACTIONS(3876), + [anon_sym_GT_EQ] = ACTIONS(3876), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_interface] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(3872), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(3872), + [anon_sym_AMP] = ACTIONS(3874), + [anon_sym_LT_DASH] = ACTIONS(2001), + [anon_sym_LT_LT] = ACTIONS(3874), + [anon_sym_GT_GT] = ACTIONS(3874), + [anon_sym_GT_GT_GT] = ACTIONS(3874), + [anon_sym_AMP_CARET] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3890), + [anon_sym_PIPE_PIPE] = ACTIONS(3892), + [anon_sym_or] = ACTIONS(3894), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_is] = ACTIONS(3896), + [anon_sym_BANGis] = ACTIONS(3896), + [anon_sym_in] = ACTIONS(3898), + [anon_sym_BANGin] = ACTIONS(3898), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), + [anon_sym_AT_LBRACK] = ACTIONS(2001), }, [1133] = { [sym_line_comment] = STATE(1133), [sym_block_comment] = STATE(1133), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), [ts_builtin_sym_end] = ACTIONS(3910), [sym_identifier] = ACTIONS(3912), [anon_sym_LF] = ACTIONS(3912), @@ -153037,24 +153275,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1134] = { [sym_line_comment] = STATE(1134), [sym_block_comment] = STATE(1134), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), [anon_sym_PLUS] = ACTIONS(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), @@ -153067,81 +153305,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3916), [anon_sym_GT_EQ] = ACTIONS(3916), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2075), [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2075), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3922), + [anon_sym_or] = ACTIONS(3894), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(3896), + [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3924), [anon_sym_BANGin] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), + [anon_sym_AT_LBRACK] = ACTIONS(2075), }, [1135] = { [sym_line_comment] = STATE(1135), [sym_block_comment] = STATE(1135), - [sym_else_branch] = STATE(1193), + [sym_else_branch] = STATE(1187), [ts_builtin_sym_end] = ACTIONS(2081), [sym_identifier] = ACTIONS(2083), [anon_sym_LF] = ACTIONS(2083), @@ -153245,9 +153483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1136] = { [sym_line_comment] = STATE(1136), [sym_block_comment] = STATE(1136), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), [ts_builtin_sym_end] = ACTIONS(3928), [sym_identifier] = ACTIONS(3930), [anon_sym_LF] = ACTIONS(3930), @@ -153349,128 +153587,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1137] = { [sym_line_comment] = STATE(1137), [sym_block_comment] = STATE(1137), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_STAR] = ACTIONS(3914), - [anon_sym_SLASH] = ACTIONS(3914), - [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_LT] = ACTIONS(3916), - [anon_sym_GT] = ACTIONS(3916), - [anon_sym_EQ_EQ] = ACTIONS(3916), - [anon_sym_BANG_EQ] = ACTIONS(3916), - [anon_sym_LT_EQ] = ACTIONS(3916), - [anon_sym_GT_EQ] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(3884), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(3918), - [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(3918), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(3914), - [anon_sym_GT_GT] = ACTIONS(3914), - [anon_sym_GT_GT_GT] = ACTIONS(3914), - [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(3864), - [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(3924), - [anon_sym_BANGin] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), - }, - [1138] = { - [sym_line_comment] = STATE(1138), - [sym_block_comment] = STATE(1138), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_CR] = ACTIONS(2065), + [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), + [anon_sym___global] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), [anon_sym_PLUS] = ACTIONS(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), @@ -153483,25 +153617,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3916), [anon_sym_GT_EQ] = ACTIONS(3916), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_interface] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), [anon_sym_PLUS_PLUS] = ACTIONS(3880), [anon_sym_DASH_DASH] = ACTIONS(3882), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2065), [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2065), [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2069), + [anon_sym_LT_DASH] = ACTIONS(2065), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), @@ -153509,159 +153643,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3920), [anon_sym_PIPE_PIPE] = ACTIONS(3922), [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), [anon_sym_is] = ACTIONS(3896), [anon_sym_BANGis] = ACTIONS(3896), [anon_sym_in] = ACTIONS(3924), [anon_sym_BANGin] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), - [anon_sym_assert] = ACTIONS(2069), - [anon_sym_defer] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_DOLLARfor] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_asm] = ACTIONS(2069), - [anon_sym_AT_LBRACK] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_c_SQUOTE] = ACTIONS(2065), + [anon_sym_c_DQUOTE] = ACTIONS(2065), + [anon_sym_r_SQUOTE] = ACTIONS(2065), + [anon_sym_r_DQUOTE] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_defer] = ACTIONS(2065), + [anon_sym_goto] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_DOLLARfor] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_asm] = ACTIONS(2065), + [anon_sym_AT_LBRACK] = ACTIONS(2065), }, - [1139] = { - [sym_line_comment] = STATE(1139), - [sym_block_comment] = STATE(1139), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [1138] = { + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_CR] = ACTIONS(2049), + [anon_sym_CR_LF] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), + [anon_sym___global] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), [anon_sym_PLUS] = ACTIONS(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), [anon_sym_SLASH] = ACTIONS(3914), [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_LT] = ACTIONS(3916), - [anon_sym_GT] = ACTIONS(3916), - [anon_sym_EQ_EQ] = ACTIONS(3916), - [anon_sym_BANG_EQ] = ACTIONS(3916), - [anon_sym_LT_EQ] = ACTIONS(3916), - [anon_sym_GT_EQ] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_interface] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2049), [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2049), [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2059), + [anon_sym_LT_DASH] = ACTIONS(2049), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_PIPE_PIPE] = ACTIONS(3922), - [anon_sym_or] = ACTIONS(3894), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(3896), - [anon_sym_BANGis] = ACTIONS(3896), - [anon_sym_in] = ACTIONS(3924), - [anon_sym_BANGin] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2049), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + [sym_rune_literal] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_c_SQUOTE] = ACTIONS(2049), + [anon_sym_c_DQUOTE] = ACTIONS(2049), + [anon_sym_r_SQUOTE] = ACTIONS(2049), + [anon_sym_r_DQUOTE] = ACTIONS(2049), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2049), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_defer] = ACTIONS(2049), + [anon_sym_goto] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_DOLLARfor] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_asm] = ACTIONS(2049), + [anon_sym_AT_LBRACK] = ACTIONS(2049), }, - [1140] = { - [sym_line_comment] = STATE(1140), - [sym_block_comment] = STATE(1140), - [sym_else_branch] = STATE(1194), + [1139] = { + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [sym_else_branch] = STATE(1188), [ts_builtin_sym_end] = ACTIONS(2087), [sym_identifier] = ACTIONS(2089), [anon_sym_LF] = ACTIONS(2089), @@ -153762,12 +153896,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2089), [anon_sym_AT_LBRACK] = ACTIONS(2089), }, - [1141] = { - [sym_line_comment] = STATE(1141), - [sym_block_comment] = STATE(1141), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), + [1140] = { + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), [ts_builtin_sym_end] = ACTIONS(3932), [sym_identifier] = ACTIONS(3934), [anon_sym_LF] = ACTIONS(3934), @@ -153866,12 +154000,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3934), [anon_sym_AT_LBRACK] = ACTIONS(3934), }, - [1142] = { - [sym_line_comment] = STATE(1142), - [sym_block_comment] = STATE(1142), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), + [1141] = { + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), [ts_builtin_sym_end] = ACTIONS(3936), [sym_identifier] = ACTIONS(3938), [anon_sym_LF] = ACTIONS(3938), @@ -153970,548 +154104,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3938), [anon_sym_AT_LBRACK] = ACTIONS(3938), }, + [1142] = { + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3864), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(3870), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(3914), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(3914), + [anon_sym_GT_GT] = ACTIONS(3914), + [anon_sym_GT_GT_GT] = ACTIONS(3914), + [anon_sym_AMP_CARET] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(3864), + [anon_sym_POUND_LBRACK] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), + }, [1143] = { [sym_line_comment] = STATE(1143), [sym_block_comment] = STATE(1143), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), [anon_sym_SLASH] = ACTIONS(3914), [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2079), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_defer] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_DOLLARfor] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_asm] = ACTIONS(2079), - [anon_sym_AT_LBRACK] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1144] = { [sym_line_comment] = STATE(1144), [sym_block_comment] = STATE(1144), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), [anon_sym_SLASH] = ACTIONS(3914), [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_GT] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3916), + [anon_sym_BANG_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3916), + [anon_sym_GT_EQ] = ACTIONS(3916), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(3924), + [anon_sym_BANGin] = ACTIONS(3924), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1145] = { [sym_line_comment] = STATE(1145), [sym_block_comment] = STATE(1145), - [sym_type_parameters] = STATE(4314), - [sym_argument_list] = STATE(1258), - [sym_or_block] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4311), + [sym_argument_list] = STATE(1229), + [sym_or_block] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(3864), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_STAR] = ACTIONS(3914), [anon_sym_SLASH] = ACTIONS(3914), [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_GT] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3916), + [anon_sym_BANG_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3916), + [anon_sym_GT_EQ] = ACTIONS(3916), [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(3884), [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3918), [anon_sym_LBRACK2] = ACTIONS(3888), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3918), [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3914), [anon_sym_GT_GT] = ACTIONS(3914), [anon_sym_GT_GT_GT] = ACTIONS(3914), [anon_sym_AMP_CARET] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3864), [anon_sym_POUND_LBRACK] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(3924), + [anon_sym_BANGin] = ACTIONS(3924), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + [anon_sym_AT_LBRACK] = ACTIONS(2053), }, [1146] = { [sym_line_comment] = STATE(1146), [sym_block_comment] = STATE(1146), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(851), - [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_fn] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_mut] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_go] = ACTIONS(851), - [anon_sym_spawn] = ACTIONS(851), - [anon_sym_json_DOTdecode] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_LBRACK2] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_LT_DASH] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(849), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_GT_GT_GT] = ACTIONS(849), - [anon_sym_AMP_CARET] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_or] = ACTIONS(851), - [sym_none] = ACTIONS(851), - [sym_true] = ACTIONS(851), - [sym_false] = ACTIONS(851), - [sym_nil] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(849), - [anon_sym_POUND_LBRACK] = ACTIONS(849), - [anon_sym_if] = ACTIONS(851), - [anon_sym_DOLLARif] = ACTIONS(851), - [anon_sym_is] = ACTIONS(851), - [anon_sym_BANGis] = ACTIONS(849), - [anon_sym_in] = ACTIONS(851), - [anon_sym_BANGin] = ACTIONS(849), - [anon_sym_match] = ACTIONS(851), - [anon_sym_select] = ACTIONS(851), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(851), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(851), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_c_SQUOTE] = ACTIONS(849), - [anon_sym_c_DQUOTE] = ACTIONS(849), - [anon_sym_r_SQUOTE] = ACTIONS(849), - [anon_sym_r_DQUOTE] = ACTIONS(849), - [sym_pseudo_compile_time_identifier] = ACTIONS(851), - [anon_sym_shared] = ACTIONS(851), - [anon_sym_map_LBRACK] = ACTIONS(849), - [anon_sym_chan] = ACTIONS(851), - [anon_sym_thread] = ACTIONS(851), - [anon_sym_atomic] = ACTIONS(851), - }, - [1147] = { - [sym_line_comment] = STATE(1147), - [sym_block_comment] = STATE(1147), - [ts_builtin_sym_end] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(3940), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), - [anon_sym_AT_LBRACK] = ACTIONS(2139), - }, - [1148] = { - [sym_line_comment] = STATE(1148), - [sym_block_comment] = STATE(1148), - [sym_reference_expression] = STATE(4421), - [sym_type_reference_expression] = STATE(1568), - [sym_plain_type] = STATE(1649), - [sym__plain_type_without_special] = STATE(1643), - [sym_anon_struct_type] = STATE(1645), - [sym_multi_return_type] = STATE(1643), - [sym_result_type] = STATE(1643), - [sym_option_type] = STATE(1643), - [sym_qualified_type] = STATE(1568), - [sym_fixed_array_type] = STATE(1645), - [sym_array_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_wrong_pointer_type] = STATE(1645), - [sym_map_type] = STATE(1645), - [sym_channel_type] = STATE(1645), - [sym_shared_type] = STATE(1645), - [sym_thread_type] = STATE(1645), - [sym_atomic_type] = STATE(1645), - [sym_generic_type] = STATE(1645), - [sym_function_type] = STATE(1645), - [sym_identifier] = ACTIONS(3942), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(1563), + [sym_plain_type] = STATE(1671), + [sym__plain_type_without_special] = STATE(1655), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1655), + [sym_result_type] = STATE(1655), + [sym_option_type] = STATE(1655), + [sym_qualified_type] = STATE(1563), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3940), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(821), @@ -154519,11 +154551,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(817), [anon_sym_COMMA] = ACTIONS(817), [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(3944), - [anon_sym_fn] = ACTIONS(3946), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_fn] = ACTIONS(3944), [anon_sym_PLUS] = ACTIONS(821), [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_STAR] = ACTIONS(3946), [anon_sym_SLASH] = ACTIONS(821), [anon_sym_PERCENT] = ACTIONS(817), [anon_sym_LT] = ACTIONS(821), @@ -154534,21 +154566,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3948), [anon_sym_mut] = ACTIONS(821), [anon_sym_COLON] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3954), + [anon_sym_QMARK] = ACTIONS(3950), + [anon_sym_BANG] = ACTIONS(3952), [anon_sym_go] = ACTIONS(821), [anon_sym_spawn] = ACTIONS(821), [anon_sym_json_DOTdecode] = ACTIONS(817), [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(3956), + [anon_sym_LBRACK2] = ACTIONS(3954), [anon_sym_TILDE] = ACTIONS(817), [anon_sym_CARET] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_AMP] = ACTIONS(3956), [anon_sym_LT_DASH] = ACTIONS(817), [anon_sym_LT_LT] = ACTIONS(817), [anon_sym_GT_GT] = ACTIONS(821), @@ -154585,100 +154617,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(817), [anon_sym_r_DQUOTE] = ACTIONS(817), [sym_pseudo_compile_time_identifier] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(3960), - [anon_sym_map_LBRACK] = ACTIONS(3962), - [anon_sym_chan] = ACTIONS(3964), - [anon_sym_thread] = ACTIONS(3966), - [anon_sym_atomic] = ACTIONS(3968), + [anon_sym_shared] = ACTIONS(3958), + [anon_sym_map_LBRACK] = ACTIONS(3960), + [anon_sym_chan] = ACTIONS(3962), + [anon_sym_thread] = ACTIONS(3964), + [anon_sym_atomic] = ACTIONS(3966), }, - [1149] = { - [sym_line_comment] = STATE(1149), - [sym_block_comment] = STATE(1149), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [1147] = { + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(1563), + [sym_plain_type] = STATE(1647), + [sym__plain_type_without_special] = STATE(1655), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1655), + [sym_result_type] = STATE(1655), + [sym_option_type] = STATE(1655), + [sym_qualified_type] = STATE(1563), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3940), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), [anon_sym_LBRACE] = ACTIONS(853), [anon_sym_COMMA] = ACTIONS(853), [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_fn] = ACTIONS(3944), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_SLASH] = ACTIONS(855), [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), [anon_sym_EQ_EQ] = ACTIONS(853), [anon_sym_BANG_EQ] = ACTIONS(853), [anon_sym_LT_EQ] = ACTIONS(853), [anon_sym_GT_EQ] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(853), [anon_sym_RBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(3948), + [anon_sym_mut] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(853), [anon_sym_PLUS_PLUS] = ACTIONS(853), [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(3974), - [anon_sym_go] = ACTIONS(857), - [anon_sym_spawn] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(3950), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), [anon_sym_json_DOTdecode] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(3954), [anon_sym_TILDE] = ACTIONS(853), [anon_sym_CARET] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(3956), [anon_sym_LT_DASH] = ACTIONS(853), [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(855), [anon_sym_GT_GT_GT] = ACTIONS(853), [anon_sym_AMP_CARET] = ACTIONS(853), [anon_sym_AMP_AMP] = ACTIONS(853), [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_nil] = ACTIONS(857), + [anon_sym_or] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), [anon_sym_QMARK_DOT] = ACTIONS(853), [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_if] = ACTIONS(857), - [anon_sym_DOLLARif] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), + [anon_sym_in] = ACTIONS(855), [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_match] = ACTIONS(857), - [anon_sym_select] = ACTIONS(857), - [anon_sym_lock] = ACTIONS(857), - [anon_sym_rlock] = ACTIONS(857), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_sql] = ACTIONS(857), - [sym_int_literal] = ACTIONS(857), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), [sym_float_literal] = ACTIONS(853), [sym_rune_literal] = ACTIONS(853), [anon_sym_SQUOTE] = ACTIONS(853), @@ -154687,8 +154719,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_DQUOTE] = ACTIONS(853), [anon_sym_r_SQUOTE] = ACTIONS(853), [anon_sym_r_DQUOTE] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(3958), + [anon_sym_map_LBRACK] = ACTIONS(3960), + [anon_sym_chan] = ACTIONS(3962), + [anon_sym_thread] = ACTIONS(3964), + [anon_sym_atomic] = ACTIONS(3966), + }, + [1148] = { + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [sym_type_parameters] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [1149] = { + [sym_line_comment] = STATE(1149), + [sym_block_comment] = STATE(1149), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_go] = ACTIONS(865), + [anon_sym_spawn] = ACTIONS(865), + [anon_sym_json_DOTdecode] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(861), + [anon_sym_AMP_CARET] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [sym_none] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_nil] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_if] = ACTIONS(865), + [anon_sym_DOLLARif] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_match] = ACTIONS(865), + [anon_sym_select] = ACTIONS(865), + [anon_sym_lock] = ACTIONS(865), + [anon_sym_rlock] = ACTIONS(865), + [anon_sym_unsafe] = ACTIONS(865), + [anon_sym_sql] = ACTIONS(865), + [sym_int_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(861), + [sym_rune_literal] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_c_SQUOTE] = ACTIONS(861), + [anon_sym_c_DQUOTE] = ACTIONS(861), + [anon_sym_r_SQUOTE] = ACTIONS(861), + [anon_sym_r_DQUOTE] = ACTIONS(861), + [sym_pseudo_compile_time_identifier] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -154697,624 +154935,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1150] = { [sym_line_comment] = STATE(1150), [sym_block_comment] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [1151] = { [sym_line_comment] = STATE(1151), [sym_block_comment] = STATE(1151), - [sym_type_parameters] = STATE(1175), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [1152] = { [sym_line_comment] = STATE(1152), [sym_block_comment] = STATE(1152), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(1563), + [sym_plain_type] = STATE(1653), + [sym__plain_type_without_special] = STATE(1655), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1655), + [sym_result_type] = STATE(1655), + [sym_option_type] = STATE(1655), + [sym_qualified_type] = STATE(1563), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3940), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_fn] = ACTIONS(3944), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(3948), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(3950), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(3954), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(3956), + [anon_sym_LT_DASH] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(857), + [anon_sym_AMP_CARET] = ACTIONS(857), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_or] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(857), + [anon_sym_POUND_LBRACK] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(857), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(857), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [anon_sym_c_SQUOTE] = ACTIONS(857), + [anon_sym_c_DQUOTE] = ACTIONS(857), + [anon_sym_r_SQUOTE] = ACTIONS(857), + [anon_sym_r_DQUOTE] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(3958), + [anon_sym_map_LBRACK] = ACTIONS(3960), + [anon_sym_chan] = ACTIONS(3962), + [anon_sym_thread] = ACTIONS(3964), + [anon_sym_atomic] = ACTIONS(3966), }, [1153] = { [sym_line_comment] = STATE(1153), [sym_block_comment] = STATE(1153), - [sym_reference_expression] = STATE(4421), - [sym_type_reference_expression] = STATE(1568), - [sym_plain_type] = STATE(1668), - [sym__plain_type_without_special] = STATE(1643), - [sym_anon_struct_type] = STATE(1645), - [sym_multi_return_type] = STATE(1643), - [sym_result_type] = STATE(1643), - [sym_option_type] = STATE(1643), - [sym_qualified_type] = STATE(1568), - [sym_fixed_array_type] = STATE(1645), - [sym_array_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_wrong_pointer_type] = STATE(1645), - [sym_map_type] = STATE(1645), - [sym_channel_type] = STATE(1645), - [sym_shared_type] = STATE(1645), - [sym_thread_type] = STATE(1645), - [sym_atomic_type] = STATE(1645), - [sym_generic_type] = STATE(1645), - [sym_function_type] = STATE(1645), - [sym_identifier] = ACTIONS(3942), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(3944), - [anon_sym_fn] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_RBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3954), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(875), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_LT_DASH] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(875), - [anon_sym_AMP_CARET] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_or] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(875), - [anon_sym_POUND_LBRACK] = ACTIONS(875), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(875), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(875), - [sym_rune_literal] = ACTIONS(875), - [anon_sym_SQUOTE] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_c_SQUOTE] = ACTIONS(875), - [anon_sym_c_DQUOTE] = ACTIONS(875), - [anon_sym_r_SQUOTE] = ACTIONS(875), - [anon_sym_r_DQUOTE] = ACTIONS(875), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(3960), - [anon_sym_map_LBRACK] = ACTIONS(3962), - [anon_sym_chan] = ACTIONS(3964), - [anon_sym_thread] = ACTIONS(3966), - [anon_sym_atomic] = ACTIONS(3968), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1154] = { [sym_line_comment] = STATE(1154), [sym_block_comment] = STATE(1154), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_CR] = ACTIONS(2331), - [anon_sym_CR_LF] = ACTIONS(2331), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym___global] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [anon_sym_interface] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2331), - [anon_sym_LT_LT] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2331), - [anon_sym_AMP_CARET] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2331), - [anon_sym_POUND_LBRACK] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2331), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_rune_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_c_SQUOTE] = ACTIONS(2331), - [anon_sym_c_DQUOTE] = ACTIONS(2331), - [anon_sym_r_SQUOTE] = ACTIONS(2331), - [anon_sym_r_DQUOTE] = ACTIONS(2331), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2331), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), - [anon_sym_assert] = ACTIONS(2331), - [anon_sym_defer] = ACTIONS(2331), - [anon_sym_goto] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_DOLLARfor] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2331), - [anon_sym_asm] = ACTIONS(2331), - [anon_sym_AT_LBRACK] = ACTIONS(2331), + [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_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_PIPE] = 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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1155] = { [sym_line_comment] = STATE(1155), [sym_block_comment] = STATE(1155), - [sym_reference_expression] = STATE(4421), - [sym_type_reference_expression] = STATE(1568), - [sym_plain_type] = STATE(1660), - [sym__plain_type_without_special] = STATE(1643), - [sym_anon_struct_type] = STATE(1645), - [sym_multi_return_type] = STATE(1643), - [sym_result_type] = STATE(1643), - [sym_option_type] = STATE(1643), - [sym_qualified_type] = STATE(1568), - [sym_fixed_array_type] = STATE(1645), - [sym_array_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_wrong_pointer_type] = STATE(1645), - [sym_map_type] = STATE(1645), - [sym_channel_type] = STATE(1645), - [sym_shared_type] = STATE(1645), - [sym_thread_type] = STATE(1645), - [sym_atomic_type] = STATE(1645), - [sym_generic_type] = STATE(1645), - [sym_function_type] = STATE(1645), - [sym_identifier] = ACTIONS(3942), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(3944), - [anon_sym_fn] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_RBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3954), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_LT_DASH] = ACTIONS(879), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(879), - [anon_sym_AMP_CARET] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [anon_sym_or] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(879), - [anon_sym_POUND_LBRACK] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(879), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(879), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(879), - [sym_rune_literal] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_c_SQUOTE] = ACTIONS(879), - [anon_sym_c_DQUOTE] = ACTIONS(879), - [anon_sym_r_SQUOTE] = ACTIONS(879), - [anon_sym_r_DQUOTE] = ACTIONS(879), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(3960), - [anon_sym_map_LBRACK] = ACTIONS(3962), - [anon_sym_chan] = ACTIONS(3964), - [anon_sym_thread] = ACTIONS(3966), - [anon_sym_atomic] = ACTIONS(3968), - }, - [1156] = { - [sym_line_comment] = STATE(1156), - [sym_block_comment] = STATE(1156), [ts_builtin_sym_end] = ACTIONS(2091), [sym_identifier] = ACTIONS(2093), [anon_sym_LF] = ACTIONS(2093), @@ -155376,8 +155511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2093), [anon_sym_POUND_LBRACK] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(3974), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2093), [anon_sym_in] = ACTIONS(2093), @@ -155415,112 +155550,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2093), [anon_sym_AT_LBRACK] = ACTIONS(2093), }, + [1156] = { + [sym_line_comment] = STATE(1156), + [sym_block_comment] = STATE(1156), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(851), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(851), + [anon_sym_as] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_fn] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_mut] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_go] = ACTIONS(851), + [anon_sym_spawn] = ACTIONS(851), + [anon_sym_json_DOTdecode] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_LBRACK2] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_LT_DASH] = ACTIONS(849), + [anon_sym_LT_LT] = ACTIONS(849), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_GT_GT_GT] = ACTIONS(849), + [anon_sym_AMP_CARET] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_or] = ACTIONS(851), + [sym_none] = ACTIONS(851), + [sym_true] = ACTIONS(851), + [sym_false] = ACTIONS(851), + [sym_nil] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(849), + [anon_sym_POUND_LBRACK] = ACTIONS(849), + [anon_sym_if] = ACTIONS(851), + [anon_sym_DOLLARif] = ACTIONS(851), + [anon_sym_is] = ACTIONS(851), + [anon_sym_BANGis] = ACTIONS(849), + [anon_sym_in] = ACTIONS(851), + [anon_sym_BANGin] = ACTIONS(849), + [anon_sym_match] = ACTIONS(851), + [anon_sym_select] = ACTIONS(851), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(851), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(851), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_SQUOTE] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_c_SQUOTE] = ACTIONS(849), + [anon_sym_c_DQUOTE] = ACTIONS(849), + [anon_sym_r_SQUOTE] = ACTIONS(849), + [anon_sym_r_DQUOTE] = ACTIONS(849), + [sym_pseudo_compile_time_identifier] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(851), + [anon_sym_map_LBRACK] = ACTIONS(849), + [anon_sym_chan] = ACTIONS(851), + [anon_sym_thread] = ACTIONS(851), + [anon_sym_atomic] = ACTIONS(851), + }, [1157] = { [sym_line_comment] = STATE(1157), [sym_block_comment] = STATE(1157), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym___global] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + [anon_sym_AT_LBRACK] = ACTIONS(2105), }, [1158] = { [sym_line_comment] = STATE(1158), [sym_block_comment] = STATE(1158), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym___global] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_pub] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym_AT_LBRACK] = ACTIONS(3312), + }, + [1159] = { + [sym_line_comment] = STATE(1159), + [sym_block_comment] = STATE(1159), [ts_builtin_sym_end] = ACTIONS(3306), [sym_identifier] = ACTIONS(3308), [anon_sym_LF] = ACTIONS(3308), @@ -155620,719 +155960,617 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3308), [anon_sym_AT_LBRACK] = ACTIONS(3308), }, - [1159] = { - [sym_line_comment] = STATE(1159), - [sym_block_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym___global] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_pub] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), - [anon_sym_AT_LBRACK] = ACTIONS(2831), - }, [1160] = { [sym_line_comment] = STATE(1160), [sym_block_comment] = STATE(1160), - [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(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [1161] = { [sym_line_comment] = STATE(1161), [sym_block_comment] = STATE(1161), - [ts_builtin_sym_end] = ACTIONS(3292), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LF] = ACTIONS(3294), - [anon_sym_CR] = ACTIONS(3294), - [anon_sym_CR_LF] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COMMA] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym___global] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_EQ] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_pub] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_CARET] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3294), - [anon_sym_LT_LT] = ACTIONS(3294), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3294), - [anon_sym_AMP_CARET] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3294), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3294), - [anon_sym_POUND_LBRACK] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3294), - [sym_rune_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_c_SQUOTE] = ACTIONS(3294), - [anon_sym_c_DQUOTE] = ACTIONS(3294), - [anon_sym_r_SQUOTE] = ACTIONS(3294), - [anon_sym_r_DQUOTE] = ACTIONS(3294), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3294), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - [anon_sym_assert] = ACTIONS(3294), - [anon_sym_defer] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_DOLLARfor] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_POUND] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - [anon_sym_AT_LBRACK] = ACTIONS(3294), - }, - [1162] = { - [sym_line_comment] = STATE(1162), - [sym_block_comment] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LF] = ACTIONS(3286), + [anon_sym_CR] = ACTIONS(3286), + [anon_sym_CR_LF] = ACTIONS(3286), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_c_SQUOTE] = ACTIONS(2989), - [anon_sym_c_DQUOTE] = ACTIONS(2989), - [anon_sym_r_SQUOTE] = ACTIONS(2989), - [anon_sym_r_DQUOTE] = ACTIONS(2989), - [sym_pseudo_compile_time_identifier] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym___global] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_pub] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_QMARK] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_go] = ACTIONS(3286), + [anon_sym_spawn] = ACTIONS(3286), + [anon_sym_json_DOTdecode] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LBRACK2] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_LT_DASH] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_or] = ACTIONS(3286), + [sym_none] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_nil] = ACTIONS(3286), + [anon_sym_QMARK_DOT] = ACTIONS(3286), + [anon_sym_POUND_LBRACK] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_DOLLARif] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_select] = ACTIONS(3286), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3286), + [anon_sym_sql] = ACTIONS(3286), + [sym_int_literal] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3286), + [sym_rune_literal] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_c_SQUOTE] = ACTIONS(3286), + [anon_sym_c_DQUOTE] = ACTIONS(3286), + [anon_sym_r_SQUOTE] = ACTIONS(3286), + [anon_sym_r_DQUOTE] = ACTIONS(3286), + [sym_pseudo_compile_time_identifier] = ACTIONS(3286), + [anon_sym_shared] = ACTIONS(3286), + [anon_sym_map_LBRACK] = ACTIONS(3286), + [anon_sym_chan] = ACTIONS(3286), + [anon_sym_thread] = ACTIONS(3286), + [anon_sym_atomic] = ACTIONS(3286), + [anon_sym_assert] = ACTIONS(3286), + [anon_sym_defer] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_DOLLARfor] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym_AT_LBRACK] = ACTIONS(3286), + }, + [1162] = { + [sym_line_comment] = STATE(1162), + [sym_block_comment] = STATE(1162), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_CR] = ACTIONS(2377), + [anon_sym_CR_LF] = ACTIONS(2377), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym___global] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2377), + [anon_sym_defer] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_DOLLARfor] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym_AT_LBRACK] = ACTIONS(2377), }, [1163] = { [sym_line_comment] = STATE(1163), [sym_block_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [anon_sym_LF] = ACTIONS(3270), - [anon_sym_CR] = ACTIONS(3270), - [anon_sym_CR_LF] = ACTIONS(3270), + [ts_builtin_sym_end] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3280), + [anon_sym_CR] = ACTIONS(3280), + [anon_sym_CR_LF] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym___global] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_fn] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_LT_EQ] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_pub] = ACTIONS(3270), - [anon_sym_mut] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_QMARK] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_go] = ACTIONS(3270), - [anon_sym_spawn] = ACTIONS(3270), - [anon_sym_json_DOTdecode] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_LBRACK2] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_LT_DASH] = ACTIONS(3270), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3270), - [anon_sym_GT_GT_GT] = ACTIONS(3270), - [anon_sym_AMP_CARET] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3270), - [sym_none] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_nil] = ACTIONS(3270), - [anon_sym_QMARK_DOT] = ACTIONS(3270), - [anon_sym_POUND_LBRACK] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_DOLLARif] = ACTIONS(3270), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_BANGin] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_lock] = ACTIONS(3270), - [anon_sym_rlock] = ACTIONS(3270), - [anon_sym_unsafe] = ACTIONS(3270), - [anon_sym_sql] = ACTIONS(3270), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(3270), - [sym_rune_literal] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_c_SQUOTE] = ACTIONS(3270), - [anon_sym_c_DQUOTE] = ACTIONS(3270), - [anon_sym_r_SQUOTE] = ACTIONS(3270), - [anon_sym_r_DQUOTE] = ACTIONS(3270), - [sym_pseudo_compile_time_identifier] = ACTIONS(3270), - [anon_sym_shared] = ACTIONS(3270), - [anon_sym_map_LBRACK] = ACTIONS(3270), - [anon_sym_chan] = ACTIONS(3270), - [anon_sym_thread] = ACTIONS(3270), - [anon_sym_atomic] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_defer] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_DOLLARfor] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym_AT_LBRACK] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym___global] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_union] = ACTIONS(3280), + [anon_sym_pub] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3280), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3280), + [anon_sym_AMP_CARET] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3280), + [anon_sym_POUND_LBRACK] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3280), + [sym_rune_literal] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_c_SQUOTE] = ACTIONS(3280), + [anon_sym_c_DQUOTE] = ACTIONS(3280), + [anon_sym_r_SQUOTE] = ACTIONS(3280), + [anon_sym_r_DQUOTE] = ACTIONS(3280), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3280), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), + [anon_sym_assert] = ACTIONS(3280), + [anon_sym_defer] = ACTIONS(3280), + [anon_sym_goto] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_DOLLARfor] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3280), + [anon_sym_asm] = ACTIONS(3280), + [anon_sym_AT_LBRACK] = ACTIONS(3280), }, [1164] = { [sym_line_comment] = STATE(1164), [sym_block_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LF] = ACTIONS(2951), + [anon_sym_CR] = ACTIONS(2951), + [anon_sym_CR_LF] = ACTIONS(2951), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym___global] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_pub] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [anon_sym_c_SQUOTE] = ACTIONS(2947), - [anon_sym_c_DQUOTE] = ACTIONS(2947), - [anon_sym_r_SQUOTE] = ACTIONS(2947), - [anon_sym_r_DQUOTE] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [anon_sym_assert] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_DOLLARfor] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym_AT_LBRACK] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym___global] = ACTIONS(2951), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [anon_sym_pub] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_c_SQUOTE] = ACTIONS(2951), + [anon_sym_c_DQUOTE] = ACTIONS(2951), + [anon_sym_r_SQUOTE] = ACTIONS(2951), + [anon_sym_r_DQUOTE] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), + [anon_sym_assert] = ACTIONS(2951), + [anon_sym_defer] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_DOLLARfor] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), + [anon_sym_AT_LBRACK] = ACTIONS(2951), }, [1165] = { [sym_line_comment] = STATE(1165), [sym_block_comment] = STATE(1165), - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LF] = ACTIONS(2925), - [anon_sym_CR] = ACTIONS(2925), - [anon_sym_CR_LF] = ACTIONS(2925), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_as] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym___global] = ACTIONS(2925), - [anon_sym_type] = ACTIONS(2925), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_pub] = ACTIONS(2925), - [anon_sym_mut] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_interface] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2925), - [anon_sym_spawn] = ACTIONS(2925), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2925), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_nil] = ACTIONS(2925), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_DOLLARif] = ACTIONS(2925), - [anon_sym_is] = ACTIONS(2925), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_select] = ACTIONS(2925), - [anon_sym_lock] = ACTIONS(2925), - [anon_sym_rlock] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_sql] = ACTIONS(2925), - [sym_int_literal] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_c_SQUOTE] = ACTIONS(2925), - [anon_sym_c_DQUOTE] = ACTIONS(2925), - [anon_sym_r_SQUOTE] = ACTIONS(2925), - [anon_sym_r_DQUOTE] = ACTIONS(2925), - [sym_pseudo_compile_time_identifier] = ACTIONS(2925), - [anon_sym_shared] = ACTIONS(2925), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2925), - [anon_sym_thread] = ACTIONS(2925), - [anon_sym_atomic] = ACTIONS(2925), - [anon_sym_assert] = ACTIONS(2925), - [anon_sym_defer] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_DOLLARfor] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_POUND] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym_AT_LBRACK] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym___global] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym_AT_LBRACK] = ACTIONS(2929), }, [1166] = { [sym_line_comment] = STATE(1166), @@ -156439,618 +156677,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1167] = { [sym_line_comment] = STATE(1167), [sym_block_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym___global] = ACTIONS(3031), - [anon_sym_type] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_pub] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_interface] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym_AT_LBRACK] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym___global] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_interface] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym_AT_LBRACK] = ACTIONS(2383), }, [1168] = { [sym_line_comment] = STATE(1168), [sym_block_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_CR] = ACTIONS(2387), - [anon_sym_CR_LF] = ACTIONS(2387), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym___global] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_pub] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_interface] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2387), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2387), - [anon_sym_POUND_LBRACK] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_rune_literal] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_c_SQUOTE] = ACTIONS(2387), - [anon_sym_c_DQUOTE] = ACTIONS(2387), - [anon_sym_r_SQUOTE] = ACTIONS(2387), - [anon_sym_r_DQUOTE] = ACTIONS(2387), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2387), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), - [anon_sym_assert] = ACTIONS(2387), - [anon_sym_defer] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_DOLLARfor] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(2387), - [anon_sym_asm] = ACTIONS(2387), - [anon_sym_AT_LBRACK] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), }, [1169] = { [sym_line_comment] = STATE(1169), [sym_block_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LF] = ACTIONS(2637), - [anon_sym_CR] = ACTIONS(2637), - [anon_sym_CR_LF] = ACTIONS(2637), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_LF] = ACTIONS(2631), + [anon_sym_CR] = ACTIONS(2631), + [anon_sym_CR_LF] = ACTIONS(2631), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym___global] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_pub] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_AMP_CARET] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2637), - [anon_sym_POUND_LBRACK] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_rune_literal] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_c_SQUOTE] = ACTIONS(2637), - [anon_sym_c_DQUOTE] = ACTIONS(2637), - [anon_sym_r_SQUOTE] = ACTIONS(2637), - [anon_sym_r_DQUOTE] = ACTIONS(2637), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2637), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), - [anon_sym_assert] = ACTIONS(2637), - [anon_sym_defer] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_DOLLARfor] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym_AT_LBRACK] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym___global] = ACTIONS(2631), + [anon_sym_type] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_pub] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_interface] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_AMP_CARET] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2631), + [anon_sym_POUND_LBRACK] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), + [sym_rune_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_c_SQUOTE] = ACTIONS(2631), + [anon_sym_c_DQUOTE] = ACTIONS(2631), + [anon_sym_r_SQUOTE] = ACTIONS(2631), + [anon_sym_r_DQUOTE] = ACTIONS(2631), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2631), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2631), + [anon_sym_defer] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_DOLLARfor] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), + [anon_sym_AT_LBRACK] = ACTIONS(2631), }, [1170] = { [sym_line_comment] = STATE(1170), [sym_block_comment] = STATE(1170), - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym___global] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_pub] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_interface] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - [anon_sym_AT_LBRACK] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), }, [1171] = { [sym_line_comment] = STATE(1171), [sym_block_comment] = STATE(1171), - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_c_SQUOTE] = ACTIONS(2997), - [anon_sym_c_DQUOTE] = ACTIONS(2997), - [anon_sym_r_SQUOTE] = ACTIONS(2997), - [anon_sym_r_DQUOTE] = ACTIONS(2997), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), }, [1172] = { [sym_line_comment] = STATE(1172), [sym_block_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_CR] = ACTIONS(2633), - [anon_sym_CR_LF] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym___global] = ACTIONS(2633), - [anon_sym_type] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_pub] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_interface] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_c_SQUOTE] = ACTIONS(2633), - [anon_sym_c_DQUOTE] = ACTIONS(2633), - [anon_sym_r_SQUOTE] = ACTIONS(2633), - [anon_sym_r_DQUOTE] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), - [anon_sym_assert] = ACTIONS(2633), - [anon_sym_defer] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_DOLLARfor] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym_AT_LBRACK] = ACTIONS(2633), - }, - [1173] = { - [sym_line_comment] = STATE(1173), - [sym_block_comment] = STATE(1173), [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_LF] = ACTIONS(2627), @@ -157150,417 +157286,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2627), [anon_sym_AT_LBRACK] = ACTIONS(2627), }, + [1173] = { + [sym_line_comment] = STATE(1173), + [sym_block_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym___global] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_defer] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_DOLLARfor] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_asm] = ACTIONS(2465), + [anon_sym_AT_LBRACK] = ACTIONS(2465), + }, [1174] = { [sym_line_comment] = STATE(1174), [sym_block_comment] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LF] = ACTIONS(2373), - [anon_sym_CR] = ACTIONS(2373), - [anon_sym_CR_LF] = ACTIONS(2373), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym___global] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_PERCENT] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2373), - [anon_sym_BANG_EQ] = ACTIONS(2373), - [anon_sym_LT_EQ] = ACTIONS(2373), - [anon_sym_GT_EQ] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_union] = ACTIONS(2373), - [anon_sym_pub] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_QMARK] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_go] = ACTIONS(2373), - [anon_sym_spawn] = ACTIONS(2373), - [anon_sym_json_DOTdecode] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_LBRACK2] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_DASH] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_GT_GT] = ACTIONS(2373), - [anon_sym_GT_GT_GT] = ACTIONS(2373), - [anon_sym_AMP_CARET] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_PIPE_PIPE] = ACTIONS(2373), - [anon_sym_or] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_nil] = ACTIONS(2373), - [anon_sym_QMARK_DOT] = ACTIONS(2373), - [anon_sym_POUND_LBRACK] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2373), - [anon_sym_is] = ACTIONS(2373), - [anon_sym_BANGis] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_BANGin] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_select] = ACTIONS(2373), - [anon_sym_lock] = ACTIONS(2373), - [anon_sym_rlock] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_sql] = ACTIONS(2373), - [sym_int_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_rune_literal] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [anon_sym_c_SQUOTE] = ACTIONS(2373), - [anon_sym_c_DQUOTE] = ACTIONS(2373), - [anon_sym_r_SQUOTE] = ACTIONS(2373), - [anon_sym_r_DQUOTE] = ACTIONS(2373), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2373), - [anon_sym_map_LBRACK] = ACTIONS(2373), - [anon_sym_chan] = ACTIONS(2373), - [anon_sym_thread] = ACTIONS(2373), - [anon_sym_atomic] = ACTIONS(2373), - [anon_sym_assert] = ACTIONS(2373), - [anon_sym_defer] = ACTIONS(2373), - [anon_sym_goto] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_DOLLARfor] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2373), - [anon_sym_asm] = ACTIONS(2373), - [anon_sym_AT_LBRACK] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [1175] = { [sym_line_comment] = STATE(1175), [sym_block_comment] = STATE(1175), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_const] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym___global] = ACTIONS(3045), + [anon_sym_type] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_union] = ACTIONS(3045), + [anon_sym_pub] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), + [anon_sym_AT_LBRACK] = ACTIONS(3045), }, [1176] = { [sym_line_comment] = STATE(1176), [sym_block_comment] = STATE(1176), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [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_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(2178), - [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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), - }, - [1177] = { - [sym_line_comment] = STATE(1177), - [sym_block_comment] = STATE(1177), - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym___global] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_interface] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_c_SQUOTE] = ACTIONS(2643), - [anon_sym_c_DQUOTE] = ACTIONS(2643), - [anon_sym_r_SQUOTE] = ACTIONS(2643), - [anon_sym_r_DQUOTE] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), - [anon_sym_AT_LBRACK] = ACTIONS(2643), - }, - [1178] = { - [sym_line_comment] = STATE(1178), - [sym_block_comment] = STATE(1178), [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_LF] = ACTIONS(2647), @@ -157660,213 +157694,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2647), [anon_sym_AT_LBRACK] = ACTIONS(2647), }, + [1177] = { + [sym_line_comment] = STATE(1177), + [sym_block_comment] = STATE(1177), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1178] = { + [sym_line_comment] = STATE(1178), + [sym_block_comment] = STATE(1178), + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), + }, [1179] = { [sym_line_comment] = STATE(1179), [sym_block_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym___global] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_pub] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_interface] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym_AT_LBRACK] = ACTIONS(3055), }, [1180] = { [sym_line_comment] = STATE(1180), [sym_block_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym___global] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_union] = ACTIONS(3080), - [anon_sym_pub] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_or] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3080), - [anon_sym_POUND_LBRACK] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - [anon_sym_assert] = ACTIONS(3080), - [anon_sym_defer] = ACTIONS(3080), - [anon_sym_goto] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_DOLLARfor] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_asm] = ACTIONS(3080), - [anon_sym_AT_LBRACK] = ACTIONS(3080), - }, - [1181] = { - [sym_line_comment] = STATE(1181), - [sym_block_comment] = STATE(1181), [ts_builtin_sym_end] = ACTIONS(2933), [sym_identifier] = ACTIONS(2935), [anon_sym_LF] = ACTIONS(2935), @@ -157966,573 +158102,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2935), [anon_sym_AT_LBRACK] = ACTIONS(2935), }, + [1181] = { + [sym_line_comment] = STATE(1181), + [sym_block_comment] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym___global] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym_AT_LBRACK] = ACTIONS(2961), + }, [1182] = { [sym_line_comment] = STATE(1182), [sym_block_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LF] = ACTIONS(2957), - [anon_sym_CR] = ACTIONS(2957), - [anon_sym_CR_LF] = ACTIONS(2957), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym___global] = ACTIONS(2957), - [anon_sym_type] = ACTIONS(2957), - [anon_sym_fn] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_pub] = ACTIONS(2957), - [anon_sym_mut] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_interface] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_go] = ACTIONS(2957), - [anon_sym_spawn] = ACTIONS(2957), - [anon_sym_json_DOTdecode] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_LT_DASH] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2957), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_AMP_CARET] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2957), - [sym_none] = ACTIONS(2957), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_nil] = ACTIONS(2957), - [anon_sym_QMARK_DOT] = ACTIONS(2957), - [anon_sym_POUND_LBRACK] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_DOLLARif] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_BANGis] = ACTIONS(2957), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_BANGin] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2957), - [anon_sym_sql] = ACTIONS(2957), - [sym_int_literal] = ACTIONS(2957), - [sym_float_literal] = ACTIONS(2957), - [sym_rune_literal] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_c_SQUOTE] = ACTIONS(2957), - [anon_sym_c_DQUOTE] = ACTIONS(2957), - [anon_sym_r_SQUOTE] = ACTIONS(2957), - [anon_sym_r_DQUOTE] = ACTIONS(2957), - [sym_pseudo_compile_time_identifier] = ACTIONS(2957), - [anon_sym_shared] = ACTIONS(2957), - [anon_sym_map_LBRACK] = ACTIONS(2957), - [anon_sym_chan] = ACTIONS(2957), - [anon_sym_thread] = ACTIONS(2957), - [anon_sym_atomic] = ACTIONS(2957), - [anon_sym_assert] = ACTIONS(2957), - [anon_sym_defer] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_DOLLARfor] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_POUND] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym_AT_LBRACK] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym___global] = ACTIONS(2973), + [anon_sym_type] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_pub] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_interface] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_CARET] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_assert] = ACTIONS(2973), + [anon_sym_defer] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_DOLLARfor] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym_AT_LBRACK] = ACTIONS(2973), }, [1183] = { [sym_line_comment] = STATE(1183), [sym_block_comment] = STATE(1183), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym___global] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_pub] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_c_SQUOTE] = ACTIONS(2977), - [anon_sym_c_DQUOTE] = ACTIONS(2977), - [anon_sym_r_SQUOTE] = ACTIONS(2977), - [anon_sym_r_DQUOTE] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_defer] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_DOLLARfor] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym_AT_LBRACK] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym___global] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_union] = ACTIONS(3250), + [anon_sym_pub] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + [anon_sym_AT_LBRACK] = ACTIONS(3250), }, [1184] = { [sym_line_comment] = STATE(1184), [sym_block_comment] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3244), - [anon_sym_LF] = ACTIONS(3244), - [anon_sym_CR] = ACTIONS(3244), - [anon_sym_CR_LF] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3256), + [anon_sym_CR] = ACTIONS(3256), + [anon_sym_CR_LF] = ACTIONS(3256), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym___global] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_union] = ACTIONS(3244), - [anon_sym_pub] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3244), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3244), - [anon_sym_POUND_LBRACK] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3244), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_c_SQUOTE] = ACTIONS(3244), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3244), - [anon_sym_r_DQUOTE] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3244), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), - [anon_sym_assert] = ACTIONS(3244), - [anon_sym_defer] = ACTIONS(3244), - [anon_sym_goto] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_DOLLARfor] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_asm] = ACTIONS(3244), - [anon_sym_AT_LBRACK] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym___global] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_pub] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_interface] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_c_SQUOTE] = ACTIONS(3256), + [anon_sym_c_DQUOTE] = ACTIONS(3256), + [anon_sym_r_SQUOTE] = ACTIONS(3256), + [anon_sym_r_DQUOTE] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), + [anon_sym_assert] = ACTIONS(3256), + [anon_sym_defer] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_DOLLARfor] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym_AT_LBRACK] = ACTIONS(3256), }, [1185] = { [sym_line_comment] = STATE(1185), [sym_block_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3274), + [anon_sym_LF] = ACTIONS(3274), + [anon_sym_CR] = ACTIONS(3274), + [anon_sym_CR_LF] = ACTIONS(3274), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym___global] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3354), - [anon_sym_BANG_EQ] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_pub] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3354), - [anon_sym_AMP_CARET] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_PIPE_PIPE] = ACTIONS(3354), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym_AT_LBRACK] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym___global] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_fn] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_pub] = ACTIONS(3274), + [anon_sym_mut] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_go] = ACTIONS(3274), + [anon_sym_spawn] = ACTIONS(3274), + [anon_sym_json_DOTdecode] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3274), + [anon_sym_LBRACK2] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_CARET] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_LT_LT] = ACTIONS(3274), + [anon_sym_GT_GT] = ACTIONS(3274), + [anon_sym_GT_GT_GT] = ACTIONS(3274), + [anon_sym_AMP_CARET] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3274), + [sym_none] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_nil] = ACTIONS(3274), + [anon_sym_QMARK_DOT] = ACTIONS(3274), + [anon_sym_POUND_LBRACK] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_DOLLARif] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3274), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_select] = ACTIONS(3274), + [anon_sym_lock] = ACTIONS(3274), + [anon_sym_rlock] = ACTIONS(3274), + [anon_sym_unsafe] = ACTIONS(3274), + [anon_sym_sql] = ACTIONS(3274), + [sym_int_literal] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(3274), + [sym_rune_literal] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_c_SQUOTE] = ACTIONS(3274), + [anon_sym_c_DQUOTE] = ACTIONS(3274), + [anon_sym_r_SQUOTE] = ACTIONS(3274), + [anon_sym_r_DQUOTE] = ACTIONS(3274), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), + [anon_sym_shared] = ACTIONS(3274), + [anon_sym_map_LBRACK] = ACTIONS(3274), + [anon_sym_chan] = ACTIONS(3274), + [anon_sym_thread] = ACTIONS(3274), + [anon_sym_atomic] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_defer] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_DOLLARfor] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_POUND] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym_AT_LBRACK] = ACTIONS(3274), }, [1186] = { [sym_line_comment] = STATE(1186), [sym_block_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3027), - [anon_sym_LF] = ACTIONS(3027), - [anon_sym_CR] = ACTIONS(3027), - [anon_sym_CR_LF] = ACTIONS(3027), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym___global] = ACTIONS(3027), - [anon_sym_type] = ACTIONS(3027), - [anon_sym_fn] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_pub] = ACTIONS(3027), - [anon_sym_mut] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_interface] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3027), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_nil] = ACTIONS(3027), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3027), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [anon_sym_lock] = ACTIONS(3027), - [anon_sym_rlock] = ACTIONS(3027), - [anon_sym_unsafe] = ACTIONS(3027), - [anon_sym_sql] = ACTIONS(3027), - [sym_int_literal] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_c_SQUOTE] = ACTIONS(3027), - [anon_sym_c_DQUOTE] = ACTIONS(3027), - [anon_sym_r_SQUOTE] = ACTIONS(3027), - [anon_sym_r_DQUOTE] = ACTIONS(3027), - [sym_pseudo_compile_time_identifier] = ACTIONS(3027), - [anon_sym_shared] = ACTIONS(3027), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3027), - [anon_sym_thread] = ACTIONS(3027), - [anon_sym_atomic] = ACTIONS(3027), - [anon_sym_assert] = ACTIONS(3027), - [anon_sym_defer] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_DOLLARfor] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_POUND] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym_AT_LBRACK] = ACTIONS(3027), - }, - [1187] = { - [sym_line_comment] = STATE(1187), - [sym_block_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_EQ_EQ] = ACTIONS(3336), - [anon_sym_BANG_EQ] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3336), - [anon_sym_AMP_CARET] = ACTIONS(3336), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_PIPE_PIPE] = ACTIONS(3336), - [anon_sym_or] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym___global] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_pub] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3332), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [anon_sym_assert] = ACTIONS(3332), + [anon_sym_defer] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_DOLLARfor] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym_AT_LBRACK] = ACTIONS(3332), + }, + [1187] = { + [sym_line_comment] = STATE(1187), + [sym_block_comment] = STATE(1187), + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym___global] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_pub] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), [sym_none] = ACTIONS(3336), [sym_true] = ACTIONS(3336), [sym_false] = ACTIONS(3336), @@ -158581,210 +158819,720 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1188] = { [sym_line_comment] = STATE(1188), [sym_block_comment] = STATE(1188), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym___global] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_pub] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_c_SQUOTE] = ACTIONS(3340), + [anon_sym_c_DQUOTE] = ACTIONS(3340), + [anon_sym_r_SQUOTE] = ACTIONS(3340), + [anon_sym_r_DQUOTE] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), + [anon_sym_AT_LBRACK] = ACTIONS(3340), }, [1189] = { [sym_line_comment] = STATE(1189), [sym_block_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_COMMA] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym___global] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_pub] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3254), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3254), - [anon_sym_AMP_CARET] = ACTIONS(3254), - [anon_sym_AMP_AMP] = ACTIONS(3254), - [anon_sym_PIPE_PIPE] = ACTIONS(3254), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3254), - [anon_sym_POUND_LBRACK] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3254), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym_AT_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym___global] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_union] = ACTIONS(3080), + [anon_sym_pub] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_c_SQUOTE] = ACTIONS(3080), + [anon_sym_c_DQUOTE] = ACTIONS(3080), + [anon_sym_r_SQUOTE] = ACTIONS(3080), + [anon_sym_r_DQUOTE] = ACTIONS(3080), + [sym_pseudo_compile_time_identifier] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_assert] = ACTIONS(3080), + [anon_sym_defer] = ACTIONS(3080), + [anon_sym_goto] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_DOLLARfor] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_asm] = ACTIONS(3080), + [anon_sym_AT_LBRACK] = ACTIONS(3080), }, [1190] = { [sym_line_comment] = STATE(1190), [sym_block_comment] = STATE(1190), + [ts_builtin_sym_end] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LF] = ACTIONS(2947), + [anon_sym_CR] = ACTIONS(2947), + [anon_sym_CR_LF] = ACTIONS(2947), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_as] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym___global] = ACTIONS(2947), + [anon_sym_type] = ACTIONS(2947), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [anon_sym_pub] = ACTIONS(2947), + [anon_sym_mut] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_interface] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_QMARK] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2947), + [anon_sym_spawn] = ACTIONS(2947), + [anon_sym_json_DOTdecode] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2947), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2947), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_or] = ACTIONS(2947), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_QMARK_DOT] = ACTIONS(2947), + [anon_sym_POUND_LBRACK] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_DOLLARif] = ACTIONS(2947), + [anon_sym_is] = ACTIONS(2947), + [anon_sym_BANGis] = ACTIONS(2947), + [anon_sym_in] = ACTIONS(2947), + [anon_sym_BANGin] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_select] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2947), + [anon_sym_rlock] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_sql] = ACTIONS(2947), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2947), + [sym_rune_literal] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_c_SQUOTE] = ACTIONS(2947), + [anon_sym_c_DQUOTE] = ACTIONS(2947), + [anon_sym_r_SQUOTE] = ACTIONS(2947), + [anon_sym_r_DQUOTE] = ACTIONS(2947), + [sym_pseudo_compile_time_identifier] = ACTIONS(2947), + [anon_sym_shared] = ACTIONS(2947), + [anon_sym_map_LBRACK] = ACTIONS(2947), + [anon_sym_chan] = ACTIONS(2947), + [anon_sym_thread] = ACTIONS(2947), + [anon_sym_atomic] = ACTIONS(2947), + [anon_sym_assert] = ACTIONS(2947), + [anon_sym_defer] = ACTIONS(2947), + [anon_sym_goto] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_DOLLARfor] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_asm] = ACTIONS(2947), + [anon_sym_AT_LBRACK] = ACTIONS(2947), + }, + [1191] = { + [sym_line_comment] = STATE(1191), + [sym_block_comment] = STATE(1191), + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2845), + [anon_sym_LF] = ACTIONS(2845), + [anon_sym_CR] = ACTIONS(2845), + [anon_sym_CR_LF] = ACTIONS(2845), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2845), + [anon_sym_as] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_COMMA] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym___global] = ACTIONS(2845), + [anon_sym_type] = ACTIONS(2845), + [anon_sym_fn] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_PERCENT] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_pub] = ACTIONS(2845), + [anon_sym_mut] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_interface] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_QMARK] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_go] = ACTIONS(2845), + [anon_sym_spawn] = ACTIONS(2845), + [anon_sym_json_DOTdecode] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_LBRACK2] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_CARET] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_LT_DASH] = ACTIONS(2845), + [anon_sym_LT_LT] = ACTIONS(2845), + [anon_sym_GT_GT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2845), + [anon_sym_AMP_CARET] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_or] = ACTIONS(2845), + [sym_none] = ACTIONS(2845), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_nil] = ACTIONS(2845), + [anon_sym_QMARK_DOT] = ACTIONS(2845), + [anon_sym_POUND_LBRACK] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_DOLLARif] = ACTIONS(2845), + [anon_sym_is] = ACTIONS(2845), + [anon_sym_BANGis] = ACTIONS(2845), + [anon_sym_in] = ACTIONS(2845), + [anon_sym_BANGin] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_select] = ACTIONS(2845), + [anon_sym_lock] = ACTIONS(2845), + [anon_sym_rlock] = ACTIONS(2845), + [anon_sym_unsafe] = ACTIONS(2845), + [anon_sym_sql] = ACTIONS(2845), + [sym_int_literal] = ACTIONS(2845), + [sym_float_literal] = ACTIONS(2845), + [sym_rune_literal] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [anon_sym_c_SQUOTE] = ACTIONS(2845), + [anon_sym_c_DQUOTE] = ACTIONS(2845), + [anon_sym_r_SQUOTE] = ACTIONS(2845), + [anon_sym_r_DQUOTE] = ACTIONS(2845), + [sym_pseudo_compile_time_identifier] = ACTIONS(2845), + [anon_sym_shared] = ACTIONS(2845), + [anon_sym_map_LBRACK] = ACTIONS(2845), + [anon_sym_chan] = ACTIONS(2845), + [anon_sym_thread] = ACTIONS(2845), + [anon_sym_atomic] = ACTIONS(2845), + [anon_sym_assert] = ACTIONS(2845), + [anon_sym_defer] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_DOLLARfor] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2845), + [anon_sym_asm] = ACTIONS(2845), + [anon_sym_AT_LBRACK] = ACTIONS(2845), + }, + [1192] = { + [sym_line_comment] = STATE(1192), + [sym_block_comment] = STATE(1192), + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2849), + [anon_sym_CR] = ACTIONS(2849), + [anon_sym_CR_LF] = ACTIONS(2849), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym___global] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_pub] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_interface] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_defer] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_DOLLARfor] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_asm] = ACTIONS(2849), + [anon_sym_AT_LBRACK] = ACTIONS(2849), + }, + [1193] = { + [sym_line_comment] = STATE(1193), + [sym_block_comment] = STATE(1193), + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LF] = ACTIONS(2877), + [anon_sym_CR] = ACTIONS(2877), + [anon_sym_CR_LF] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym___global] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_pub] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_defer] = ACTIONS(2877), + [anon_sym_goto] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_DOLLARfor] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_asm] = ACTIONS(2877), + [anon_sym_AT_LBRACK] = ACTIONS(2877), + }, + [1194] = { + [sym_line_comment] = STATE(1194), + [sym_block_comment] = STATE(1194), + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2889), + [anon_sym_LF] = ACTIONS(2889), + [anon_sym_CR] = ACTIONS(2889), + [anon_sym_CR_LF] = ACTIONS(2889), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_const] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym___global] = ACTIONS(2889), + [anon_sym_type] = ACTIONS(2889), + [anon_sym_fn] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_union] = ACTIONS(2889), + [anon_sym_pub] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_enum] = ACTIONS(2889), + [anon_sym_interface] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), + [anon_sym_assert] = ACTIONS(2889), + [anon_sym_defer] = ACTIONS(2889), + [anon_sym_goto] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_DOLLARfor] = ACTIONS(2889), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_asm] = ACTIONS(2889), + [anon_sym_AT_LBRACK] = ACTIONS(2889), + }, + [1195] = { + [sym_line_comment] = STATE(1195), + [sym_block_comment] = STATE(1195), [ts_builtin_sym_end] = ACTIONS(3260), [sym_identifier] = ACTIONS(3262), [anon_sym_LF] = ACTIONS(3262), @@ -158884,2661 +159632,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3262), [anon_sym_AT_LBRACK] = ACTIONS(3262), }, - [1191] = { - [sym_line_comment] = STATE(1191), - [sym_block_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(3276), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LF] = ACTIONS(3278), - [anon_sym_CR] = ACTIONS(3278), - [anon_sym_CR_LF] = ACTIONS(3278), + [1196] = { + [sym_line_comment] = STATE(1196), + [sym_block_comment] = STATE(1196), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym___global] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_pub] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3278), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3278), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3278), - [anon_sym_POUND_LBRACK] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3278), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3278), - [sym_rune_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_c_SQUOTE] = ACTIONS(3278), - [anon_sym_c_DQUOTE] = ACTIONS(3278), - [anon_sym_r_SQUOTE] = ACTIONS(3278), - [anon_sym_r_DQUOTE] = ACTIONS(3278), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3278), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_defer] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_DOLLARfor] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), - [anon_sym_AT_LBRACK] = ACTIONS(3278), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), }, - [1192] = { - [sym_line_comment] = STATE(1192), - [sym_block_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), + [1197] = { + [sym_line_comment] = STATE(1197), + [sym_block_comment] = STATE(1197), + [ts_builtin_sym_end] = ACTIONS(3071), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_CR] = ACTIONS(3073), + [anon_sym_CR_LF] = ACTIONS(3073), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym___global] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [anon_sym_EQ_EQ] = ACTIONS(3332), - [anon_sym_BANG_EQ] = ACTIONS(3332), - [anon_sym_LT_EQ] = ACTIONS(3332), - [anon_sym_GT_EQ] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_pub] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3332), - [anon_sym_GT_GT] = ACTIONS(3332), - [anon_sym_GT_GT_GT] = ACTIONS(3332), - [anon_sym_AMP_CARET] = ACTIONS(3332), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_PIPE_PIPE] = ACTIONS(3332), - [anon_sym_or] = ACTIONS(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3332), - [anon_sym_POUND_LBRACK] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3332), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_c_SQUOTE] = ACTIONS(3332), - [anon_sym_c_DQUOTE] = ACTIONS(3332), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [anon_sym_assert] = ACTIONS(3332), - [anon_sym_defer] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_DOLLARfor] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym_AT_LBRACK] = ACTIONS(3332), - }, - [1193] = { - [sym_line_comment] = STATE(1193), - [sym_block_comment] = STATE(1193), - [ts_builtin_sym_end] = ACTIONS(3344), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_CR] = ACTIONS(3346), - [anon_sym_CR_LF] = ACTIONS(3346), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym___global] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_fn] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_pub] = ACTIONS(3346), - [anon_sym_mut] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_go] = ACTIONS(3346), - [anon_sym_spawn] = ACTIONS(3346), - [anon_sym_json_DOTdecode] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3346), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_or] = ACTIONS(3346), - [sym_none] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_nil] = ACTIONS(3346), - [anon_sym_QMARK_DOT] = ACTIONS(3346), - [anon_sym_POUND_LBRACK] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3346), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_select] = ACTIONS(3346), - [anon_sym_lock] = ACTIONS(3346), - [anon_sym_rlock] = ACTIONS(3346), - [anon_sym_unsafe] = ACTIONS(3346), - [anon_sym_sql] = ACTIONS(3346), - [sym_int_literal] = ACTIONS(3346), - [sym_float_literal] = ACTIONS(3346), - [sym_rune_literal] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_c_SQUOTE] = ACTIONS(3346), - [anon_sym_c_DQUOTE] = ACTIONS(3346), - [anon_sym_r_SQUOTE] = ACTIONS(3346), - [anon_sym_r_DQUOTE] = ACTIONS(3346), - [sym_pseudo_compile_time_identifier] = ACTIONS(3346), - [anon_sym_shared] = ACTIONS(3346), - [anon_sym_map_LBRACK] = ACTIONS(3346), - [anon_sym_chan] = ACTIONS(3346), - [anon_sym_thread] = ACTIONS(3346), - [anon_sym_atomic] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_defer] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_DOLLARfor] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_POUND] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym_AT_LBRACK] = ACTIONS(3346), - }, - [1194] = { - [sym_line_comment] = STATE(1194), - [sym_block_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(3322), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LF] = ACTIONS(3324), - [anon_sym_CR] = ACTIONS(3324), - [anon_sym_CR_LF] = ACTIONS(3324), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_as] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym___global] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_fn] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_EQ_EQ] = ACTIONS(3324), - [anon_sym_BANG_EQ] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_union] = ACTIONS(3324), - [anon_sym_pub] = ACTIONS(3324), - [anon_sym_mut] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_go] = ACTIONS(3324), - [anon_sym_spawn] = ACTIONS(3324), - [anon_sym_json_DOTdecode] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_LBRACK2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_LT_DASH] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3324), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3324), - [anon_sym_AMP_CARET] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_PIPE_PIPE] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(3324), - [sym_none] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_nil] = ACTIONS(3324), - [anon_sym_QMARK_DOT] = ACTIONS(3324), - [anon_sym_POUND_LBRACK] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3324), - [anon_sym_is] = ACTIONS(3324), - [anon_sym_BANGis] = ACTIONS(3324), - [anon_sym_in] = ACTIONS(3324), - [anon_sym_BANGin] = ACTIONS(3324), - [anon_sym_match] = ACTIONS(3324), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3324), - [anon_sym_rlock] = ACTIONS(3324), - [anon_sym_unsafe] = ACTIONS(3324), - [anon_sym_sql] = ACTIONS(3324), - [sym_int_literal] = ACTIONS(3324), - [sym_float_literal] = ACTIONS(3324), - [sym_rune_literal] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_c_SQUOTE] = ACTIONS(3324), - [anon_sym_c_DQUOTE] = ACTIONS(3324), - [anon_sym_r_SQUOTE] = ACTIONS(3324), - [anon_sym_r_DQUOTE] = ACTIONS(3324), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(3324), - [anon_sym_map_LBRACK] = ACTIONS(3324), - [anon_sym_chan] = ACTIONS(3324), - [anon_sym_thread] = ACTIONS(3324), - [anon_sym_atomic] = ACTIONS(3324), - [anon_sym_assert] = ACTIONS(3324), - [anon_sym_defer] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_DOLLARfor] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3324), - [anon_sym_asm] = ACTIONS(3324), - [anon_sym_AT_LBRACK] = ACTIONS(3324), - }, - [1195] = { - [sym_line_comment] = STATE(1195), - [sym_block_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(3072), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym___global] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_pub] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_c_SQUOTE] = ACTIONS(3074), - [anon_sym_c_DQUOTE] = ACTIONS(3074), - [anon_sym_r_SQUOTE] = ACTIONS(3074), - [anon_sym_r_DQUOTE] = ACTIONS(3074), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym_AT_LBRACK] = ACTIONS(3074), - }, - [1196] = { - [sym_line_comment] = STATE(1196), - [sym_block_comment] = STATE(1196), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym___global] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_pub] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3350), - [anon_sym_GT_GT_GT] = ACTIONS(3350), - [anon_sym_AMP_CARET] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_or] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_QMARK_DOT] = ACTIONS(3350), - [anon_sym_POUND_LBRACK] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3350), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_defer] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_DOLLARfor] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym_AT_LBRACK] = ACTIONS(3350), - }, - [1197] = { - [sym_line_comment] = STATE(1197), - [sym_block_comment] = STATE(1197), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_c_SQUOTE] = ACTIONS(2459), - [anon_sym_c_DQUOTE] = ACTIONS(2459), - [anon_sym_r_SQUOTE] = ACTIONS(2459), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym___global] = ACTIONS(3073), + [anon_sym_type] = ACTIONS(3073), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_pub] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_interface] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3073), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3073), + [anon_sym_AMP_CARET] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3073), + [anon_sym_POUND_LBRACK] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3073), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), + [sym_rune_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_c_SQUOTE] = ACTIONS(3073), + [anon_sym_c_DQUOTE] = ACTIONS(3073), + [anon_sym_r_SQUOTE] = ACTIONS(3073), + [anon_sym_r_DQUOTE] = ACTIONS(3073), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3073), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_defer] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_DOLLARfor] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym_AT_LBRACK] = ACTIONS(3073), }, [1198] = { [sym_line_comment] = STATE(1198), [sym_block_comment] = STATE(1198), - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_CR] = ACTIONS(2845), - [anon_sym_CR_LF] = ACTIONS(2845), + [ts_builtin_sym_end] = ACTIONS(3063), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_CR] = ACTIONS(3065), + [anon_sym_CR_LF] = ACTIONS(3065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_as] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym___global] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_PERCENT] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ] = ACTIONS(2845), - [anon_sym_LT_EQ] = ACTIONS(2845), - [anon_sym_GT_EQ] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_pub] = ACTIONS(2845), - [anon_sym_mut] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_interface] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_go] = ACTIONS(2845), - [anon_sym_spawn] = ACTIONS(2845), - [anon_sym_json_DOTdecode] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_CARET] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_LT_DASH] = ACTIONS(2845), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(2845), - [anon_sym_GT_GT_GT] = ACTIONS(2845), - [anon_sym_AMP_CARET] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [sym_none] = ACTIONS(2845), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_nil] = ACTIONS(2845), - [anon_sym_QMARK_DOT] = ACTIONS(2845), - [anon_sym_POUND_LBRACK] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_DOLLARif] = ACTIONS(2845), - [anon_sym_is] = ACTIONS(2845), - [anon_sym_BANGis] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2845), - [anon_sym_BANGin] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_select] = ACTIONS(2845), - [anon_sym_lock] = ACTIONS(2845), - [anon_sym_rlock] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_sql] = ACTIONS(2845), - [sym_int_literal] = ACTIONS(2845), - [sym_float_literal] = ACTIONS(2845), - [sym_rune_literal] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [anon_sym_c_SQUOTE] = ACTIONS(2845), - [anon_sym_c_DQUOTE] = ACTIONS(2845), - [anon_sym_r_SQUOTE] = ACTIONS(2845), - [anon_sym_r_DQUOTE] = ACTIONS(2845), - [sym_pseudo_compile_time_identifier] = ACTIONS(2845), - [anon_sym_shared] = ACTIONS(2845), - [anon_sym_map_LBRACK] = ACTIONS(2845), - [anon_sym_chan] = ACTIONS(2845), - [anon_sym_thread] = ACTIONS(2845), - [anon_sym_atomic] = ACTIONS(2845), - [anon_sym_assert] = ACTIONS(2845), - [anon_sym_defer] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_DOLLARfor] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_asm] = ACTIONS(2845), - [anon_sym_AT_LBRACK] = ACTIONS(2845), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_const] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym___global] = ACTIONS(3065), + [anon_sym_type] = ACTIONS(3065), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_union] = ACTIONS(3065), + [anon_sym_pub] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(3065), + [anon_sym_interface] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3065), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_CARET] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3065), + [anon_sym_POUND_LBRACK] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), + [sym_rune_literal] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_c_SQUOTE] = ACTIONS(3065), + [anon_sym_c_DQUOTE] = ACTIONS(3065), + [anon_sym_r_SQUOTE] = ACTIONS(3065), + [anon_sym_r_DQUOTE] = ACTIONS(3065), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3065), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_goto] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_DOLLARfor] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_asm] = ACTIONS(3065), + [anon_sym_AT_LBRACK] = ACTIONS(3065), }, [1199] = { [sym_line_comment] = STATE(1199), [sym_block_comment] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [anon_sym_c_SQUOTE] = ACTIONS(2865), - [anon_sym_c_DQUOTE] = ACTIONS(2865), - [anon_sym_r_SQUOTE] = ACTIONS(2865), - [anon_sym_r_DQUOTE] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym___global] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_union] = ACTIONS(3061), + [anon_sym_pub] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_c_SQUOTE] = ACTIONS(3061), + [anon_sym_c_DQUOTE] = ACTIONS(3061), + [anon_sym_r_SQUOTE] = ACTIONS(3061), + [anon_sym_r_DQUOTE] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), + [anon_sym_AT_LBRACK] = ACTIONS(3061), }, [1200] = { [sym_line_comment] = STATE(1200), [sym_block_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym___global] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_c_SQUOTE] = ACTIONS(2913), - [anon_sym_c_DQUOTE] = ACTIONS(2913), - [anon_sym_r_SQUOTE] = ACTIONS(2913), - [anon_sym_r_DQUOTE] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym_AT_LBRACK] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_c_SQUOTE] = ACTIONS(2997), + [anon_sym_c_DQUOTE] = ACTIONS(2997), + [anon_sym_r_SQUOTE] = ACTIONS(2997), + [anon_sym_r_DQUOTE] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), }, [1201] = { [sym_line_comment] = STATE(1201), [sym_block_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [anon_sym_c_SQUOTE] = ACTIONS(2931), - [anon_sym_c_DQUOTE] = ACTIONS(2931), - [anon_sym_r_SQUOTE] = ACTIONS(2931), - [anon_sym_r_DQUOTE] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym___global] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_c_SQUOTE] = ACTIONS(2993), + [anon_sym_c_DQUOTE] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(2993), + [anon_sym_r_DQUOTE] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym_AT_LBRACK] = ACTIONS(2993), }, [1202] = { [sym_line_comment] = STATE(1202), [sym_block_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), - [anon_sym_AT_LBRACK] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym_AT_LBRACK] = ACTIONS(2989), }, [1203] = { [sym_line_comment] = STATE(1203), [sym_block_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(3264), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LF] = ACTIONS(3266), - [anon_sym_CR] = ACTIONS(3266), - [anon_sym_CR_LF] = ACTIONS(3266), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_as] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym___global] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_fn] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_PERCENT] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_GT] = ACTIONS(3266), - [anon_sym_EQ_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_union] = ACTIONS(3266), - [anon_sym_pub] = ACTIONS(3266), - [anon_sym_mut] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_go] = ACTIONS(3266), - [anon_sym_spawn] = ACTIONS(3266), - [anon_sym_json_DOTdecode] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_LBRACK2] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_LT_DASH] = ACTIONS(3266), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_GT_GT_GT] = ACTIONS(3266), - [anon_sym_AMP_CARET] = ACTIONS(3266), - [anon_sym_AMP_AMP] = ACTIONS(3266), - [anon_sym_PIPE_PIPE] = ACTIONS(3266), - [anon_sym_or] = ACTIONS(3266), - [sym_none] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_nil] = ACTIONS(3266), - [anon_sym_QMARK_DOT] = ACTIONS(3266), - [anon_sym_POUND_LBRACK] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_DOLLARif] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_BANGis] = ACTIONS(3266), - [anon_sym_in] = ACTIONS(3266), - [anon_sym_BANGin] = ACTIONS(3266), - [anon_sym_match] = ACTIONS(3266), - [anon_sym_select] = ACTIONS(3266), - [anon_sym_lock] = ACTIONS(3266), - [anon_sym_rlock] = ACTIONS(3266), - [anon_sym_unsafe] = ACTIONS(3266), - [anon_sym_sql] = ACTIONS(3266), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(3266), - [sym_rune_literal] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_c_SQUOTE] = ACTIONS(3266), - [anon_sym_c_DQUOTE] = ACTIONS(3266), - [anon_sym_r_SQUOTE] = ACTIONS(3266), - [anon_sym_r_DQUOTE] = ACTIONS(3266), - [sym_pseudo_compile_time_identifier] = ACTIONS(3266), - [anon_sym_shared] = ACTIONS(3266), - [anon_sym_map_LBRACK] = ACTIONS(3266), - [anon_sym_chan] = ACTIONS(3266), - [anon_sym_thread] = ACTIONS(3266), - [anon_sym_atomic] = ACTIONS(3266), - [anon_sym_assert] = ACTIONS(3266), - [anon_sym_defer] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_DOLLARfor] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), - [anon_sym_AT_LBRACK] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [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(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1204] = { [sym_line_comment] = STATE(1204), [sym_block_comment] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym___global] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_pub] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_assert] = ACTIONS(2925), + [anon_sym_defer] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_DOLLARfor] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym_AT_LBRACK] = ACTIONS(2925), }, [1205] = { [sym_line_comment] = STATE(1205), [sym_block_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym___global] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_c_SQUOTE] = ACTIONS(3070), - [anon_sym_c_DQUOTE] = ACTIONS(3070), - [anon_sym_r_SQUOTE] = ACTIONS(3070), - [anon_sym_r_DQUOTE] = ACTIONS(3070), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym_AT_LBRACK] = ACTIONS(3070), - }, - [1206] = { - [sym_line_comment] = STATE(1206), - [sym_block_comment] = STATE(1206), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym___global] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_interface] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_GT_GT_GT] = ACTIONS(2451), - [anon_sym_AMP_CARET] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_or] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2451), - [anon_sym_POUND_LBRACK] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), - [anon_sym_AT_LBRACK] = ACTIONS(2451), - }, - [1207] = { - [sym_line_comment] = STATE(1207), - [sym_block_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), - }, - [1208] = { - [sym_line_comment] = STATE(1208), - [sym_block_comment] = STATE(1208), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_LF] = ACTIONS(3064), - [anon_sym_CR] = ACTIONS(3064), - [anon_sym_CR_LF] = ACTIONS(3064), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym___global] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_union] = ACTIONS(3064), - [anon_sym_pub] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_enum] = ACTIONS(3064), - [anon_sym_interface] = ACTIONS(3064), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_c_SQUOTE] = ACTIONS(3064), - [anon_sym_c_DQUOTE] = ACTIONS(3064), - [anon_sym_r_SQUOTE] = ACTIONS(3064), - [anon_sym_r_DQUOTE] = ACTIONS(3064), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_defer] = ACTIONS(3064), - [anon_sym_goto] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_DOLLARfor] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3064), - [anon_sym_AT_LBRACK] = ACTIONS(3064), - }, - [1209] = { - [sym_line_comment] = STATE(1209), - [sym_block_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LF] = ACTIONS(3060), - [anon_sym_CR] = ACTIONS(3060), - [anon_sym_CR_LF] = ACTIONS(3060), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_const] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym___global] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(3060), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_interface] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_c_SQUOTE] = ACTIONS(3060), - [anon_sym_c_DQUOTE] = ACTIONS(3060), - [anon_sym_r_SQUOTE] = ACTIONS(3060), - [anon_sym_r_DQUOTE] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_goto] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_DOLLARfor] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_asm] = ACTIONS(3060), - [anon_sym_AT_LBRACK] = ACTIONS(3060), - }, - [1210] = { - [sym_line_comment] = STATE(1210), - [sym_block_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LF] = ACTIONS(3023), - [anon_sym_CR] = ACTIONS(3023), - [anon_sym_CR_LF] = ACTIONS(3023), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym___global] = ACTIONS(3023), - [anon_sym_type] = ACTIONS(3023), - [anon_sym_fn] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_pub] = ACTIONS(3023), - [anon_sym_mut] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_interface] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_go] = ACTIONS(3023), - [anon_sym_spawn] = ACTIONS(3023), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_GT_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_CARET] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3023), - [sym_none] = ACTIONS(3023), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_nil] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_DOLLARif] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3023), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_select] = ACTIONS(3023), - [anon_sym_lock] = ACTIONS(3023), - [anon_sym_rlock] = ACTIONS(3023), - [anon_sym_unsafe] = ACTIONS(3023), - [anon_sym_sql] = ACTIONS(3023), - [sym_int_literal] = ACTIONS(3023), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_c_SQUOTE] = ACTIONS(3023), - [anon_sym_c_DQUOTE] = ACTIONS(3023), - [anon_sym_r_SQUOTE] = ACTIONS(3023), - [anon_sym_r_DQUOTE] = ACTIONS(3023), - [sym_pseudo_compile_time_identifier] = ACTIONS(3023), - [anon_sym_shared] = ACTIONS(3023), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3023), - [anon_sym_thread] = ACTIONS(3023), - [anon_sym_atomic] = ACTIONS(3023), - [anon_sym_assert] = ACTIONS(3023), - [anon_sym_defer] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_DOLLARfor] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_POUND] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym_AT_LBRACK] = ACTIONS(3023), - }, - [1211] = { - [sym_line_comment] = STATE(1211), - [sym_block_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), - }, - [1212] = { - [sym_line_comment] = STATE(1212), - [sym_block_comment] = STATE(1212), - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [anon_sym_c_SQUOTE] = ACTIONS(2993), - [anon_sym_c_DQUOTE] = ACTIONS(2993), - [anon_sym_r_SQUOTE] = ACTIONS(2993), - [anon_sym_r_DQUOTE] = ACTIONS(2993), - [sym_pseudo_compile_time_identifier] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - }, - [1213] = { - [sym_line_comment] = STATE(1213), - [sym_block_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym___global] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(2985), - [anon_sym_c_SQUOTE] = ACTIONS(2985), - [anon_sym_c_DQUOTE] = ACTIONS(2985), - [anon_sym_r_SQUOTE] = ACTIONS(2985), - [anon_sym_r_DQUOTE] = ACTIONS(2985), - [sym_pseudo_compile_time_identifier] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym_AT_LBRACK] = ACTIONS(2985), - }, - [1214] = { - [sym_line_comment] = STATE(1214), - [sym_block_comment] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym___global] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_interface] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [anon_sym_c_SQUOTE] = ACTIONS(2981), - [anon_sym_c_DQUOTE] = ACTIONS(2981), - [anon_sym_r_SQUOTE] = ACTIONS(2981), - [anon_sym_r_DQUOTE] = ACTIONS(2981), - [sym_pseudo_compile_time_identifier] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym_AT_LBRACK] = ACTIONS(2981), - }, - [1215] = { - [sym_line_comment] = STATE(1215), - [sym_block_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym___global] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_pub] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_interface] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_c_SQUOTE] = ACTIONS(3019), - [anon_sym_c_DQUOTE] = ACTIONS(3019), - [anon_sym_r_SQUOTE] = ACTIONS(3019), - [anon_sym_r_DQUOTE] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_defer] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_DOLLARfor] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym_AT_LBRACK] = ACTIONS(3019), - }, - [1216] = { - [sym_line_comment] = STATE(1216), - [sym_block_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym___global] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_pub] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_c_SQUOTE] = ACTIONS(3015), - [anon_sym_c_DQUOTE] = ACTIONS(3015), - [anon_sym_r_SQUOTE] = ACTIONS(3015), - [anon_sym_r_DQUOTE] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), - [anon_sym_assert] = ACTIONS(3015), - [anon_sym_defer] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_DOLLARfor] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_POUND] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym_AT_LBRACK] = ACTIONS(3015), - }, - [1217] = { - [sym_line_comment] = STATE(1217), - [sym_block_comment] = STATE(1217), [ts_builtin_sym_end] = ACTIONS(2919), [sym_identifier] = ACTIONS(2921), [anon_sym_LF] = ACTIONS(2921), @@ -161638,9 +160652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2921), [anon_sym_AT_LBRACK] = ACTIONS(2921), }, - [1218] = { - [sym_line_comment] = STATE(1218), - [sym_block_comment] = STATE(1218), + [1206] = { + [sym_line_comment] = STATE(1206), + [sym_block_comment] = STATE(1206), [ts_builtin_sym_end] = ACTIONS(2915), [sym_identifier] = ACTIONS(2917), [anon_sym_LF] = ACTIONS(2917), @@ -161740,417 +160754,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2917), [anon_sym_AT_LBRACK] = ACTIONS(2917), }, - [1219] = { - [sym_line_comment] = STATE(1219), - [sym_block_comment] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_c_SQUOTE] = ACTIONS(2909), - [anon_sym_c_DQUOTE] = ACTIONS(2909), - [anon_sym_r_SQUOTE] = ACTIONS(2909), - [anon_sym_r_DQUOTE] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - }, - [1220] = { - [sym_line_comment] = STATE(1220), - [sym_block_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [1207] = { + [sym_line_comment] = STATE(1207), + [sym_block_comment] = STATE(1207), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym___global] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_interface] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - [anon_sym_assert] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_DOLLARfor] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym_AT_LBRACK] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, - [1221] = { - [sym_line_comment] = STATE(1221), - [sym_block_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), + [1208] = { + [sym_line_comment] = STATE(1208), + [sym_block_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2885), + [anon_sym_LF] = ACTIONS(2885), + [anon_sym_CR] = ACTIONS(2885), + [anon_sym_CR_LF] = ACTIONS(2885), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_const] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym___global] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_union] = ACTIONS(3047), - [anon_sym_pub] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), - [anon_sym_AT_LBRACK] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(2885), + [anon_sym_as] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_const] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym___global] = ACTIONS(2885), + [anon_sym_type] = ACTIONS(2885), + [anon_sym_fn] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2885), + [anon_sym_union] = ACTIONS(2885), + [anon_sym_pub] = ACTIONS(2885), + [anon_sym_mut] = ACTIONS(2885), + [anon_sym_enum] = ACTIONS(2885), + [anon_sym_interface] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2885), + [anon_sym_spawn] = ACTIONS(2885), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2885), + [sym_none] = ACTIONS(2885), + [sym_true] = ACTIONS(2885), + [sym_false] = ACTIONS(2885), + [sym_nil] = ACTIONS(2885), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_DOLLARif] = ACTIONS(2885), + [anon_sym_is] = ACTIONS(2885), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2885), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2885), + [anon_sym_select] = ACTIONS(2885), + [anon_sym_lock] = ACTIONS(2885), + [anon_sym_rlock] = ACTIONS(2885), + [anon_sym_unsafe] = ACTIONS(2885), + [anon_sym_sql] = ACTIONS(2885), + [sym_int_literal] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2885), + [anon_sym_shared] = ACTIONS(2885), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2885), + [anon_sym_thread] = ACTIONS(2885), + [anon_sym_atomic] = ACTIONS(2885), + [anon_sym_assert] = ACTIONS(2885), + [anon_sym_defer] = ACTIONS(2885), + [anon_sym_goto] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_DOLLARfor] = ACTIONS(2885), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_asm] = ACTIONS(2885), + [anon_sym_AT_LBRACK] = ACTIONS(2885), }, - [1222] = { - [sym_line_comment] = STATE(1222), - [sym_block_comment] = STATE(1222), - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), + [1209] = { + [sym_line_comment] = STATE(1209), + [sym_block_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym___global] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_c_SQUOTE] = ACTIONS(2869), - [anon_sym_c_DQUOTE] = ACTIONS(2869), - [anon_sym_r_SQUOTE] = ACTIONS(2869), - [anon_sym_r_DQUOTE] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym_AT_LBRACK] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), }, - [1223] = { - [sym_line_comment] = STATE(1223), - [sym_block_comment] = STATE(1223), + [1210] = { + [sym_line_comment] = STATE(1210), + [sym_block_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), + }, + [1211] = { + [sym_line_comment] = STATE(1211), + [sym_block_comment] = STATE(1211), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym___global] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_pub] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_c_SQUOTE] = ACTIONS(2873), + [anon_sym_c_DQUOTE] = ACTIONS(2873), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), + [anon_sym_AT_LBRACK] = ACTIONS(2873), + }, + [1212] = { + [sym_line_comment] = STATE(1212), + [sym_block_comment] = STATE(1212), [ts_builtin_sym_end] = ACTIONS(2999), [sym_identifier] = ACTIONS(3001), [anon_sym_LF] = ACTIONS(3001), @@ -162250,2160 +161366,3384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3001), [anon_sym_AT_LBRACK] = ACTIONS(3001), }, + [1213] = { + [sym_line_comment] = STATE(1213), + [sym_block_comment] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_LF] = ACTIONS(2697), + [anon_sym_CR] = ACTIONS(2697), + [anon_sym_CR_LF] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym___global] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2697), + [anon_sym_BANG_EQ] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2697), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2697), + [anon_sym_AMP_CARET] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2697), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2697), + [anon_sym_POUND_LBRACK] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), + [sym_rune_literal] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_c_SQUOTE] = ACTIONS(2697), + [anon_sym_c_DQUOTE] = ACTIONS(2697), + [anon_sym_r_SQUOTE] = ACTIONS(2697), + [anon_sym_r_DQUOTE] = ACTIONS(2697), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2697), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), + [anon_sym_assert] = ACTIONS(2697), + [anon_sym_defer] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_DOLLARfor] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_asm] = ACTIONS(2697), + [anon_sym_AT_LBRACK] = ACTIONS(2697), + }, + [1214] = { + [sym_line_comment] = STATE(1214), + [sym_block_comment] = STATE(1214), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym___global] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_union] = ACTIONS(2893), + [anon_sym_pub] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), + [anon_sym_AT_LBRACK] = ACTIONS(2893), + }, + [1215] = { + [sym_line_comment] = STATE(1215), + [sym_block_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [1216] = { + [sym_line_comment] = STATE(1216), + [sym_block_comment] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2335), + [anon_sym_CR] = ACTIONS(2335), + [anon_sym_CR_LF] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym___global] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [anon_sym_EQ_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_interface] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_go] = ACTIONS(2335), + [anon_sym_spawn] = ACTIONS(2335), + [anon_sym_json_DOTdecode] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_LT_DASH] = ACTIONS(2335), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2335), + [anon_sym_GT_GT_GT] = ACTIONS(2335), + [anon_sym_AMP_CARET] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_or] = ACTIONS(2335), + [sym_none] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_nil] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2335), + [anon_sym_POUND_LBRACK] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_DOLLARif] = ACTIONS(2335), + [anon_sym_is] = ACTIONS(2335), + [anon_sym_BANGis] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_BANGin] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_select] = ACTIONS(2335), + [anon_sym_lock] = ACTIONS(2335), + [anon_sym_rlock] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_sql] = ACTIONS(2335), + [sym_int_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), + [sym_rune_literal] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_c_SQUOTE] = ACTIONS(2335), + [anon_sym_c_DQUOTE] = ACTIONS(2335), + [anon_sym_r_SQUOTE] = ACTIONS(2335), + [anon_sym_r_DQUOTE] = ACTIONS(2335), + [sym_pseudo_compile_time_identifier] = ACTIONS(2335), + [anon_sym_shared] = ACTIONS(2335), + [anon_sym_map_LBRACK] = ACTIONS(2335), + [anon_sym_chan] = ACTIONS(2335), + [anon_sym_thread] = ACTIONS(2335), + [anon_sym_atomic] = ACTIONS(2335), + [anon_sym_assert] = ACTIONS(2335), + [anon_sym_defer] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_DOLLARfor] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_asm] = ACTIONS(2335), + [anon_sym_AT_LBRACK] = ACTIONS(2335), + }, + [1217] = { + [sym_line_comment] = STATE(1217), + [sym_block_comment] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), + [anon_sym_AT_LBRACK] = ACTIONS(2445), + }, + [1218] = { + [sym_line_comment] = STATE(1218), + [sym_block_comment] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym___global] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym_AT_LBRACK] = ACTIONS(2967), + }, + [1219] = { + [sym_line_comment] = STATE(1219), + [sym_block_comment] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), + }, + [1220] = { + [sym_line_comment] = STATE(1220), + [sym_block_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_CR] = ACTIONS(2429), + [anon_sym_CR_LF] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym___global] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + [anon_sym_assert] = ACTIONS(2429), + [anon_sym_defer] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_DOLLARfor] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2429), + [anon_sym_asm] = ACTIONS(2429), + [anon_sym_AT_LBRACK] = ACTIONS(2429), + }, + [1221] = { + [sym_line_comment] = STATE(1221), + [sym_block_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), + }, + [1222] = { + [sym_line_comment] = STATE(1222), + [sym_block_comment] = STATE(1222), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_c_SQUOTE] = ACTIONS(3027), + [anon_sym_c_DQUOTE] = ACTIONS(3027), + [anon_sym_r_SQUOTE] = ACTIONS(3027), + [anon_sym_r_DQUOTE] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + }, + [1223] = { + [sym_line_comment] = STATE(1223), + [sym_block_comment] = STATE(1223), + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2397), + [anon_sym_CR] = ACTIONS(2397), + [anon_sym_CR_LF] = ACTIONS(2397), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym___global] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2397), + [anon_sym_AMP_CARET] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2397), + [anon_sym_POUND_LBRACK] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_rune_literal] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_c_SQUOTE] = ACTIONS(2397), + [anon_sym_c_DQUOTE] = ACTIONS(2397), + [anon_sym_r_SQUOTE] = ACTIONS(2397), + [anon_sym_r_DQUOTE] = ACTIONS(2397), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), + [anon_sym_assert] = ACTIONS(2397), + [anon_sym_defer] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_DOLLARfor] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_asm] = ACTIONS(2397), + [anon_sym_AT_LBRACK] = ACTIONS(2397), + }, [1224] = { [sym_line_comment] = STATE(1224), [sym_block_comment] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_pub] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_interface] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_c_SQUOTE] = ACTIONS(2973), - [anon_sym_c_DQUOTE] = ACTIONS(2973), - [anon_sym_r_SQUOTE] = ACTIONS(2973), - [anon_sym_r_DQUOTE] = ACTIONS(2973), - [sym_pseudo_compile_time_identifier] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_DOLLARfor] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym_AT_LBRACK] = ACTIONS(2973), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym___global] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_interface] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_c_SQUOTE] = ACTIONS(3031), + [anon_sym_c_DQUOTE] = ACTIONS(3031), + [anon_sym_r_SQUOTE] = ACTIONS(3031), + [anon_sym_r_DQUOTE] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym_AT_LBRACK] = ACTIONS(3031), }, [1225] = { [sym_line_comment] = STATE(1225), [sym_block_comment] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), + [ts_builtin_sym_end] = ACTIONS(2433), + [sym_identifier] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2435), + [anon_sym_CR] = ACTIONS(2435), + [anon_sym_CR_LF] = ACTIONS(2435), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_const] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym___global] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_union] = ACTIONS(3043), - [anon_sym_pub] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_enum] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - [anon_sym_AT_LBRACK] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym___global] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_interface] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2435), + [anon_sym_LT_LT] = ACTIONS(2435), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2435), + [anon_sym_AMP_CARET] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2435), + [anon_sym_POUND_LBRACK] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_rune_literal] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_c_SQUOTE] = ACTIONS(2435), + [anon_sym_c_DQUOTE] = ACTIONS(2435), + [anon_sym_r_SQUOTE] = ACTIONS(2435), + [anon_sym_r_DQUOTE] = ACTIONS(2435), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2435), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), + [anon_sym_assert] = ACTIONS(2435), + [anon_sym_defer] = ACTIONS(2435), + [anon_sym_goto] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_DOLLARfor] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_asm] = ACTIONS(2435), + [anon_sym_AT_LBRACK] = ACTIONS(2435), }, [1226] = { [sym_line_comment] = STATE(1226), [sym_block_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_CR] = ACTIONS(2693), - [anon_sym_CR_LF] = ACTIONS(2693), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym___global] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_EQ_EQ] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_union] = ACTIONS(2693), - [anon_sym_pub] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_interface] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(3978), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_GT_GT_GT] = ACTIONS(2693), - [anon_sym_AMP_CARET] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_PIPE_PIPE] = ACTIONS(2693), - [anon_sym_or] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2693), - [anon_sym_POUND_LBRACK] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - [sym_rune_literal] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_c_SQUOTE] = ACTIONS(2693), - [anon_sym_c_DQUOTE] = ACTIONS(2693), - [anon_sym_r_SQUOTE] = ACTIONS(2693), - [anon_sym_r_DQUOTE] = ACTIONS(2693), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_defer] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_DOLLARfor] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_asm] = ACTIONS(2693), - [anon_sym_AT_LBRACK] = ACTIONS(2693), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_const] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym___global] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_union] = ACTIONS(3041), + [anon_sym_pub] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3041), + [anon_sym_AMP_CARET] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_PIPE_PIPE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), + [anon_sym_AT_LBRACK] = ACTIONS(3041), }, [1227] = { [sym_line_comment] = STATE(1227), [sym_block_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(3284), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym___global] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_pub] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_QMARK_DOT] = ACTIONS(3286), - [anon_sym_POUND_LBRACK] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_is] = ACTIONS(3286), - [anon_sym_BANGis] = ACTIONS(3286), - [anon_sym_in] = ACTIONS(3286), - [anon_sym_BANGin] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - [anon_sym_assert] = ACTIONS(3286), - [anon_sym_defer] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_DOLLARfor] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym_AT_LBRACK] = ACTIONS(3286), + [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_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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_c_SQUOTE] = ACTIONS(2471), + [anon_sym_c_DQUOTE] = ACTIONS(2471), + [anon_sym_r_SQUOTE] = ACTIONS(2471), + [anon_sym_r_DQUOTE] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + [anon_sym_AT_LBRACK] = ACTIONS(2471), }, [1228] = { [sym_line_comment] = STATE(1228), [sym_block_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LF] = ACTIONS(3039), - [anon_sym_CR] = ACTIONS(3039), - [anon_sym_CR_LF] = ACTIONS(3039), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_const] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym___global] = ACTIONS(3039), - [anon_sym_type] = ACTIONS(3039), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_union] = ACTIONS(3039), - [anon_sym_pub] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_interface] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [anon_sym_c_SQUOTE] = ACTIONS(3039), - [anon_sym_c_DQUOTE] = ACTIONS(3039), - [anon_sym_r_SQUOTE] = ACTIONS(3039), - [anon_sym_r_DQUOTE] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), - [anon_sym_assert] = ACTIONS(3039), - [anon_sym_defer] = ACTIONS(3039), - [anon_sym_goto] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_DOLLARfor] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_asm] = ACTIONS(3039), - [anon_sym_AT_LBRACK] = ACTIONS(3039), - }, - [1229] = { - [sym_line_comment] = STATE(1229), - [sym_block_comment] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym___global] = ACTIONS(3035), - [anon_sym_type] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_pub] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_interface] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3035), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - [anon_sym_assert] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_DOLLARfor] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym_AT_LBRACK] = ACTIONS(3035), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_c_SQUOTE] = ACTIONS(2655), + [anon_sym_c_DQUOTE] = ACTIONS(2655), + [anon_sym_r_SQUOTE] = ACTIONS(2655), + [anon_sym_r_DQUOTE] = ACTIONS(2655), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1229] = { + [sym_line_comment] = STATE(1229), + [sym_block_comment] = STATE(1229), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_c_SQUOTE] = ACTIONS(2659), + [anon_sym_c_DQUOTE] = ACTIONS(2659), + [anon_sym_r_SQUOTE] = ACTIONS(2659), + [anon_sym_r_DQUOTE] = 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), }, [1230] = { [sym_line_comment] = STATE(1230), [sym_block_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2819), + [anon_sym_CR] = ACTIONS(2819), + [anon_sym_CR_LF] = ACTIONS(2819), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym___global] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_pub] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3340), - [anon_sym_AMP_CARET] = ACTIONS(3340), - [anon_sym_AMP_AMP] = ACTIONS(3340), - [anon_sym_PIPE_PIPE] = ACTIONS(3340), - [anon_sym_or] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_c_SQUOTE] = ACTIONS(3340), - [anon_sym_c_DQUOTE] = ACTIONS(3340), - [anon_sym_r_SQUOTE] = ACTIONS(3340), - [anon_sym_r_DQUOTE] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - [anon_sym_AT_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_as] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym___global] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_pub] = ACTIONS(2819), + [anon_sym_mut] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_interface] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_QMARK] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2819), + [anon_sym_json_DOTdecode] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_LBRACK2] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [sym_none] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_nil] = ACTIONS(2819), + [anon_sym_QMARK_DOT] = ACTIONS(2819), + [anon_sym_POUND_LBRACK] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_BANGis] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_BANGin] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_select] = ACTIONS(2819), + [anon_sym_lock] = ACTIONS(2819), + [anon_sym_rlock] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_sql] = ACTIONS(2819), + [sym_int_literal] = ACTIONS(2819), + [sym_float_literal] = ACTIONS(2819), + [sym_rune_literal] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_c_SQUOTE] = ACTIONS(2819), + [anon_sym_c_DQUOTE] = ACTIONS(2819), + [anon_sym_r_SQUOTE] = ACTIONS(2819), + [anon_sym_r_DQUOTE] = ACTIONS(2819), + [sym_pseudo_compile_time_identifier] = ACTIONS(2819), + [anon_sym_shared] = ACTIONS(2819), + [anon_sym_map_LBRACK] = ACTIONS(2819), + [anon_sym_chan] = ACTIONS(2819), + [anon_sym_thread] = ACTIONS(2819), + [anon_sym_atomic] = ACTIONS(2819), + [anon_sym_assert] = ACTIONS(2819), + [anon_sym_defer] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_DOLLARfor] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_POUND] = ACTIONS(2819), + [anon_sym_asm] = ACTIONS(2819), + [anon_sym_AT_LBRACK] = ACTIONS(2819), }, [1231] = { [sym_line_comment] = STATE(1231), [sym_block_comment] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LF] = ACTIONS(2823), + [anon_sym_CR] = ACTIONS(2823), + [anon_sym_CR_LF] = ACTIONS(2823), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_as] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym___global] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2885), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_pub] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_interface] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2885), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), - [anon_sym_assert] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_DOLLARfor] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym_AT_LBRACK] = ACTIONS(2885), + [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_as] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_COMMA] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym___global] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2823), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_pub] = ACTIONS(2823), + [anon_sym_mut] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_QMARK] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_go] = ACTIONS(2823), + [anon_sym_spawn] = ACTIONS(2823), + [anon_sym_json_DOTdecode] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2823), + [anon_sym_LBRACK2] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_CARET] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2823), + [anon_sym_LT_LT] = ACTIONS(2823), + [anon_sym_GT_GT] = ACTIONS(2823), + [anon_sym_GT_GT_GT] = ACTIONS(2823), + [anon_sym_AMP_CARET] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_or] = ACTIONS(2823), + [sym_none] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_nil] = ACTIONS(2823), + [anon_sym_QMARK_DOT] = ACTIONS(2823), + [anon_sym_POUND_LBRACK] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_DOLLARif] = ACTIONS(2823), + [anon_sym_is] = ACTIONS(2823), + [anon_sym_BANGis] = ACTIONS(2823), + [anon_sym_in] = ACTIONS(2823), + [anon_sym_BANGin] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2823), + [anon_sym_rlock] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_sql] = ACTIONS(2823), + [sym_int_literal] = ACTIONS(2823), + [sym_float_literal] = ACTIONS(2823), + [sym_rune_literal] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [anon_sym_c_SQUOTE] = ACTIONS(2823), + [anon_sym_c_DQUOTE] = ACTIONS(2823), + [anon_sym_r_SQUOTE] = ACTIONS(2823), + [anon_sym_r_DQUOTE] = ACTIONS(2823), + [sym_pseudo_compile_time_identifier] = ACTIONS(2823), + [anon_sym_shared] = ACTIONS(2823), + [anon_sym_map_LBRACK] = ACTIONS(2823), + [anon_sym_chan] = ACTIONS(2823), + [anon_sym_thread] = ACTIONS(2823), + [anon_sym_atomic] = ACTIONS(2823), + [anon_sym_assert] = ACTIONS(2823), + [anon_sym_defer] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_DOLLARfor] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_POUND] = ACTIONS(2823), + [anon_sym_asm] = ACTIONS(2823), + [anon_sym_AT_LBRACK] = ACTIONS(2823), }, [1232] = { [sym_line_comment] = STATE(1232), [sym_block_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_const] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym___global] = ACTIONS(3031), - [anon_sym_type] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_union] = ACTIONS(3031), - [anon_sym_pub] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_interface] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - [anon_sym_AT_LBRACK] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_c_SQUOTE] = ACTIONS(2829), + [anon_sym_c_DQUOTE] = ACTIONS(2829), + [anon_sym_r_SQUOTE] = ACTIONS(2829), + [anon_sym_r_DQUOTE] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), }, [1233] = { [sym_line_comment] = STATE(1233), [sym_block_comment] = STATE(1233), - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym___global] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [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(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_interface] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [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(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), - [anon_sym_AT_LBRACK] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), }, [1234] = { [sym_line_comment] = STATE(1234), [sym_block_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym___global] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_pub] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym_AT_LBRACK] = ACTIONS(3266), }, [1235] = { [sym_line_comment] = STATE(1235), [sym_block_comment] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym___global] = ACTIONS(2965), - [anon_sym_type] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_pub] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_interface] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_c_SQUOTE] = ACTIONS(2965), - [anon_sym_c_DQUOTE] = ACTIONS(2965), - [anon_sym_r_SQUOTE] = ACTIONS(2965), - [anon_sym_r_DQUOTE] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym_AT_LBRACK] = ACTIONS(2965), - }, - [1236] = { - [sym_line_comment] = STATE(1236), - [sym_block_comment] = STATE(1236), - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_EQ_EQ] = ACTIONS(3328), - [anon_sym_BANG_EQ] = ACTIONS(3328), - [anon_sym_LT_EQ] = ACTIONS(3328), - [anon_sym_GT_EQ] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3328), - [anon_sym_AMP_CARET] = ACTIONS(3328), - [anon_sym_AMP_AMP] = ACTIONS(3328), - [anon_sym_PIPE_PIPE] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3328), - [anon_sym_r_SQUOTE] = ACTIONS(3328), - [anon_sym_r_DQUOTE] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym___global] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_pub] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_c_SQUOTE] = ACTIONS(3270), + [anon_sym_c_DQUOTE] = ACTIONS(3270), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym_AT_LBRACK] = ACTIONS(3270), + }, + [1236] = { + [sym_line_comment] = STATE(1236), + [sym_block_comment] = STATE(1236), + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym___global] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_union] = ACTIONS(3292), + [anon_sym_pub] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), + [anon_sym_AT_LBRACK] = ACTIONS(3292), }, [1237] = { [sym_line_comment] = STATE(1237), [sym_block_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3318), - [anon_sym_LF] = ACTIONS(3318), - [anon_sym_CR] = ACTIONS(3318), - [anon_sym_CR_LF] = ACTIONS(3318), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3318), - [anon_sym_as] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym___global] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_fn] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_PERCENT] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_EQ_EQ] = ACTIONS(3318), - [anon_sym_BANG_EQ] = ACTIONS(3318), - [anon_sym_LT_EQ] = ACTIONS(3318), - [anon_sym_GT_EQ] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_pub] = ACTIONS(3318), - [anon_sym_mut] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_go] = ACTIONS(3318), - [anon_sym_spawn] = ACTIONS(3318), - [anon_sym_json_DOTdecode] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_LBRACK2] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3318), - [anon_sym_LT_LT] = ACTIONS(3318), - [anon_sym_GT_GT] = ACTIONS(3318), - [anon_sym_GT_GT_GT] = ACTIONS(3318), - [anon_sym_AMP_CARET] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_or] = ACTIONS(3318), - [sym_none] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_nil] = ACTIONS(3318), - [anon_sym_QMARK_DOT] = ACTIONS(3318), - [anon_sym_POUND_LBRACK] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3318), - [anon_sym_is] = ACTIONS(3318), - [anon_sym_BANGis] = ACTIONS(3318), - [anon_sym_in] = ACTIONS(3318), - [anon_sym_BANGin] = ACTIONS(3318), - [anon_sym_match] = ACTIONS(3318), - [anon_sym_select] = ACTIONS(3318), - [anon_sym_lock] = ACTIONS(3318), - [anon_sym_rlock] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3318), - [sym_int_literal] = ACTIONS(3318), - [sym_float_literal] = ACTIONS(3318), - [sym_rune_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_c_SQUOTE] = ACTIONS(3318), - [anon_sym_c_DQUOTE] = ACTIONS(3318), - [anon_sym_r_SQUOTE] = ACTIONS(3318), - [anon_sym_r_DQUOTE] = ACTIONS(3318), - [sym_pseudo_compile_time_identifier] = ACTIONS(3318), - [anon_sym_shared] = ACTIONS(3318), - [anon_sym_map_LBRACK] = ACTIONS(3318), - [anon_sym_chan] = ACTIONS(3318), - [anon_sym_thread] = ACTIONS(3318), - [anon_sym_atomic] = ACTIONS(3318), - [anon_sym_assert] = ACTIONS(3318), - [anon_sym_defer] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_DOLLARfor] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_asm] = ACTIONS(3318), - [anon_sym_AT_LBRACK] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym___global] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_union] = ACTIONS(3296), + [anon_sym_pub] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), + [anon_sym_AT_LBRACK] = ACTIONS(3296), }, [1238] = { [sym_line_comment] = STATE(1238), [sym_block_comment] = STATE(1238), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym___global] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym_AT_LBRACK] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym___global] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_pub] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2977), + [anon_sym_AMP_CARET] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_or] = ACTIONS(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_defer] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_DOLLARfor] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym_AT_LBRACK] = ACTIONS(2977), }, [1239] = { [sym_line_comment] = STATE(1239), [sym_block_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(3312), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym___global] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3314), - [anon_sym_BANG_EQ] = ACTIONS(3314), - [anon_sym_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_EQ] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_pub] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [anon_sym_LT_LT] = ACTIONS(3314), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3314), - [anon_sym_AMP_CARET] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_PIPE_PIPE] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3314), - [anon_sym_POUND_LBRACK] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3314), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym_AT_LBRACK] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym___global] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_pub] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym_AT_LBRACK] = ACTIONS(2981), }, [1240] = { [sym_line_comment] = STATE(1240), [sym_block_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(3082), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LF] = ACTIONS(3084), - [anon_sym_CR] = ACTIONS(3084), - [anon_sym_CR_LF] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(3007), + [anon_sym_CR] = ACTIONS(3007), + [anon_sym_CR_LF] = ACTIONS(3007), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_const] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym___global] = ACTIONS(3084), - [anon_sym_type] = ACTIONS(3084), - [anon_sym_fn] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_union] = ACTIONS(3084), - [anon_sym_pub] = ACTIONS(3084), - [anon_sym_mut] = ACTIONS(3084), - [anon_sym_enum] = ACTIONS(3084), - [anon_sym_interface] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_go] = ACTIONS(3084), - [anon_sym_spawn] = ACTIONS(3084), - [anon_sym_json_DOTdecode] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_LT_DASH] = ACTIONS(3084), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3084), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_true] = ACTIONS(3084), - [sym_false] = ACTIONS(3084), - [sym_nil] = ACTIONS(3084), - [anon_sym_QMARK_DOT] = ACTIONS(3084), - [anon_sym_POUND_LBRACK] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_DOLLARif] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3084), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3084), - [anon_sym_rlock] = ACTIONS(3084), - [anon_sym_unsafe] = ACTIONS(3084), - [anon_sym_sql] = ACTIONS(3084), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(3084), - [sym_rune_literal] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [anon_sym_c_SQUOTE] = ACTIONS(3084), - [anon_sym_c_DQUOTE] = ACTIONS(3084), - [anon_sym_r_SQUOTE] = ACTIONS(3084), - [anon_sym_r_DQUOTE] = ACTIONS(3084), - [sym_pseudo_compile_time_identifier] = ACTIONS(3084), - [anon_sym_shared] = ACTIONS(3084), - [anon_sym_map_LBRACK] = ACTIONS(3084), - [anon_sym_chan] = ACTIONS(3084), - [anon_sym_thread] = ACTIONS(3084), - [anon_sym_atomic] = ACTIONS(3084), - [anon_sym_assert] = ACTIONS(3084), - [anon_sym_defer] = ACTIONS(3084), - [anon_sym_goto] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_DOLLARfor] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [anon_sym_asm] = ACTIONS(3084), - [anon_sym_AT_LBRACK] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_const] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym___global] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_union] = ACTIONS(3007), + [anon_sym_pub] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_enum] = ACTIONS(3007), + [anon_sym_interface] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [anon_sym_c_SQUOTE] = ACTIONS(3007), + [anon_sym_c_DQUOTE] = ACTIONS(3007), + [anon_sym_r_SQUOTE] = ACTIONS(3007), + [anon_sym_r_DQUOTE] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_defer] = ACTIONS(3007), + [anon_sym_goto] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_DOLLARfor] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_asm] = ACTIONS(3007), + [anon_sym_AT_LBRACK] = ACTIONS(3007), }, [1241] = { [sym_line_comment] = STATE(1241), [sym_block_comment] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(3272), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LF] = ACTIONS(3274), - [anon_sym_CR] = ACTIONS(3274), - [anon_sym_CR_LF] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LF] = ACTIONS(3015), + [anon_sym_CR] = ACTIONS(3015), + [anon_sym_CR_LF] = ACTIONS(3015), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym___global] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_PERCENT] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_GT] = ACTIONS(3274), - [anon_sym_EQ_EQ] = ACTIONS(3274), - [anon_sym_BANG_EQ] = ACTIONS(3274), - [anon_sym_LT_EQ] = ACTIONS(3274), - [anon_sym_GT_EQ] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_pub] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3274), - [anon_sym_PIPE] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_CARET] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3274), - [anon_sym_LT_LT] = ACTIONS(3274), - [anon_sym_GT_GT] = ACTIONS(3274), - [anon_sym_GT_GT_GT] = ACTIONS(3274), - [anon_sym_AMP_CARET] = ACTIONS(3274), - [anon_sym_AMP_AMP] = ACTIONS(3274), - [anon_sym_PIPE_PIPE] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_QMARK_DOT] = ACTIONS(3274), - [anon_sym_POUND_LBRACK] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_is] = ACTIONS(3274), - [anon_sym_BANGis] = ACTIONS(3274), - [anon_sym_in] = ACTIONS(3274), - [anon_sym_BANGin] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3274), - [sym_rune_literal] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_c_SQUOTE] = ACTIONS(3274), - [anon_sym_c_DQUOTE] = ACTIONS(3274), - [anon_sym_r_SQUOTE] = ACTIONS(3274), - [anon_sym_r_DQUOTE] = ACTIONS(3274), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [anon_sym_map_LBRACK] = ACTIONS(3274), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), - [anon_sym_assert] = ACTIONS(3274), - [anon_sym_defer] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_DOLLARfor] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_POUND] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym_AT_LBRACK] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_const] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym___global] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_union] = ACTIONS(3015), + [anon_sym_pub] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_interface] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_c_SQUOTE] = ACTIONS(3015), + [anon_sym_c_DQUOTE] = ACTIONS(3015), + [anon_sym_r_SQUOTE] = ACTIONS(3015), + [anon_sym_r_DQUOTE] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_defer] = ACTIONS(3015), + [anon_sym_goto] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_DOLLARfor] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_POUND] = ACTIONS(3015), + [anon_sym_asm] = ACTIONS(3015), + [anon_sym_AT_LBRACK] = ACTIONS(3015), }, [1242] = { [sym_line_comment] = STATE(1242), [sym_block_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3019), + [anon_sym_LF] = ACTIONS(3019), + [anon_sym_CR] = ACTIONS(3019), + [anon_sym_CR_LF] = ACTIONS(3019), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym___global] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), - [anon_sym_AT_LBRACK] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_const] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym___global] = ACTIONS(3019), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_fn] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_union] = ACTIONS(3019), + [anon_sym_pub] = ACTIONS(3019), + [anon_sym_mut] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3019), + [anon_sym_interface] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_go] = ACTIONS(3019), + [anon_sym_spawn] = ACTIONS(3019), + [anon_sym_json_DOTdecode] = ACTIONS(3019), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_LBRACK2] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_LT_DASH] = ACTIONS(3019), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_or] = ACTIONS(3019), + [sym_none] = ACTIONS(3019), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_nil] = ACTIONS(3019), + [anon_sym_QMARK_DOT] = ACTIONS(3019), + [anon_sym_POUND_LBRACK] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_DOLLARif] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3019), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_in] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_select] = ACTIONS(3019), + [anon_sym_lock] = ACTIONS(3019), + [anon_sym_rlock] = ACTIONS(3019), + [anon_sym_unsafe] = ACTIONS(3019), + [anon_sym_sql] = ACTIONS(3019), + [sym_int_literal] = ACTIONS(3019), + [sym_float_literal] = ACTIONS(3019), + [sym_rune_literal] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [anon_sym_c_SQUOTE] = ACTIONS(3019), + [anon_sym_c_DQUOTE] = ACTIONS(3019), + [anon_sym_r_SQUOTE] = ACTIONS(3019), + [anon_sym_r_DQUOTE] = ACTIONS(3019), + [sym_pseudo_compile_time_identifier] = ACTIONS(3019), + [anon_sym_shared] = ACTIONS(3019), + [anon_sym_map_LBRACK] = ACTIONS(3019), + [anon_sym_chan] = ACTIONS(3019), + [anon_sym_thread] = ACTIONS(3019), + [anon_sym_atomic] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_defer] = ACTIONS(3019), + [anon_sym_goto] = ACTIONS(3019), + [anon_sym_break] = ACTIONS(3019), + [anon_sym_continue] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_DOLLARfor] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_POUND] = ACTIONS(3019), + [anon_sym_asm] = ACTIONS(3019), + [anon_sym_AT_LBRACK] = ACTIONS(3019), }, [1243] = { [sym_line_comment] = STATE(1243), [sym_block_comment] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_CR] = ACTIONS(2953), - [anon_sym_CR_LF] = ACTIONS(2953), + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym___global] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_pub] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_c_SQUOTE] = ACTIONS(2953), - [anon_sym_c_DQUOTE] = ACTIONS(2953), - [anon_sym_r_SQUOTE] = ACTIONS(2953), - [anon_sym_r_DQUOTE] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_defer] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_DOLLARfor] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_POUND] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym_AT_LBRACK] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym___global] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_pub] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_interface] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_c_SQUOTE] = ACTIONS(3023), + [anon_sym_c_DQUOTE] = ACTIONS(3023), + [anon_sym_r_SQUOTE] = ACTIONS(3023), + [anon_sym_r_DQUOTE] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_defer] = ACTIONS(3023), + [anon_sym_goto] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_DOLLARfor] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_asm] = ACTIONS(3023), + [anon_sym_AT_LBRACK] = ACTIONS(3023), }, [1244] = { [sym_line_comment] = STATE(1244), [sym_block_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_CR] = ACTIONS(3240), + [anon_sym_CR_LF] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym___global] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3258), - [anon_sym_BANG_EQ] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_union] = ACTIONS(3258), - [anon_sym_pub] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3258), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_CARET] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3258), - [anon_sym_POUND_LBRACK] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3258), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), - [anon_sym_AT_LBRACK] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym___global] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_pub] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_interface] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3240), + [anon_sym_c_DQUOTE] = ACTIONS(3240), + [anon_sym_r_SQUOTE] = ACTIONS(3240), + [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), + [anon_sym_assert] = ACTIONS(3240), + [anon_sym_defer] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_DOLLARfor] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym_AT_LBRACK] = ACTIONS(3240), }, [1245] = { [sym_line_comment] = STATE(1245), [sym_block_comment] = STATE(1245), - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2841), - [anon_sym_CR] = ACTIONS(2841), - [anon_sym_CR_LF] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_as] = ACTIONS(2841), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym___global] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_pub] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), + [anon_sym_AT_LBRACK] = ACTIONS(2837), + }, + [1246] = { + [sym_line_comment] = STATE(1246), + [sym_block_comment] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_as] = ACTIONS(2841), [anon_sym_LBRACE] = ACTIONS(2841), [anon_sym_COMMA] = ACTIONS(2841), [anon_sym_const] = ACTIONS(2841), @@ -164494,1437 +164834,1233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2841), [anon_sym_AT_LBRACK] = ACTIONS(2841), }, - [1246] = { - [sym_line_comment] = STATE(1246), - [sym_block_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_CR] = ACTIONS(2393), - [anon_sym_CR_LF] = ACTIONS(2393), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym___global] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2393), - [anon_sym_BANG_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [anon_sym_CARET] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2393), - [anon_sym_AMP_CARET] = ACTIONS(2393), - [anon_sym_AMP_AMP] = ACTIONS(2393), - [anon_sym_PIPE_PIPE] = ACTIONS(2393), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2393), - [anon_sym_POUND_LBRACK] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_rune_literal] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [anon_sym_c_SQUOTE] = ACTIONS(2393), - [anon_sym_c_DQUOTE] = ACTIONS(2393), - [anon_sym_r_SQUOTE] = ACTIONS(2393), - [anon_sym_r_DQUOTE] = ACTIONS(2393), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2393), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), - [anon_sym_assert] = ACTIONS(2393), - [anon_sym_defer] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_DOLLARfor] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_asm] = ACTIONS(2393), - [anon_sym_AT_LBRACK] = ACTIONS(2393), - }, [1247] = { [sym_line_comment] = STATE(1247), [sym_block_comment] = STATE(1247), - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_interface] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), - [anon_sym_AT_LBRACK] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [1248] = { [sym_line_comment] = STATE(1248), [sym_block_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym___global] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_union] = ACTIONS(3248), - [anon_sym_pub] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3248), - [anon_sym_POUND_LBRACK] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), - [anon_sym_AT_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym___global] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_pub] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3328), + [anon_sym_r_SQUOTE] = ACTIONS(3328), + [anon_sym_r_DQUOTE] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_defer] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_DOLLARfor] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym_AT_LBRACK] = ACTIONS(3328), }, [1249] = { [sym_line_comment] = STATE(1249), [sym_block_comment] = STATE(1249), - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym___global] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_pub] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), - [anon_sym_AT_LBRACK] = ACTIONS(2831), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), }, [1250] = { [sym_line_comment] = STATE(1250), [sym_block_comment] = STATE(1250), - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2335), - [anon_sym_CR] = ACTIONS(2335), - [anon_sym_CR_LF] = ACTIONS(2335), + [ts_builtin_sym_end] = ACTIONS(3067), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3069), + [anon_sym_CR] = ACTIONS(3069), + [anon_sym_CR_LF] = ACTIONS(3069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym___global] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_PERCENT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), - [anon_sym_EQ_EQ] = ACTIONS(2335), - [anon_sym_BANG_EQ] = ACTIONS(2335), - [anon_sym_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_EQ] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_interface] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_go] = ACTIONS(2335), - [anon_sym_spawn] = ACTIONS(2335), - [anon_sym_json_DOTdecode] = ACTIONS(2335), - [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_LT_DASH] = ACTIONS(2335), - [anon_sym_LT_LT] = ACTIONS(2335), - [anon_sym_GT_GT] = ACTIONS(2335), - [anon_sym_GT_GT_GT] = ACTIONS(2335), - [anon_sym_AMP_CARET] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_PIPE_PIPE] = ACTIONS(2335), - [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_nil] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(2335), - [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_DOLLARif] = ACTIONS(2335), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_BANGis] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_select] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2335), - [anon_sym_rlock] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_sql] = ACTIONS(2335), - [sym_int_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_rune_literal] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_c_SQUOTE] = ACTIONS(2335), - [anon_sym_c_DQUOTE] = ACTIONS(2335), - [anon_sym_r_SQUOTE] = ACTIONS(2335), - [anon_sym_r_DQUOTE] = ACTIONS(2335), - [sym_pseudo_compile_time_identifier] = ACTIONS(2335), - [anon_sym_shared] = ACTIONS(2335), - [anon_sym_map_LBRACK] = ACTIONS(2335), - [anon_sym_chan] = ACTIONS(2335), - [anon_sym_thread] = ACTIONS(2335), - [anon_sym_atomic] = ACTIONS(2335), - [anon_sym_assert] = ACTIONS(2335), - [anon_sym_defer] = ACTIONS(2335), - [anon_sym_goto] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_DOLLARfor] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(2335), - [anon_sym_asm] = ACTIONS(2335), - [anon_sym_AT_LBRACK] = ACTIONS(2335), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_const] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym___global] = ACTIONS(3069), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_union] = ACTIONS(3069), + [anon_sym_pub] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_enum] = ACTIONS(3069), + [anon_sym_interface] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3069), + [anon_sym_DASH_DASH] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_CARET] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3069), + [anon_sym_POUND_LBRACK] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3069), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), + [sym_rune_literal] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_c_SQUOTE] = ACTIONS(3069), + [anon_sym_c_DQUOTE] = ACTIONS(3069), + [anon_sym_r_SQUOTE] = ACTIONS(3069), + [anon_sym_r_DQUOTE] = ACTIONS(3069), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3069), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_goto] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_DOLLARfor] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3069), + [anon_sym_asm] = ACTIONS(3069), + [anon_sym_AT_LBRACK] = ACTIONS(3069), }, [1251] = { [sym_line_comment] = STATE(1251), [sym_block_comment] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_const] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym___global] = ACTIONS(3045), + [anon_sym_type] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_union] = ACTIONS(3045), + [anon_sym_pub] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), + [anon_sym_AT_LBRACK] = ACTIONS(3045), }, [1252] = { [sym_line_comment] = STATE(1252), [sym_block_comment] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(2417), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_CR] = ACTIONS(2419), - [anon_sym_CR_LF] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(3033), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym___global] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2419), - [anon_sym_BANG_EQ] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_EQ] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_interface] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2419), - [anon_sym_LT_LT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2419), - [anon_sym_AMP_CARET] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2419), - [anon_sym_POUND_LBRACK] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_rune_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_c_SQUOTE] = ACTIONS(2419), - [anon_sym_c_DQUOTE] = ACTIONS(2419), - [anon_sym_r_SQUOTE] = ACTIONS(2419), - [anon_sym_r_DQUOTE] = ACTIONS(2419), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2419), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), - [anon_sym_assert] = ACTIONS(2419), - [anon_sym_defer] = ACTIONS(2419), - [anon_sym_goto] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_DOLLARfor] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2419), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym_AT_LBRACK] = ACTIONS(2419), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym___global] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_pub] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_interface] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_c_SQUOTE] = ACTIONS(3035), + [anon_sym_c_DQUOTE] = ACTIONS(3035), + [anon_sym_r_SQUOTE] = ACTIONS(3035), + [anon_sym_r_DQUOTE] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_defer] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_DOLLARfor] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym_AT_LBRACK] = ACTIONS(3035), }, [1253] = { [sym_line_comment] = STATE(1253), [sym_block_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym___global] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_interface] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_defer] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_DOLLARfor] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_asm] = ACTIONS(2837), - [anon_sym_AT_LBRACK] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym___global] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_pub] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym_AT_LBRACK] = ACTIONS(3346), }, [1254] = { [sym_line_comment] = STATE(1254), [sym_block_comment] = STATE(1254), - [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(3322), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym___global] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_EQ_EQ] = ACTIONS(3324), + [anon_sym_BANG_EQ] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_union] = ACTIONS(3324), + [anon_sym_pub] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3324), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3324), + [anon_sym_AMP_CARET] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_QMARK_DOT] = ACTIONS(3324), + [anon_sym_POUND_LBRACK] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_is] = ACTIONS(3324), + [anon_sym_BANGis] = ACTIONS(3324), + [anon_sym_in] = ACTIONS(3324), + [anon_sym_BANGin] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_assert] = ACTIONS(3324), + [anon_sym_defer] = ACTIONS(3324), + [anon_sym_goto] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_DOLLARfor] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3324), + [anon_sym_asm] = ACTIONS(3324), + [anon_sym_AT_LBRACK] = ACTIONS(3324), }, [1255] = { [sym_line_comment] = STATE(1255), [sym_block_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_COMMA] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym___global] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2433), - [anon_sym_AMP_CARET] = ACTIONS(2433), - [anon_sym_AMP_AMP] = ACTIONS(2433), - [anon_sym_PIPE_PIPE] = ACTIONS(2433), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2433), - [anon_sym_POUND_LBRACK] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), - [anon_sym_AT_LBRACK] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_c_SQUOTE] = ACTIONS(3318), + [anon_sym_c_DQUOTE] = ACTIONS(3318), + [anon_sym_r_SQUOTE] = ACTIONS(3318), + [anon_sym_r_DQUOTE] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), }, [1256] = { [sym_line_comment] = STATE(1256), [sym_block_comment] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym___global] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_pub] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_defer] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_DOLLARfor] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym_AT_LBRACK] = ACTIONS(2957), }, [1257] = { [sym_line_comment] = STATE(1257), [sym_block_comment] = STATE(1257), - [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(2863), + [sym_identifier] = ACTIONS(2865), + [anon_sym_LF] = ACTIONS(2865), + [anon_sym_CR] = ACTIONS(2865), + [anon_sym_CR_LF] = ACTIONS(2865), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_c_SQUOTE] = ACTIONS(2655), - [anon_sym_c_DQUOTE] = ACTIONS(2655), - [anon_sym_r_SQUOTE] = ACTIONS(2655), - [anon_sym_r_DQUOTE] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(2865), + [anon_sym_as] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_COMMA] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym___global] = ACTIONS(2865), + [anon_sym_type] = ACTIONS(2865), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PERCENT] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_EQ_EQ] = ACTIONS(2865), + [anon_sym_BANG_EQ] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_pub] = ACTIONS(2865), + [anon_sym_mut] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_go] = ACTIONS(2865), + [anon_sym_spawn] = ACTIONS(2865), + [anon_sym_json_DOTdecode] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_LT_DASH] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2865), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2865), + [anon_sym_AMP_CARET] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_PIPE_PIPE] = ACTIONS(2865), + [anon_sym_or] = ACTIONS(2865), + [sym_none] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_nil] = ACTIONS(2865), + [anon_sym_QMARK_DOT] = ACTIONS(2865), + [anon_sym_POUND_LBRACK] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_DOLLARif] = ACTIONS(2865), + [anon_sym_is] = ACTIONS(2865), + [anon_sym_BANGis] = ACTIONS(2865), + [anon_sym_in] = ACTIONS(2865), + [anon_sym_BANGin] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_select] = ACTIONS(2865), + [anon_sym_lock] = ACTIONS(2865), + [anon_sym_rlock] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_sql] = ACTIONS(2865), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2865), + [sym_rune_literal] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [anon_sym_c_SQUOTE] = ACTIONS(2865), + [anon_sym_c_DQUOTE] = ACTIONS(2865), + [anon_sym_r_SQUOTE] = ACTIONS(2865), + [anon_sym_r_DQUOTE] = ACTIONS(2865), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), + [anon_sym_shared] = ACTIONS(2865), + [anon_sym_map_LBRACK] = ACTIONS(2865), + [anon_sym_chan] = ACTIONS(2865), + [anon_sym_thread] = ACTIONS(2865), + [anon_sym_atomic] = ACTIONS(2865), + [anon_sym_assert] = ACTIONS(2865), + [anon_sym_defer] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_DOLLARfor] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2865), + [anon_sym_asm] = ACTIONS(2865), + [anon_sym_AT_LBRACK] = ACTIONS(2865), }, [1258] = { [sym_line_comment] = STATE(1258), [sym_block_comment] = STATE(1258), - [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(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_c_SQUOTE] = ACTIONS(2659), - [anon_sym_c_DQUOTE] = ACTIONS(2659), - [anon_sym_r_SQUOTE] = ACTIONS(2659), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_const] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym___global] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_union] = ACTIONS(3084), + [anon_sym_pub] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_c_SQUOTE] = ACTIONS(3084), + [anon_sym_c_DQUOTE] = ACTIONS(3084), + [anon_sym_r_SQUOTE] = ACTIONS(3084), + [anon_sym_r_DQUOTE] = ACTIONS(3084), + [sym_pseudo_compile_time_identifier] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_defer] = ACTIONS(3084), + [anon_sym_goto] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_DOLLARfor] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_asm] = ACTIONS(3084), + [anon_sym_AT_LBRACK] = ACTIONS(3084), }, [1259] = { [sym_line_comment] = STATE(1259), [sym_block_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_LF] = ACTIONS(3300), - [anon_sym_CR] = ACTIONS(3300), - [anon_sym_CR_LF] = ACTIONS(3300), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3300), - [anon_sym_as] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_COMMA] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym___global] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_PERCENT] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_EQ_EQ] = ACTIONS(3300), - [anon_sym_BANG_EQ] = ACTIONS(3300), - [anon_sym_LT_EQ] = ACTIONS(3300), - [anon_sym_GT_EQ] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_pub] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_QMARK] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_go] = ACTIONS(3300), - [anon_sym_spawn] = ACTIONS(3300), - [anon_sym_json_DOTdecode] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_LT_DASH] = ACTIONS(3300), - [anon_sym_LT_LT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3300), - [anon_sym_GT_GT_GT] = ACTIONS(3300), - [anon_sym_AMP_CARET] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_PIPE_PIPE] = ACTIONS(3300), - [anon_sym_or] = ACTIONS(3300), - [sym_none] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_nil] = ACTIONS(3300), - [anon_sym_QMARK_DOT] = ACTIONS(3300), - [anon_sym_POUND_LBRACK] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_DOLLARif] = ACTIONS(3300), - [anon_sym_is] = ACTIONS(3300), - [anon_sym_BANGis] = ACTIONS(3300), - [anon_sym_in] = ACTIONS(3300), - [anon_sym_BANGin] = ACTIONS(3300), - [anon_sym_match] = ACTIONS(3300), - [anon_sym_select] = ACTIONS(3300), - [anon_sym_lock] = ACTIONS(3300), - [anon_sym_rlock] = ACTIONS(3300), - [anon_sym_unsafe] = ACTIONS(3300), - [anon_sym_sql] = ACTIONS(3300), - [sym_int_literal] = ACTIONS(3300), - [sym_float_literal] = ACTIONS(3300), - [sym_rune_literal] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_c_SQUOTE] = ACTIONS(3300), - [anon_sym_c_DQUOTE] = ACTIONS(3300), - [anon_sym_r_SQUOTE] = ACTIONS(3300), - [anon_sym_r_DQUOTE] = ACTIONS(3300), - [sym_pseudo_compile_time_identifier] = ACTIONS(3300), - [anon_sym_shared] = ACTIONS(3300), - [anon_sym_map_LBRACK] = ACTIONS(3300), - [anon_sym_chan] = ACTIONS(3300), - [anon_sym_thread] = ACTIONS(3300), - [anon_sym_atomic] = ACTIONS(3300), - [anon_sym_assert] = ACTIONS(3300), - [anon_sym_defer] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_DOLLARfor] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym_AT_LBRACK] = ACTIONS(3300), - }, - [1260] = { - [sym_line_comment] = STATE(1260), - [sym_block_comment] = STATE(1260), [ts_builtin_sym_end] = ACTIONS(3302), [sym_identifier] = ACTIONS(3304), [anon_sym_LF] = ACTIONS(3304), @@ -166024,333 +166160,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3304), [anon_sym_AT_LBRACK] = ACTIONS(3304), }, + [1260] = { + [sym_line_comment] = STATE(1260), + [sym_block_comment] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3300), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_CR] = ACTIONS(3300), + [anon_sym_CR_LF] = ACTIONS(3300), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym___global] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_pub] = ACTIONS(3300), + [anon_sym_mut] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_go] = ACTIONS(3300), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3300), + [anon_sym_GT_GT_GT] = ACTIONS(3300), + [anon_sym_AMP_CARET] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_or] = ACTIONS(3300), + [sym_none] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_nil] = ACTIONS(3300), + [anon_sym_QMARK_DOT] = ACTIONS(3300), + [anon_sym_POUND_LBRACK] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_DOLLARif] = ACTIONS(3300), + [anon_sym_is] = ACTIONS(3300), + [anon_sym_BANGis] = ACTIONS(3300), + [anon_sym_in] = ACTIONS(3300), + [anon_sym_BANGin] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_select] = ACTIONS(3300), + [anon_sym_lock] = ACTIONS(3300), + [anon_sym_rlock] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_sql] = ACTIONS(3300), + [sym_int_literal] = ACTIONS(3300), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_c_SQUOTE] = ACTIONS(3300), + [anon_sym_c_DQUOTE] = ACTIONS(3300), + [anon_sym_r_SQUOTE] = ACTIONS(3300), + [anon_sym_r_DQUOTE] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3300), + [anon_sym_shared] = ACTIONS(3300), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3300), + [anon_sym_thread] = ACTIONS(3300), + [anon_sym_atomic] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_defer] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_DOLLARfor] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym_AT_LBRACK] = ACTIONS(3300), + }, [1261] = { [sym_line_comment] = STATE(1261), [sym_block_comment] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2827), - [anon_sym_LF] = ACTIONS(2827), - [anon_sym_CR] = ACTIONS(2827), - [anon_sym_CR_LF] = ACTIONS(2827), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym___global] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_pub] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_interface] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_CARET] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_AMP_CARET] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2827), - [anon_sym_POUND_LBRACK] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - [sym_rune_literal] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_c_SQUOTE] = ACTIONS(2827), - [anon_sym_c_DQUOTE] = ACTIONS(2827), - [anon_sym_r_SQUOTE] = ACTIONS(2827), - [anon_sym_r_DQUOTE] = ACTIONS(2827), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2827), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), - [anon_sym_assert] = ACTIONS(2827), - [anon_sym_defer] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_DOLLARfor] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), - [anon_sym_AT_LBRACK] = ACTIONS(2827), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), }, [1262] = { [sym_line_comment] = STATE(1262), [sym_block_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2817), - [sym_identifier] = ACTIONS(2819), - [anon_sym_LF] = ACTIONS(2819), - [anon_sym_CR] = ACTIONS(2819), - [anon_sym_CR_LF] = ACTIONS(2819), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2819), - [anon_sym_as] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym___global] = ACTIONS(2819), - [anon_sym_type] = ACTIONS(2819), - [anon_sym_fn] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_SLASH] = ACTIONS(2819), - [anon_sym_PERCENT] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_GT] = ACTIONS(2819), - [anon_sym_EQ_EQ] = ACTIONS(2819), - [anon_sym_BANG_EQ] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(2819), - [anon_sym_GT_EQ] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_union] = ACTIONS(2819), - [anon_sym_pub] = ACTIONS(2819), - [anon_sym_mut] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [anon_sym_interface] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2819), - [anon_sym_json_DOTdecode] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK2] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_CARET] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_LT_DASH] = ACTIONS(2819), - [anon_sym_LT_LT] = ACTIONS(2819), - [anon_sym_GT_GT] = ACTIONS(2819), - [anon_sym_GT_GT_GT] = ACTIONS(2819), - [anon_sym_AMP_CARET] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [sym_none] = ACTIONS(2819), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_nil] = ACTIONS(2819), - [anon_sym_QMARK_DOT] = ACTIONS(2819), - [anon_sym_POUND_LBRACK] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_is] = ACTIONS(2819), - [anon_sym_BANGis] = ACTIONS(2819), - [anon_sym_in] = ACTIONS(2819), - [anon_sym_BANGin] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [anon_sym_select] = ACTIONS(2819), - [anon_sym_lock] = ACTIONS(2819), - [anon_sym_rlock] = ACTIONS(2819), - [anon_sym_unsafe] = ACTIONS(2819), - [anon_sym_sql] = ACTIONS(2819), - [sym_int_literal] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), - [sym_rune_literal] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_c_SQUOTE] = ACTIONS(2819), - [anon_sym_c_DQUOTE] = ACTIONS(2819), - [anon_sym_r_SQUOTE] = ACTIONS(2819), - [anon_sym_r_DQUOTE] = ACTIONS(2819), - [sym_pseudo_compile_time_identifier] = ACTIONS(2819), - [anon_sym_shared] = ACTIONS(2819), - [anon_sym_map_LBRACK] = ACTIONS(2819), - [anon_sym_chan] = ACTIONS(2819), - [anon_sym_thread] = ACTIONS(2819), - [anon_sym_atomic] = ACTIONS(2819), - [anon_sym_assert] = ACTIONS(2819), - [anon_sym_defer] = ACTIONS(2819), - [anon_sym_goto] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_DOLLARfor] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_asm] = ACTIONS(2819), - [anon_sym_AT_LBRACK] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), }, [1263] = { [sym_line_comment] = STATE(1263), [sym_block_comment] = STATE(1263), - [ts_builtin_sym_end] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LF] = ACTIONS(2823), - [anon_sym_CR] = ACTIONS(2823), - [anon_sym_CR_LF] = ACTIONS(2823), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2823), - [anon_sym_as] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_COMMA] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym___global] = ACTIONS(2823), - [anon_sym_type] = ACTIONS(2823), - [anon_sym_fn] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_EQ_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_union] = ACTIONS(2823), - [anon_sym_pub] = ACTIONS(2823), - [anon_sym_mut] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_interface] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_go] = ACTIONS(2823), - [anon_sym_spawn] = ACTIONS(2823), - [anon_sym_json_DOTdecode] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK2] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2823), - [anon_sym_GT_GT] = ACTIONS(2823), - [anon_sym_GT_GT_GT] = ACTIONS(2823), - [anon_sym_AMP_CARET] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [sym_none] = ACTIONS(2823), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [sym_nil] = ACTIONS(2823), - [anon_sym_QMARK_DOT] = ACTIONS(2823), - [anon_sym_POUND_LBRACK] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2823), - [anon_sym_is] = ACTIONS(2823), - [anon_sym_BANGis] = ACTIONS(2823), - [anon_sym_in] = ACTIONS(2823), - [anon_sym_BANGin] = ACTIONS(2823), - [anon_sym_match] = ACTIONS(2823), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2823), - [anon_sym_rlock] = ACTIONS(2823), - [anon_sym_unsafe] = ACTIONS(2823), - [anon_sym_sql] = ACTIONS(2823), - [sym_int_literal] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), - [sym_rune_literal] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_c_SQUOTE] = ACTIONS(2823), - [anon_sym_c_DQUOTE] = ACTIONS(2823), - [anon_sym_r_SQUOTE] = ACTIONS(2823), - [anon_sym_r_DQUOTE] = ACTIONS(2823), - [sym_pseudo_compile_time_identifier] = ACTIONS(2823), - [anon_sym_shared] = ACTIONS(2823), - [anon_sym_map_LBRACK] = ACTIONS(2823), - [anon_sym_chan] = ACTIONS(2823), - [anon_sym_thread] = ACTIONS(2823), - [anon_sym_atomic] = ACTIONS(2823), - [anon_sym_assert] = ACTIONS(2823), - [anon_sym_defer] = ACTIONS(2823), - [anon_sym_goto] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_DOLLARfor] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_asm] = ACTIONS(2823), - [anon_sym_AT_LBRACK] = ACTIONS(2823), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym___global] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_pub] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), + [anon_sym_AT_LBRACK] = ACTIONS(2837), }, [1264] = { [sym_line_comment] = STATE(1264), [sym_block_comment] = STATE(1264), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [aux_sym_strictly_expression_list_repeat1] = STATE(1925), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_CR] = ACTIONS(2007), - [anon_sym_CR_LF] = ACTIONS(2007), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [aux_sym_strictly_expression_list_repeat1] = STATE(1927), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2041), [anon_sym_DOT] = ACTIONS(3980), [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2041), [anon_sym_COMMA] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2041), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2007), + [anon_sym_fn] = ACTIONS(2041), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -166363,21 +166601,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), [anon_sym_PLUS_PLUS] = ACTIONS(3996), [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2007), - [anon_sym_spawn] = ACTIONS(2007), - [anon_sym_json_DOTdecode] = ACTIONS(2007), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2007), + [anon_sym_TILDE] = ACTIONS(2041), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_DASH] = ACTIONS(2041), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), @@ -166385,364 +166623,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2007), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_nil] = ACTIONS(2007), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_DOLLARif] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), [anon_sym_is] = ACTIONS(4012), [anon_sym_BANGis] = ACTIONS(4012), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_select] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(2007), - [anon_sym_rlock] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_sql] = ACTIONS(2007), - [sym_int_literal] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), - [sym_rune_literal] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_c_SQUOTE] = ACTIONS(2007), - [anon_sym_c_DQUOTE] = ACTIONS(2007), - [anon_sym_r_SQUOTE] = ACTIONS(2007), - [anon_sym_r_DQUOTE] = ACTIONS(2007), - [sym_pseudo_compile_time_identifier] = ACTIONS(2007), - [anon_sym_shared] = ACTIONS(2007), - [anon_sym_map_LBRACK] = ACTIONS(2007), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2007), - [anon_sym_atomic] = ACTIONS(2007), - [anon_sym_assert] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_goto] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_DOLLARfor] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_asm] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), }, [1265] = { [sym_line_comment] = STATE(1265), [sym_block_comment] = STATE(1265), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2075), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2075), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), [anon_sym_SLASH] = ACTIONS(3990), [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_LT_EQ] = ACTIONS(3992), + [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2075), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2075), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4010), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_BANGin] = ACTIONS(4014), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), }, [1266] = { [sym_line_comment] = STATE(1266), [sym_block_comment] = STATE(1266), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), [anon_sym_STAR] = ACTIONS(3990), [anon_sym_SLASH] = ACTIONS(3990), [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [1267] = { [sym_line_comment] = STATE(1267), [sym_block_comment] = STATE(1267), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), [anon_sym_SLASH] = ACTIONS(3990), [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3992), - [anon_sym_GT] = ACTIONS(3992), - [anon_sym_EQ_EQ] = ACTIONS(3992), - [anon_sym_BANG_EQ] = ACTIONS(3992), - [anon_sym_LT_EQ] = ACTIONS(3992), - [anon_sym_GT_EQ] = ACTIONS(3992), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [1268] = { [sym_line_comment] = STATE(1268), [sym_block_comment] = STATE(1268), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -166755,92 +166993,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2069), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), - [anon_sym_assert] = ACTIONS(2069), - [anon_sym_defer] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_DOLLARfor] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_asm] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [1269] = { [sym_line_comment] = STATE(1269), [sym_block_comment] = STATE(1269), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2059), + [anon_sym_fn] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -166853,92 +167091,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2053), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2059), + [anon_sym_LT_DASH] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, [1270] = { [sym_line_comment] = STATE(1270), [sym_block_comment] = STATE(1270), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2073), - [anon_sym_CR] = ACTIONS(2073), - [anon_sym_CR_LF] = ACTIONS(2073), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2001), [anon_sym_DOT] = ACTIONS(3980), [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2001), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -166951,21 +167189,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), [anon_sym_PLUS_PLUS] = ACTIONS(3996), [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2073), - [anon_sym_spawn] = ACTIONS(2073), - [anon_sym_json_DOTdecode] = ACTIONS(2073), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2001), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2073), + [anon_sym_LT_DASH] = ACTIONS(2001), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), @@ -166973,252 +167211,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2073), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_nil] = ACTIONS(2073), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_DOLLARif] = ACTIONS(2073), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_BANGis] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_select] = ACTIONS(2073), - [anon_sym_lock] = ACTIONS(2073), - [anon_sym_rlock] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_sql] = ACTIONS(2073), - [sym_int_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_rune_literal] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_c_SQUOTE] = ACTIONS(2073), - [anon_sym_c_DQUOTE] = ACTIONS(2073), - [anon_sym_r_SQUOTE] = ACTIONS(2073), - [anon_sym_r_DQUOTE] = ACTIONS(2073), - [sym_pseudo_compile_time_identifier] = ACTIONS(2073), - [anon_sym_shared] = ACTIONS(2073), - [anon_sym_map_LBRACK] = ACTIONS(2073), - [anon_sym_chan] = ACTIONS(2073), - [anon_sym_thread] = ACTIONS(2073), - [anon_sym_atomic] = ACTIONS(2073), - [anon_sym_assert] = ACTIONS(2073), - [anon_sym_defer] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_DOLLARfor] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_asm] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), }, [1271] = { [sym_line_comment] = STATE(1271), [sym_block_comment] = STATE(1271), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_CR] = ACTIONS(2049), + [anon_sym_CR_LF] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2049), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2049), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), [anon_sym_SLASH] = ACTIONS(3990), [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3992), - [anon_sym_GT] = ACTIONS(3992), - [anon_sym_EQ_EQ] = ACTIONS(3992), - [anon_sym_BANG_EQ] = ACTIONS(3992), - [anon_sym_LT_EQ] = ACTIONS(3992), - [anon_sym_GT_EQ] = ACTIONS(3992), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2049), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2049), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2049), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2049), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + [sym_rune_literal] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_c_SQUOTE] = ACTIONS(2049), + [anon_sym_c_DQUOTE] = ACTIONS(2049), + [anon_sym_r_SQUOTE] = ACTIONS(2049), + [anon_sym_r_DQUOTE] = ACTIONS(2049), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2049), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_defer] = ACTIONS(2049), + [anon_sym_goto] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_DOLLARfor] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_asm] = ACTIONS(2049), }, [1272] = { [sym_line_comment] = STATE(1272), [sym_block_comment] = STATE(1272), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(3988), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(3990), - [anon_sym_GT_GT] = ACTIONS(3990), - [anon_sym_GT_GT_GT] = ACTIONS(3990), - [anon_sym_AMP_CARET] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_defer] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_DOLLARfor] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_asm] = ACTIONS(2079), - }, - [1273] = { - [sym_line_comment] = STATE(1273), - [sym_block_comment] = STATE(1273), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), [sym_identifier] = ACTIONS(2065), [anon_sym_LF] = ACTIONS(2065), [anon_sym_CR] = ACTIONS(2065), @@ -167227,46 +167367,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_SEMI] = ACTIONS(2065), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(3982), [anon_sym_LBRACE] = ACTIONS(2065), [anon_sym_COMMA] = ACTIONS(2065), [anon_sym_RBRACE] = ACTIONS(2065), [anon_sym_LPAREN] = ACTIONS(3986), [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3990), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_LT_EQ] = ACTIONS(3992), + [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), [anon_sym_struct] = ACTIONS(2065), [anon_sym_mut] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), [anon_sym_go] = ACTIONS(2065), [anon_sym_spawn] = ACTIONS(2065), [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3990), [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2065), - [anon_sym_AMP_CARET] = ACTIONS(2065), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3990), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_AMP_CARET] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_PIPE_PIPE] = ACTIONS(4008), + [anon_sym_or] = ACTIONS(4010), [sym_none] = ACTIONS(2065), [sym_true] = ACTIONS(2065), [sym_false] = ACTIONS(2065), @@ -167275,10 +167415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(4004), [anon_sym_if] = ACTIONS(2065), [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_BANGin] = ACTIONS(4014), [anon_sym_match] = ACTIONS(2065), [anon_sym_select] = ACTIONS(2065), [anon_sym_lock] = ACTIONS(2065), @@ -167311,124 +167451,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2065), [anon_sym_asm] = ACTIONS(2065), }, - [1274] = { - [sym_line_comment] = STATE(1274), - [sym_block_comment] = STATE(1274), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - }, - [1275] = { - [sym_line_comment] = STATE(1275), - [sym_block_comment] = STATE(1275), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), + [1273] = { + [sym_line_comment] = STATE(1273), + [sym_block_comment] = STATE(1273), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2069), + [anon_sym_CR] = ACTIONS(2069), + [anon_sym_CR_LF] = ACTIONS(2069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2069), [anon_sym_DOT] = ACTIONS(3980), [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2069), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -167441,21 +167483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), [anon_sym_PLUS_PLUS] = ACTIONS(3996), [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), + [anon_sym_go] = ACTIONS(2069), + [anon_sym_spawn] = ACTIONS(2069), + [anon_sym_json_DOTdecode] = ACTIONS(2069), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2069), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(2045), + [anon_sym_LT_DASH] = ACTIONS(2069), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), @@ -167463,168 +167505,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), + [sym_none] = ACTIONS(2069), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_nil] = ACTIONS(2069), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_is] = ACTIONS(4016), + [anon_sym_BANGis] = ACTIONS(4016), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), - }, - [1276] = { - [sym_line_comment] = STATE(1276), - [sym_block_comment] = STATE(1276), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2049), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_CR] = ACTIONS(2049), - [anon_sym_CR_LF] = ACTIONS(2049), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2049), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2049), - [anon_sym_spawn] = ACTIONS(2049), - [anon_sym_json_DOTdecode] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_LT_DASH] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2049), - [anon_sym_AMP_CARET] = ACTIONS(2049), - [anon_sym_AMP_AMP] = ACTIONS(2049), - [anon_sym_PIPE_PIPE] = ACTIONS(2049), - [anon_sym_or] = ACTIONS(2049), - [sym_none] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_nil] = ACTIONS(2049), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_DOLLARif] = ACTIONS(2049), - [anon_sym_is] = ACTIONS(2049), - [anon_sym_BANGis] = ACTIONS(2049), - [anon_sym_in] = ACTIONS(2049), - [anon_sym_BANGin] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_select] = ACTIONS(2049), - [anon_sym_lock] = ACTIONS(2049), - [anon_sym_rlock] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_sql] = ACTIONS(2049), - [sym_int_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), - [sym_rune_literal] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [anon_sym_c_SQUOTE] = ACTIONS(2049), - [anon_sym_c_DQUOTE] = ACTIONS(2049), - [anon_sym_r_SQUOTE] = ACTIONS(2049), - [anon_sym_r_DQUOTE] = ACTIONS(2049), - [sym_pseudo_compile_time_identifier] = ACTIONS(2049), - [anon_sym_shared] = ACTIONS(2049), - [anon_sym_map_LBRACK] = ACTIONS(2049), - [anon_sym_chan] = ACTIONS(2049), - [anon_sym_thread] = ACTIONS(2049), - [anon_sym_atomic] = ACTIONS(2049), - [anon_sym_assert] = ACTIONS(2049), - [anon_sym_defer] = ACTIONS(2049), - [anon_sym_goto] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_DOLLARfor] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2049), - [anon_sym_asm] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_lock] = ACTIONS(2069), + [anon_sym_rlock] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_sql] = ACTIONS(2069), + [sym_int_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_c_SQUOTE] = ACTIONS(2069), + [anon_sym_c_DQUOTE] = ACTIONS(2069), + [anon_sym_r_SQUOTE] = ACTIONS(2069), + [anon_sym_r_DQUOTE] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2069), + [anon_sym_shared] = ACTIONS(2069), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2069), + [anon_sym_thread] = ACTIONS(2069), + [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_defer] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_DOLLARfor] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_asm] = ACTIONS(2069), }, - [1277] = { - [sym_line_comment] = STATE(1277), - [sym_block_comment] = STATE(1277), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(3902), - [anon_sym_LF] = ACTIONS(3902), - [anon_sym_CR] = ACTIONS(3902), - [anon_sym_CR_LF] = ACTIONS(3902), + [1274] = { + [sym_line_comment] = STATE(1274), + [sym_block_comment] = STATE(1274), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(3904), + [anon_sym_LF] = ACTIONS(3904), + [anon_sym_CR] = ACTIONS(3904), + [anon_sym_CR_LF] = ACTIONS(3904), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3902), + [anon_sym_SEMI] = ACTIONS(3904), [anon_sym_DOT] = ACTIONS(3980), [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3904), [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_RBRACE] = ACTIONS(3904), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(3902), + [anon_sym_fn] = ACTIONS(3904), [anon_sym_PLUS] = ACTIONS(3988), [anon_sym_DASH] = ACTIONS(3988), [anon_sym_STAR] = ACTIONS(3990), @@ -167637,21 +167581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3992), [anon_sym_GT_EQ] = ACTIONS(3992), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_mut] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3904), + [anon_sym_mut] = ACTIONS(3904), [anon_sym_PLUS_PLUS] = ACTIONS(3996), [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(3902), - [anon_sym_spawn] = ACTIONS(3902), - [anon_sym_json_DOTdecode] = ACTIONS(3902), + [anon_sym_go] = ACTIONS(3904), + [anon_sym_spawn] = ACTIONS(3904), + [anon_sym_json_DOTdecode] = ACTIONS(3904), [anon_sym_PIPE] = ACTIONS(3988), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(3902), + [anon_sym_TILDE] = ACTIONS(3904), [anon_sym_CARET] = ACTIONS(3988), [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_LT_DASH] = ACTIONS(3902), + [anon_sym_LT_DASH] = ACTIONS(3904), [anon_sym_LT_LT] = ACTIONS(3990), [anon_sym_GT_GT] = ACTIONS(3990), [anon_sym_GT_GT_GT] = ACTIONS(3990), @@ -167659,926 +167603,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(4006), [anon_sym_PIPE_PIPE] = ACTIONS(4008), [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(3902), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [sym_nil] = ACTIONS(3902), + [sym_none] = ACTIONS(3904), + [sym_true] = ACTIONS(3904), + [sym_false] = ACTIONS(3904), + [sym_nil] = ACTIONS(3904), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_DOLLARif] = ACTIONS(3902), + [anon_sym_if] = ACTIONS(3904), + [anon_sym_DOLLARif] = ACTIONS(3904), [anon_sym_is] = ACTIONS(4012), [anon_sym_BANGis] = ACTIONS(4012), [anon_sym_in] = ACTIONS(4014), [anon_sym_BANGin] = ACTIONS(4014), - [anon_sym_match] = ACTIONS(3902), - [anon_sym_select] = ACTIONS(3902), - [anon_sym_lock] = ACTIONS(3902), - [anon_sym_rlock] = ACTIONS(3902), - [anon_sym_unsafe] = ACTIONS(3902), - [anon_sym_sql] = ACTIONS(3902), - [sym_int_literal] = ACTIONS(3902), - [sym_float_literal] = ACTIONS(3902), - [sym_rune_literal] = ACTIONS(3902), - [anon_sym_SQUOTE] = ACTIONS(3902), - [anon_sym_DQUOTE] = ACTIONS(3902), - [anon_sym_c_SQUOTE] = ACTIONS(3902), - [anon_sym_c_DQUOTE] = ACTIONS(3902), - [anon_sym_r_SQUOTE] = ACTIONS(3902), - [anon_sym_r_DQUOTE] = ACTIONS(3902), - [sym_pseudo_compile_time_identifier] = ACTIONS(3902), - [anon_sym_shared] = ACTIONS(3902), - [anon_sym_map_LBRACK] = ACTIONS(3902), - [anon_sym_chan] = ACTIONS(3902), - [anon_sym_thread] = ACTIONS(3902), - [anon_sym_atomic] = ACTIONS(3902), - [anon_sym_assert] = ACTIONS(3902), - [anon_sym_defer] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_DOLLARfor] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_POUND] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - }, - [1278] = { - [sym_line_comment] = STATE(1278), - [sym_block_comment] = STATE(1278), - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1699), - [sym_plain_type] = STATE(1747), - [sym__plain_type_without_special] = STATE(1740), - [sym_anon_struct_type] = STATE(1712), - [sym_multi_return_type] = STATE(1740), - [sym_result_type] = STATE(1740), - [sym_option_type] = STATE(1740), - [sym_qualified_type] = STATE(1699), - [sym_fixed_array_type] = STATE(1712), - [sym_array_type] = STATE(1712), - [sym_pointer_type] = STATE(1712), - [sym_wrong_pointer_type] = STATE(1712), - [sym_map_type] = STATE(1712), - [sym_channel_type] = STATE(1712), - [sym_shared_type] = STATE(1712), - [sym_thread_type] = STATE(1712), - [sym_atomic_type] = STATE(1712), - [sym_generic_type] = STATE(1712), - [sym_function_type] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(879), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_const] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym___global] = ACTIONS(881), - [anon_sym_type] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(881), - [anon_sym_pub] = ACTIONS(881), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LT_DASH] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(4038), - [aux_sym_sum_type_token1] = ACTIONS(881), - [anon_sym_PIPE2] = ACTIONS(879), - [anon_sym_map_LBRACK] = ACTIONS(4040), - [anon_sym_chan] = ACTIONS(4042), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4046), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), - [anon_sym_AT_LBRACK] = ACTIONS(881), + [anon_sym_match] = ACTIONS(3904), + [anon_sym_select] = ACTIONS(3904), + [anon_sym_lock] = ACTIONS(3904), + [anon_sym_rlock] = ACTIONS(3904), + [anon_sym_unsafe] = ACTIONS(3904), + [anon_sym_sql] = ACTIONS(3904), + [sym_int_literal] = ACTIONS(3904), + [sym_float_literal] = ACTIONS(3904), + [sym_rune_literal] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [anon_sym_c_SQUOTE] = ACTIONS(3904), + [anon_sym_c_DQUOTE] = ACTIONS(3904), + [anon_sym_r_SQUOTE] = ACTIONS(3904), + [anon_sym_r_DQUOTE] = ACTIONS(3904), + [sym_pseudo_compile_time_identifier] = ACTIONS(3904), + [anon_sym_shared] = ACTIONS(3904), + [anon_sym_map_LBRACK] = ACTIONS(3904), + [anon_sym_chan] = ACTIONS(3904), + [anon_sym_thread] = ACTIONS(3904), + [anon_sym_atomic] = ACTIONS(3904), + [anon_sym_assert] = ACTIONS(3904), + [anon_sym_defer] = ACTIONS(3904), + [anon_sym_goto] = ACTIONS(3904), + [anon_sym_break] = ACTIONS(3904), + [anon_sym_continue] = ACTIONS(3904), + [anon_sym_return] = ACTIONS(3904), + [anon_sym_DOLLARfor] = ACTIONS(3904), + [anon_sym_for] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_asm] = ACTIONS(3904), }, - [1279] = { - [sym_line_comment] = STATE(1279), - [sym_block_comment] = STATE(1279), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1275] = { + [sym_line_comment] = STATE(1275), + [sym_block_comment] = STATE(1275), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2057), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_AMP_CARET] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_rune_literal] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_c_SQUOTE] = ACTIONS(2057), + [anon_sym_c_DQUOTE] = ACTIONS(2057), + [anon_sym_r_SQUOTE] = ACTIONS(2057), + [anon_sym_r_DQUOTE] = ACTIONS(2057), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2057), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2057), + [anon_sym_defer] = ACTIONS(2057), + [anon_sym_goto] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_DOLLARfor] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_asm] = ACTIONS(2057), }, - [1280] = { - [sym_line_comment] = STATE(1280), - [sym_block_comment] = STATE(1280), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LF] = ACTIONS(3912), - [anon_sym_CR] = ACTIONS(3912), - [anon_sym_CR_LF] = ACTIONS(3912), + [1276] = { + [sym_line_comment] = STATE(1276), + [sym_block_comment] = STATE(1276), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_CR] = ACTIONS(2061), + [anon_sym_CR_LF] = ACTIONS(2061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym_SEMI] = ACTIONS(2061), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(3912), - [anon_sym_PLUS] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3912), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3912), - [anon_sym_mut] = ACTIONS(3912), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(3912), - [anon_sym_spawn] = ACTIONS(3912), - [anon_sym_json_DOTdecode] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_CARET] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3912), - [anon_sym_LT_DASH] = ACTIONS(3912), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(3912), - [sym_true] = ACTIONS(3912), - [sym_false] = ACTIONS(3912), - [sym_nil] = ACTIONS(3912), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(3912), - [anon_sym_DOLLARif] = ACTIONS(3912), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(3912), - [anon_sym_select] = ACTIONS(3912), - [anon_sym_lock] = ACTIONS(3912), - [anon_sym_rlock] = ACTIONS(3912), - [anon_sym_unsafe] = ACTIONS(3912), - [anon_sym_sql] = ACTIONS(3912), - [sym_int_literal] = ACTIONS(3912), - [sym_float_literal] = ACTIONS(3912), - [sym_rune_literal] = ACTIONS(3912), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE] = ACTIONS(3912), - [anon_sym_c_SQUOTE] = ACTIONS(3912), - [anon_sym_c_DQUOTE] = ACTIONS(3912), - [anon_sym_r_SQUOTE] = ACTIONS(3912), - [anon_sym_r_DQUOTE] = ACTIONS(3912), - [sym_pseudo_compile_time_identifier] = ACTIONS(3912), - [anon_sym_shared] = ACTIONS(3912), - [anon_sym_map_LBRACK] = ACTIONS(3912), - [anon_sym_chan] = ACTIONS(3912), - [anon_sym_thread] = ACTIONS(3912), - [anon_sym_atomic] = ACTIONS(3912), - [anon_sym_assert] = ACTIONS(3912), - [anon_sym_defer] = ACTIONS(3912), - [anon_sym_goto] = ACTIONS(3912), - [anon_sym_break] = ACTIONS(3912), - [anon_sym_continue] = ACTIONS(3912), - [anon_sym_return] = ACTIONS(3912), - [anon_sym_DOLLARfor] = ACTIONS(3912), - [anon_sym_for] = ACTIONS(3912), - [anon_sym_POUND] = ACTIONS(3912), - [anon_sym_asm] = ACTIONS(3912), - }, - [1281] = { - [sym_line_comment] = STATE(1281), - [sym_block_comment] = STATE(1281), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_defer] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_DOLLARfor] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_asm] = ACTIONS(2079), - }, - [1282] = { - [sym_line_comment] = STATE(1282), - [sym_block_comment] = STATE(1282), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(3930), - [anon_sym_LF] = ACTIONS(3930), - [anon_sym_CR] = ACTIONS(3930), - [anon_sym_CR_LF] = ACTIONS(3930), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3930), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3930), - [anon_sym_RBRACE] = ACTIONS(3930), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_mut] = ACTIONS(3930), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(3930), - [anon_sym_spawn] = ACTIONS(3930), - [anon_sym_json_DOTdecode] = ACTIONS(3930), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(3930), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(3930), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(3930), - [sym_true] = ACTIONS(3930), - [sym_false] = ACTIONS(3930), - [sym_nil] = ACTIONS(3930), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_DOLLARif] = ACTIONS(3930), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(3930), - [anon_sym_select] = ACTIONS(3930), - [anon_sym_lock] = ACTIONS(3930), - [anon_sym_rlock] = ACTIONS(3930), - [anon_sym_unsafe] = ACTIONS(3930), - [anon_sym_sql] = ACTIONS(3930), - [sym_int_literal] = ACTIONS(3930), - [sym_float_literal] = ACTIONS(3930), - [sym_rune_literal] = ACTIONS(3930), - [anon_sym_SQUOTE] = ACTIONS(3930), - [anon_sym_DQUOTE] = ACTIONS(3930), - [anon_sym_c_SQUOTE] = ACTIONS(3930), - [anon_sym_c_DQUOTE] = ACTIONS(3930), - [anon_sym_r_SQUOTE] = ACTIONS(3930), - [anon_sym_r_DQUOTE] = ACTIONS(3930), - [sym_pseudo_compile_time_identifier] = ACTIONS(3930), - [anon_sym_shared] = ACTIONS(3930), - [anon_sym_map_LBRACK] = ACTIONS(3930), - [anon_sym_chan] = ACTIONS(3930), - [anon_sym_thread] = ACTIONS(3930), - [anon_sym_atomic] = ACTIONS(3930), - [anon_sym_assert] = ACTIONS(3930), - [anon_sym_defer] = ACTIONS(3930), - [anon_sym_goto] = ACTIONS(3930), - [anon_sym_break] = ACTIONS(3930), - [anon_sym_continue] = ACTIONS(3930), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_DOLLARfor] = ACTIONS(3930), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_POUND] = ACTIONS(3930), - [anon_sym_asm] = ACTIONS(3930), - }, - [1283] = { - [sym_line_comment] = STATE(1283), - [sym_block_comment] = STATE(1283), - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1699), - [sym_plain_type] = STATE(1731), - [sym__plain_type_without_special] = STATE(1740), - [sym_anon_struct_type] = STATE(1712), - [sym_multi_return_type] = STATE(1740), - [sym_result_type] = STATE(1740), - [sym_option_type] = STATE(1740), - [sym_qualified_type] = STATE(1699), - [sym_fixed_array_type] = STATE(1712), - [sym_array_type] = STATE(1712), - [sym_pointer_type] = STATE(1712), - [sym_wrong_pointer_type] = STATE(1712), - [sym_map_type] = STATE(1712), - [sym_channel_type] = STATE(1712), - [sym_shared_type] = STATE(1712), - [sym_thread_type] = STATE(1712), - [sym_atomic_type] = STATE(1712), - [sym_generic_type] = STATE(1712), - [sym_function_type] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_const] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym___global] = ACTIONS(877), - [anon_sym_type] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(877), - [anon_sym_pub] = ACTIONS(877), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LT_DASH] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(4038), - [aux_sym_sum_type_token1] = ACTIONS(877), - [anon_sym_PIPE2] = ACTIONS(875), - [anon_sym_map_LBRACK] = ACTIONS(4040), - [anon_sym_chan] = ACTIONS(4042), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4046), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - [anon_sym_AT_LBRACK] = ACTIONS(877), - }, - [1284] = { - [sym_line_comment] = STATE(1284), - [sym_block_comment] = STATE(1284), - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1699), - [sym_plain_type] = STATE(1743), - [sym__plain_type_without_special] = STATE(1740), - [sym_anon_struct_type] = STATE(1712), - [sym_multi_return_type] = STATE(1740), - [sym_result_type] = STATE(1740), - [sym_option_type] = STATE(1740), - [sym_qualified_type] = STATE(1699), - [sym_fixed_array_type] = STATE(1712), - [sym_array_type] = STATE(1712), - [sym_pointer_type] = STATE(1712), - [sym_wrong_pointer_type] = STATE(1712), - [sym_map_type] = STATE(1712), - [sym_channel_type] = STATE(1712), - [sym_shared_type] = STATE(1712), - [sym_thread_type] = STATE(1712), - [sym_atomic_type] = STATE(1712), - [sym_generic_type] = STATE(1712), - [sym_function_type] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(817), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(821), - [anon_sym_CR] = ACTIONS(821), - [anon_sym_CR_LF] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_const] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym___global] = ACTIONS(821), - [anon_sym_type] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(821), - [anon_sym_pub] = ACTIONS(821), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(821), - [anon_sym_json_DOTdecode] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LT_DASH] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_nil] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_DOLLARif] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_select] = ACTIONS(821), - [anon_sym_lock] = ACTIONS(821), - [anon_sym_rlock] = ACTIONS(821), - [anon_sym_unsafe] = ACTIONS(821), - [anon_sym_sql] = ACTIONS(821), - [sym_int_literal] = ACTIONS(821), - [sym_float_literal] = ACTIONS(821), - [sym_rune_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_c_SQUOTE] = ACTIONS(821), - [anon_sym_c_DQUOTE] = ACTIONS(821), - [anon_sym_r_SQUOTE] = ACTIONS(821), - [anon_sym_r_DQUOTE] = ACTIONS(821), - [sym_pseudo_compile_time_identifier] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(4038), - [aux_sym_sum_type_token1] = ACTIONS(821), - [anon_sym_PIPE2] = ACTIONS(817), - [anon_sym_map_LBRACK] = ACTIONS(4040), - [anon_sym_chan] = ACTIONS(4042), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4046), - [anon_sym_assert] = ACTIONS(821), - [anon_sym_defer] = ACTIONS(821), - [anon_sym_goto] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_DOLLARfor] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_asm] = ACTIONS(821), - [anon_sym_AT_LBRACK] = ACTIONS(821), - }, - [1285] = { - [sym_line_comment] = STATE(1285), - [sym_block_comment] = STATE(1285), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_AMP_CARET] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_rune_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [anon_sym_c_SQUOTE] = ACTIONS(2061), + [anon_sym_c_DQUOTE] = ACTIONS(2061), + [anon_sym_r_SQUOTE] = ACTIONS(2061), + [anon_sym_r_DQUOTE] = ACTIONS(2061), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2061), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(2061), + [anon_sym_defer] = ACTIONS(2061), + [anon_sym_goto] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_DOLLARfor] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_asm] = ACTIONS(2061), }, - [1286] = { - [sym_line_comment] = STATE(1286), - [sym_block_comment] = STATE(1286), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1277] = { + [sym_line_comment] = STATE(1277), + [sym_block_comment] = STATE(1277), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, - [1287] = { - [sym_line_comment] = STATE(1287), - [sym_block_comment] = STATE(1287), + [1278] = { + [sym_line_comment] = STATE(1278), + [sym_block_comment] = STATE(1278), [sym_else_branch] = STATE(1387), [sym_identifier] = ACTIONS(2083), [anon_sym_LF] = ACTIONS(2083), @@ -168635,7 +168000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2083), [anon_sym_POUND_LBRACK] = ACTIONS(2083), [anon_sym_if] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(4060), + [anon_sym_else] = ACTIONS(4020), [anon_sym_DOLLARif] = ACTIONS(2083), [anon_sym_is] = ACTIONS(2083), [anon_sym_BANGis] = ACTIONS(2083), @@ -168673,106 +168038,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2083), [anon_sym_asm] = ACTIONS(2083), }, - [1288] = { - [sym_line_comment] = STATE(1288), - [sym_block_comment] = STATE(1288), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), - [anon_sym_QMARK_DOT] = ACTIONS(3980), - [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_BANGis] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), - [anon_sym_assert] = ACTIONS(2069), - [anon_sym_defer] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_DOLLARfor] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_asm] = ACTIONS(2069), - }, - [1289] = { - [sym_line_comment] = STATE(1289), - [sym_block_comment] = STATE(1289), + [1279] = { + [sym_line_comment] = STATE(1279), + [sym_block_comment] = STATE(1279), [sym_else_branch] = STATE(1388), [sym_identifier] = ACTIONS(2089), [anon_sym_LF] = ACTIONS(2089), @@ -168829,7 +168097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2089), [anon_sym_POUND_LBRACK] = ACTIONS(2089), [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(4060), + [anon_sym_else] = ACTIONS(4020), [anon_sym_DOLLARif] = ACTIONS(2089), [anon_sym_is] = ACTIONS(2089), [anon_sym_BANGis] = ACTIONS(2089), @@ -168867,714 +168135,1492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2089), [anon_sym_asm] = ACTIONS(2089), }, - [1290] = { - [sym_line_comment] = STATE(1290), - [sym_block_comment] = STATE(1290), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [1280] = { + [sym_line_comment] = STATE(1280), + [sym_block_comment] = STATE(1280), + [sym_reference_expression] = STATE(4425), + [sym_type_reference_expression] = STATE(1699), + [sym_plain_type] = STATE(1747), + [sym__plain_type_without_special] = STATE(1719), + [sym_anon_struct_type] = STATE(1721), + [sym_multi_return_type] = STATE(1719), + [sym_result_type] = STATE(1719), + [sym_option_type] = STATE(1719), + [sym_qualified_type] = STATE(1699), + [sym_fixed_array_type] = STATE(1721), + [sym_array_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_wrong_pointer_type] = STATE(1721), + [sym_map_type] = STATE(1721), + [sym_channel_type] = STATE(1721), + [sym_shared_type] = STATE(1721), + [sym_thread_type] = STATE(1721), + [sym_atomic_type] = STATE(1721), + [sym_generic_type] = STATE(1721), + [sym_function_type] = STATE(1721), + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(4022), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym___global] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(855), + [anon_sym_pub] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_interface] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_DASH] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(4040), + [aux_sym_sum_type_token1] = ACTIONS(855), + [anon_sym_PIPE2] = ACTIONS(853), + [anon_sym_map_LBRACK] = ACTIONS(4042), + [anon_sym_chan] = ACTIONS(4044), + [anon_sym_thread] = ACTIONS(4046), + [anon_sym_atomic] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + [anon_sym_AT_LBRACK] = ACTIONS(855), + }, + [1281] = { + [sym_line_comment] = STATE(1281), + [sym_block_comment] = STATE(1281), + [sym_reference_expression] = STATE(4425), + [sym_type_reference_expression] = STATE(1699), + [sym_plain_type] = STATE(1739), + [sym__plain_type_without_special] = STATE(1719), + [sym_anon_struct_type] = STATE(1721), + [sym_multi_return_type] = STATE(1719), + [sym_result_type] = STATE(1719), + [sym_option_type] = STATE(1719), + [sym_qualified_type] = STATE(1699), + [sym_fixed_array_type] = STATE(1721), + [sym_array_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_wrong_pointer_type] = STATE(1721), + [sym_map_type] = STATE(1721), + [sym_channel_type] = STATE(1721), + [sym_shared_type] = STATE(1721), + [sym_thread_type] = STATE(1721), + [sym_atomic_type] = STATE(1721), + [sym_generic_type] = STATE(1721), + [sym_function_type] = STATE(1721), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(4022), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym___global] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_interface] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_DASH] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(4040), + [aux_sym_sum_type_token1] = ACTIONS(859), + [anon_sym_PIPE2] = ACTIONS(857), + [anon_sym_map_LBRACK] = ACTIONS(4042), + [anon_sym_chan] = ACTIONS(4044), + [anon_sym_thread] = ACTIONS(4046), + [anon_sym_atomic] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), + [anon_sym_AT_LBRACK] = ACTIONS(859), + }, + [1282] = { + [sym_line_comment] = STATE(1282), + [sym_block_comment] = STATE(1282), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_CR] = ACTIONS(2065), + [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2065), [anon_sym_DOT] = ACTIONS(3980), [anon_sym_as] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(4050), - [anon_sym_GT] = ACTIONS(4050), - [anon_sym_EQ_EQ] = ACTIONS(4050), - [anon_sym_BANG_EQ] = ACTIONS(4050), - [anon_sym_LT_EQ] = ACTIONS(4050), - [anon_sym_GT_EQ] = ACTIONS(4050), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), [anon_sym_PLUS_PLUS] = ACTIONS(3996), [anon_sym_DASH_DASH] = ACTIONS(3998), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(4050), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4054), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4058), [anon_sym_or] = ACTIONS(4010), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), [anon_sym_is] = ACTIONS(4012), [anon_sym_BANGis] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4058), - [anon_sym_BANGin] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_c_SQUOTE] = ACTIONS(2065), + [anon_sym_c_DQUOTE] = ACTIONS(2065), + [anon_sym_r_SQUOTE] = ACTIONS(2065), + [anon_sym_r_DQUOTE] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_defer] = ACTIONS(2065), + [anon_sym_goto] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_DOLLARfor] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_asm] = ACTIONS(2065), }, - [1291] = { - [sym_line_comment] = STATE(1291), - [sym_block_comment] = STATE(1291), - [sym_type_parameters] = STATE(4158), - [sym_argument_list] = STATE(1312), - [sym_or_block] = STATE(1313), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1283] = { + [sym_line_comment] = STATE(1283), + [sym_block_comment] = STATE(1283), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), [anon_sym_LPAREN] = ACTIONS(3986), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_SLASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), [anon_sym_QMARK] = ACTIONS(4000), [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4050), [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4048), - [anon_sym_GT_GT] = ACTIONS(4048), - [anon_sym_GT_GT_GT] = ACTIONS(4048), - [anon_sym_AMP_CARET] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), [anon_sym_QMARK_DOT] = ACTIONS(3980), [anon_sym_POUND_LBRACK] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - }, - [1292] = { - [sym_line_comment] = STATE(1292), - [sym_block_comment] = STATE(1292), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_CR] = ACTIONS(2331), - [anon_sym_CR_LF] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2331), - [anon_sym_LT_LT] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2331), - [anon_sym_AMP_CARET] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2331), - [anon_sym_POUND_LBRACK] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(4062), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2331), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_rune_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_c_SQUOTE] = ACTIONS(2331), - [anon_sym_c_DQUOTE] = ACTIONS(2331), - [anon_sym_r_SQUOTE] = ACTIONS(2331), - [anon_sym_r_DQUOTE] = ACTIONS(2331), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2331), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), - [anon_sym_assert] = ACTIONS(2331), - [anon_sym_defer] = ACTIONS(2331), - [anon_sym_goto] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_DOLLARfor] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2331), - [anon_sym_asm] = ACTIONS(2331), - }, - [1293] = { - [sym_line_comment] = STATE(1293), - [sym_block_comment] = STATE(1293), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, - [1294] = { - [sym_line_comment] = STATE(1294), - [sym_block_comment] = STATE(1294), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [1284] = { + [sym_line_comment] = STATE(1284), + [sym_block_comment] = STATE(1284), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), }, - [1295] = { - [sym_line_comment] = STATE(1295), - [sym_block_comment] = STATE(1295), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [1285] = { + [sym_line_comment] = STATE(1285), + [sym_block_comment] = STATE(1285), + [sym_reference_expression] = STATE(4425), + [sym_type_reference_expression] = STATE(1699), + [sym_plain_type] = STATE(1726), + [sym__plain_type_without_special] = STATE(1719), + [sym_anon_struct_type] = STATE(1721), + [sym_multi_return_type] = STATE(1719), + [sym_result_type] = STATE(1719), + [sym_option_type] = STATE(1719), + [sym_qualified_type] = STATE(1699), + [sym_fixed_array_type] = STATE(1721), + [sym_array_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_wrong_pointer_type] = STATE(1721), + [sym_map_type] = STATE(1721), + [sym_channel_type] = STATE(1721), + [sym_shared_type] = STATE(1721), + [sym_thread_type] = STATE(1721), + [sym_atomic_type] = STATE(1721), + [sym_generic_type] = STATE(1721), + [sym_function_type] = STATE(1721), + [ts_builtin_sym_end] = ACTIONS(817), + [sym_identifier] = ACTIONS(4022), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_CR] = ACTIONS(821), + [anon_sym_CR_LF] = ACTIONS(821), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym___global] = ACTIONS(821), + [anon_sym_type] = ACTIONS(821), + [anon_sym_fn] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(821), + [anon_sym_pub] = ACTIONS(821), + [anon_sym_mut] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_QMARK] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(821), + [anon_sym_json_DOTdecode] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_DASH] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_true] = ACTIONS(821), + [sym_false] = ACTIONS(821), + [sym_nil] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_select] = ACTIONS(821), + [anon_sym_lock] = ACTIONS(821), + [anon_sym_rlock] = ACTIONS(821), + [anon_sym_unsafe] = ACTIONS(821), + [anon_sym_sql] = ACTIONS(821), + [sym_int_literal] = ACTIONS(821), + [sym_float_literal] = ACTIONS(821), + [sym_rune_literal] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_c_SQUOTE] = ACTIONS(821), + [anon_sym_c_DQUOTE] = ACTIONS(821), + [anon_sym_r_SQUOTE] = ACTIONS(821), + [anon_sym_r_DQUOTE] = ACTIONS(821), + [sym_pseudo_compile_time_identifier] = ACTIONS(821), + [anon_sym_shared] = ACTIONS(4040), + [aux_sym_sum_type_token1] = ACTIONS(821), + [anon_sym_PIPE2] = ACTIONS(817), + [anon_sym_map_LBRACK] = ACTIONS(4042), + [anon_sym_chan] = ACTIONS(4044), + [anon_sym_thread] = ACTIONS(4046), + [anon_sym_atomic] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(821), + [anon_sym_defer] = ACTIONS(821), + [anon_sym_goto] = ACTIONS(821), + [anon_sym_break] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_return] = ACTIONS(821), + [anon_sym_DOLLARfor] = ACTIONS(821), + [anon_sym_for] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(821), + [anon_sym_asm] = ACTIONS(821), + [anon_sym_AT_LBRACK] = ACTIONS(821), }, - [1296] = { - [sym_line_comment] = STATE(1296), - [sym_block_comment] = STATE(1296), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), + [1286] = { + [sym_line_comment] = STATE(1286), + [sym_block_comment] = STATE(1286), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_CR] = ACTIONS(2049), + [anon_sym_CR_LF] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(4064), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2049), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + [sym_rune_literal] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_c_SQUOTE] = ACTIONS(2049), + [anon_sym_c_DQUOTE] = ACTIONS(2049), + [anon_sym_r_SQUOTE] = ACTIONS(2049), + [anon_sym_r_DQUOTE] = ACTIONS(2049), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2049), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_defer] = ACTIONS(2049), + [anon_sym_goto] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_DOLLARfor] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_asm] = ACTIONS(2049), }, - [1297] = { - [sym_line_comment] = STATE(1297), - [sym_block_comment] = STATE(1297), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [1287] = { + [sym_line_comment] = STATE(1287), + [sym_block_comment] = STATE(1287), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + }, + [1288] = { + [sym_line_comment] = STATE(1288), + [sym_block_comment] = STATE(1288), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(3930), + [anon_sym_LF] = ACTIONS(3930), + [anon_sym_CR] = ACTIONS(3930), + [anon_sym_CR_LF] = ACTIONS(3930), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3930), + [anon_sym_RBRACE] = ACTIONS(3930), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_mut] = ACTIONS(3930), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(3930), + [anon_sym_spawn] = ACTIONS(3930), + [anon_sym_json_DOTdecode] = ACTIONS(3930), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(3930), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(3930), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4058), + [anon_sym_or] = ACTIONS(4010), + [sym_none] = ACTIONS(3930), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [sym_nil] = ACTIONS(3930), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_DOLLARif] = ACTIONS(3930), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(3930), + [anon_sym_select] = ACTIONS(3930), + [anon_sym_lock] = ACTIONS(3930), + [anon_sym_rlock] = ACTIONS(3930), + [anon_sym_unsafe] = ACTIONS(3930), + [anon_sym_sql] = ACTIONS(3930), + [sym_int_literal] = ACTIONS(3930), + [sym_float_literal] = ACTIONS(3930), + [sym_rune_literal] = ACTIONS(3930), + [anon_sym_SQUOTE] = ACTIONS(3930), + [anon_sym_DQUOTE] = ACTIONS(3930), + [anon_sym_c_SQUOTE] = ACTIONS(3930), + [anon_sym_c_DQUOTE] = ACTIONS(3930), + [anon_sym_r_SQUOTE] = ACTIONS(3930), + [anon_sym_r_DQUOTE] = ACTIONS(3930), + [sym_pseudo_compile_time_identifier] = ACTIONS(3930), + [anon_sym_shared] = ACTIONS(3930), + [anon_sym_map_LBRACK] = ACTIONS(3930), + [anon_sym_chan] = ACTIONS(3930), + [anon_sym_thread] = ACTIONS(3930), + [anon_sym_atomic] = ACTIONS(3930), + [anon_sym_assert] = ACTIONS(3930), + [anon_sym_defer] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_DOLLARfor] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_POUND] = ACTIONS(3930), + [anon_sym_asm] = ACTIONS(3930), + }, + [1289] = { + [sym_line_comment] = STATE(1289), + [sym_block_comment] = STATE(1289), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(3912), + [anon_sym_LF] = ACTIONS(3912), + [anon_sym_CR] = ACTIONS(3912), + [anon_sym_CR_LF] = ACTIONS(3912), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(3912), + [anon_sym_PLUS] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3912), + [anon_sym_mut] = ACTIONS(3912), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(3912), + [anon_sym_spawn] = ACTIONS(3912), + [anon_sym_json_DOTdecode] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(3912), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3912), + [anon_sym_LT_DASH] = ACTIONS(3912), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4058), + [anon_sym_or] = ACTIONS(4010), + [sym_none] = ACTIONS(3912), + [sym_true] = ACTIONS(3912), + [sym_false] = ACTIONS(3912), + [sym_nil] = ACTIONS(3912), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(3912), + [anon_sym_DOLLARif] = ACTIONS(3912), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(3912), + [anon_sym_select] = ACTIONS(3912), + [anon_sym_lock] = ACTIONS(3912), + [anon_sym_rlock] = ACTIONS(3912), + [anon_sym_unsafe] = ACTIONS(3912), + [anon_sym_sql] = ACTIONS(3912), + [sym_int_literal] = ACTIONS(3912), + [sym_float_literal] = ACTIONS(3912), + [sym_rune_literal] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [anon_sym_c_SQUOTE] = ACTIONS(3912), + [anon_sym_c_DQUOTE] = ACTIONS(3912), + [anon_sym_r_SQUOTE] = ACTIONS(3912), + [anon_sym_r_DQUOTE] = ACTIONS(3912), + [sym_pseudo_compile_time_identifier] = ACTIONS(3912), + [anon_sym_shared] = ACTIONS(3912), + [anon_sym_map_LBRACK] = ACTIONS(3912), + [anon_sym_chan] = ACTIONS(3912), + [anon_sym_thread] = ACTIONS(3912), + [anon_sym_atomic] = ACTIONS(3912), + [anon_sym_assert] = ACTIONS(3912), + [anon_sym_defer] = ACTIONS(3912), + [anon_sym_goto] = ACTIONS(3912), + [anon_sym_break] = ACTIONS(3912), + [anon_sym_continue] = ACTIONS(3912), + [anon_sym_return] = ACTIONS(3912), + [anon_sym_DOLLARfor] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3912), + [anon_sym_POUND] = ACTIONS(3912), + [anon_sym_asm] = ACTIONS(3912), + }, + [1290] = { + [sym_line_comment] = STATE(1290), + [sym_block_comment] = STATE(1290), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_defer] = ACTIONS(2053), + [anon_sym_goto] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_DOLLARfor] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2053), + }, + [1291] = { + [sym_line_comment] = STATE(1291), + [sym_block_comment] = STATE(1291), + [sym_type_parameters] = STATE(4159), + [sym_argument_list] = STATE(1360), + [sym_or_block] = STATE(1361), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_SLASH] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_EQ_EQ] = ACTIONS(4054), + [anon_sym_BANG_EQ] = ACTIONS(4054), + [anon_sym_LT_EQ] = ACTIONS(4054), + [anon_sym_GT_EQ] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(2075), + [anon_sym_LT_LT] = ACTIONS(4052), + [anon_sym_GT_GT] = ACTIONS(4052), + [anon_sym_GT_GT_GT] = ACTIONS(4052), + [anon_sym_AMP_CARET] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4058), + [anon_sym_or] = ACTIONS(4010), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(3980), + [anon_sym_POUND_LBRACK] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(4012), + [anon_sym_BANGis] = ACTIONS(4012), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_BANGin] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_defer] = ACTIONS(2075), + [anon_sym_goto] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_DOLLARfor] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_asm] = ACTIONS(2075), + }, + [1292] = { + [sym_line_comment] = STATE(1292), + [sym_block_comment] = STATE(1292), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_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_PIPE] = 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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1293] = { + [sym_line_comment] = STATE(1293), + [sym_block_comment] = STATE(1293), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_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_PIPE] = 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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1294] = { + [sym_line_comment] = STATE(1294), + [sym_block_comment] = STATE(1294), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + }, + [1295] = { + [sym_line_comment] = STATE(1295), + [sym_block_comment] = STATE(1295), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LF] = ACTIONS(2093), + [anon_sym_CR] = ACTIONS(2093), + [anon_sym_CR_LF] = ACTIONS(2093), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_GT] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2093), [anon_sym_BANG] = ACTIONS(2093), [anon_sym_go] = ACTIONS(2093), [anon_sym_spawn] = ACTIONS(2093), @@ -169600,7 +169646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(4064), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2093), [anon_sym_in] = ACTIONS(2093), @@ -169637,1150 +169683,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2093), [anon_sym_asm] = ACTIONS(2093), }, + [1296] = { + [sym_line_comment] = STATE(1296), + [sym_block_comment] = STATE(1296), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + }, + [1297] = { + [sym_line_comment] = STATE(1297), + [sym_block_comment] = STATE(1297), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + }, [1298] = { [sym_line_comment] = STATE(1298), [sym_block_comment] = STATE(1298), - [sym_type_parameters] = STATE(1327), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_type_parameters] = STATE(1347), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), }, [1299] = { [sym_line_comment] = STATE(1299), [sym_block_comment] = STATE(1299), - [sym_identifier] = ACTIONS(2827), - [anon_sym_LF] = ACTIONS(2827), - [anon_sym_CR] = ACTIONS(2827), - [anon_sym_CR_LF] = ACTIONS(2827), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_CARET] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_AMP_CARET] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2827), - [anon_sym_POUND_LBRACK] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - [sym_rune_literal] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_c_SQUOTE] = ACTIONS(2827), - [anon_sym_c_DQUOTE] = ACTIONS(2827), - [anon_sym_r_SQUOTE] = ACTIONS(2827), - [anon_sym_r_DQUOTE] = ACTIONS(2827), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2827), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), - [anon_sym_assert] = ACTIONS(2827), - [anon_sym_defer] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_DOLLARfor] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_asm] = ACTIONS(2827), + [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_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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1300] = { [sym_line_comment] = STATE(1300), [sym_block_comment] = STATE(1300), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2631), + [anon_sym_LF] = ACTIONS(2631), + [anon_sym_CR] = ACTIONS(2631), + [anon_sym_CR_LF] = ACTIONS(2631), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_c_SQUOTE] = ACTIONS(2643), - [anon_sym_c_DQUOTE] = ACTIONS(2643), - [anon_sym_r_SQUOTE] = ACTIONS(2643), - [anon_sym_r_DQUOTE] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_AMP_CARET] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2631), + [anon_sym_POUND_LBRACK] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), + [sym_rune_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_c_SQUOTE] = ACTIONS(2631), + [anon_sym_c_DQUOTE] = ACTIONS(2631), + [anon_sym_r_SQUOTE] = ACTIONS(2631), + [anon_sym_r_DQUOTE] = ACTIONS(2631), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2631), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2631), + [anon_sym_defer] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_DOLLARfor] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_asm] = ACTIONS(2631), }, [1301] = { [sym_line_comment] = STATE(1301), [sym_block_comment] = STATE(1301), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_c_SQUOTE] = ACTIONS(2997), + [anon_sym_c_DQUOTE] = ACTIONS(2997), + [anon_sym_r_SQUOTE] = ACTIONS(2997), + [anon_sym_r_DQUOTE] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), }, [1302] = { [sym_line_comment] = STATE(1302), [sym_block_comment] = STATE(1302), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_CR] = ACTIONS(2419), - [anon_sym_CR_LF] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2419), - [anon_sym_BANG_EQ] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_EQ] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2419), - [anon_sym_LT_LT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2419), - [anon_sym_AMP_CARET] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2419), - [anon_sym_POUND_LBRACK] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_rune_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_c_SQUOTE] = ACTIONS(2419), - [anon_sym_c_DQUOTE] = ACTIONS(2419), - [anon_sym_r_SQUOTE] = ACTIONS(2419), - [anon_sym_r_DQUOTE] = ACTIONS(2419), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2419), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), - [anon_sym_assert] = ACTIONS(2419), - [anon_sym_defer] = ACTIONS(2419), - [anon_sym_goto] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_DOLLARfor] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2419), - [anon_sym_asm] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), }, [1303] = { [sym_line_comment] = STATE(1303), [sym_block_comment] = STATE(1303), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3350), - [anon_sym_GT_GT_GT] = ACTIONS(3350), - [anon_sym_AMP_CARET] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_or] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_QMARK_DOT] = ACTIONS(3350), - [anon_sym_POUND_LBRACK] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3350), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_defer] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_DOLLARfor] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - }, - [1304] = { - [sym_line_comment] = STATE(1304), - [sym_block_comment] = STATE(1304), - [sym_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2335), - [anon_sym_CR] = ACTIONS(2335), - [anon_sym_CR_LF] = ACTIONS(2335), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_PERCENT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), - [anon_sym_EQ_EQ] = ACTIONS(2335), - [anon_sym_BANG_EQ] = ACTIONS(2335), - [anon_sym_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_EQ] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_go] = ACTIONS(2335), - [anon_sym_spawn] = ACTIONS(2335), - [anon_sym_json_DOTdecode] = ACTIONS(2335), - [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_LT_DASH] = ACTIONS(2335), - [anon_sym_LT_LT] = ACTIONS(2335), - [anon_sym_GT_GT] = ACTIONS(2335), - [anon_sym_GT_GT_GT] = ACTIONS(2335), - [anon_sym_AMP_CARET] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_PIPE_PIPE] = ACTIONS(2335), - [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_nil] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(2335), - [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_DOLLARif] = ACTIONS(2335), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_BANGis] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_select] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2335), - [anon_sym_rlock] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_sql] = ACTIONS(2335), - [sym_int_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_rune_literal] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_c_SQUOTE] = ACTIONS(2335), - [anon_sym_c_DQUOTE] = ACTIONS(2335), - [anon_sym_r_SQUOTE] = ACTIONS(2335), - [anon_sym_r_DQUOTE] = ACTIONS(2335), - [sym_pseudo_compile_time_identifier] = ACTIONS(2335), - [anon_sym_shared] = ACTIONS(2335), - [anon_sym_map_LBRACK] = ACTIONS(2335), - [anon_sym_chan] = ACTIONS(2335), - [anon_sym_thread] = ACTIONS(2335), - [anon_sym_atomic] = ACTIONS(2335), - [anon_sym_assert] = ACTIONS(2335), - [anon_sym_defer] = ACTIONS(2335), - [anon_sym_goto] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_DOLLARfor] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(2335), - [anon_sym_asm] = ACTIONS(2335), - }, - [1305] = { - [sym_line_comment] = STATE(1305), - [sym_block_comment] = STATE(1305), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LF] = ACTIONS(3060), - [anon_sym_CR] = ACTIONS(3060), - [anon_sym_CR_LF] = ACTIONS(3060), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_c_SQUOTE] = ACTIONS(3060), - [anon_sym_c_DQUOTE] = ACTIONS(3060), - [anon_sym_r_SQUOTE] = ACTIONS(3060), - [anon_sym_r_DQUOTE] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_goto] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_DOLLARfor] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_asm] = ACTIONS(3060), - }, - [1306] = { - [sym_line_comment] = STATE(1306), - [sym_block_comment] = STATE(1306), - [sym_identifier] = ACTIONS(3064), - [anon_sym_LF] = ACTIONS(3064), - [anon_sym_CR] = ACTIONS(3064), - [anon_sym_CR_LF] = ACTIONS(3064), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_c_SQUOTE] = ACTIONS(3064), - [anon_sym_c_DQUOTE] = ACTIONS(3064), - [anon_sym_r_SQUOTE] = ACTIONS(3064), - [anon_sym_r_DQUOTE] = ACTIONS(3064), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_defer] = ACTIONS(3064), - [anon_sym_goto] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_DOLLARfor] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3064), - }, - [1307] = { - [sym_line_comment] = STATE(1307), - [sym_block_comment] = STATE(1307), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_c_SQUOTE] = ACTIONS(3070), - [anon_sym_c_DQUOTE] = ACTIONS(3070), - [anon_sym_r_SQUOTE] = ACTIONS(3070), - [anon_sym_r_DQUOTE] = ACTIONS(3070), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - }, - [1308] = { - [sym_line_comment] = STATE(1308), - [sym_block_comment] = STATE(1308), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3258), - [anon_sym_BANG_EQ] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3258), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_CARET] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3258), - [anon_sym_POUND_LBRACK] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3258), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), - }, - [1309] = { - [sym_line_comment] = STATE(1309), - [sym_block_comment] = STATE(1309), - [sym_reference_expression] = STATE(4598), - [sym_type_reference_expression] = STATE(1722), - [sym_plain_type] = STATE(1901), - [sym__plain_type_without_special] = STATE(1905), - [sym_anon_struct_type] = STATE(1881), - [sym_multi_return_type] = STATE(1905), - [sym_result_type] = STATE(1905), - [sym_option_type] = STATE(1905), - [sym_qualified_type] = STATE(1722), - [sym_fixed_array_type] = STATE(1881), - [sym_array_type] = STATE(1881), - [sym_pointer_type] = STATE(1881), - [sym_wrong_pointer_type] = STATE(1881), - [sym_map_type] = STATE(1881), - [sym_channel_type] = STATE(1881), - [sym_shared_type] = STATE(1881), - [sym_thread_type] = STATE(1881), - [sym_atomic_type] = STATE(1881), - [sym_generic_type] = STATE(1881), - [sym_function_type] = STATE(1881), - [ts_builtin_sym_end] = ACTIONS(817), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LF] = ACTIONS(821), - [anon_sym_CR] = ACTIONS(821), - [anon_sym_CR_LF] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_const] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym___global] = ACTIONS(821), - [anon_sym_type] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(821), - [anon_sym_pub] = ACTIONS(821), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(821), - [anon_sym_json_DOTdecode] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_DASH] = ACTIONS(821), - [sym_none] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_nil] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_DOLLARif] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_select] = ACTIONS(821), - [anon_sym_lock] = ACTIONS(821), - [anon_sym_rlock] = ACTIONS(821), - [anon_sym_unsafe] = ACTIONS(821), - [anon_sym_sql] = ACTIONS(821), - [sym_int_literal] = ACTIONS(821), - [sym_float_literal] = ACTIONS(821), - [sym_rune_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_c_SQUOTE] = ACTIONS(821), - [anon_sym_c_DQUOTE] = ACTIONS(821), - [anon_sym_r_SQUOTE] = ACTIONS(821), - [anon_sym_r_DQUOTE] = ACTIONS(821), - [sym_pseudo_compile_time_identifier] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(4084), - [anon_sym_map_LBRACK] = ACTIONS(4086), - [anon_sym_chan] = ACTIONS(4088), - [anon_sym_thread] = ACTIONS(4090), - [anon_sym_atomic] = ACTIONS(4092), - [anon_sym_assert] = ACTIONS(821), - [anon_sym_defer] = ACTIONS(821), - [anon_sym_goto] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_DOLLARfor] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_asm] = ACTIONS(821), - [anon_sym_AT_LBRACK] = ACTIONS(821), - }, - [1310] = { - [sym_line_comment] = STATE(1310), - [sym_block_comment] = STATE(1310), [sym_identifier] = ACTIONS(3084), [anon_sym_LF] = ACTIONS(3084), [anon_sym_CR] = ACTIONS(3084), @@ -170873,1339 +170446,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3084), [anon_sym_asm] = ACTIONS(3084), }, - [1311] = { - [sym_line_comment] = STATE(1311), - [sym_block_comment] = STATE(1311), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3248), - [anon_sym_POUND_LBRACK] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), - }, - [1312] = { - [sym_line_comment] = STATE(1312), - [sym_block_comment] = STATE(1312), - [sym_identifier] = ACTIONS(2659), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_CR] = ACTIONS(2659), - [anon_sym_CR_LF] = ACTIONS(2659), + [1304] = { + [sym_line_comment] = STATE(1304), + [sym_block_comment] = STATE(1304), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_c_SQUOTE] = ACTIONS(2659), - [anon_sym_c_DQUOTE] = ACTIONS(2659), - [anon_sym_r_SQUOTE] = ACTIONS(2659), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_assert] = ACTIONS(2925), + [anon_sym_defer] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_DOLLARfor] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), }, - [1313] = { - [sym_line_comment] = STATE(1313), - [sym_block_comment] = STATE(1313), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), + [1305] = { + [sym_line_comment] = STATE(1305), + [sym_block_comment] = STATE(1305), + [sym_identifier] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2921), + [anon_sym_CR] = ACTIONS(2921), + [anon_sym_CR_LF] = ACTIONS(2921), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_c_SQUOTE] = ACTIONS(2655), - [anon_sym_c_DQUOTE] = ACTIONS(2655), - [anon_sym_r_SQUOTE] = ACTIONS(2655), - [anon_sym_r_DQUOTE] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2921), + [anon_sym_DOT] = ACTIONS(2921), + [anon_sym_as] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_PERCENT] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2921), + [anon_sym_BANG_EQ] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_mut] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_QMARK] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_go] = ACTIONS(2921), + [anon_sym_spawn] = ACTIONS(2921), + [anon_sym_json_DOTdecode] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LBRACK2] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_LT_DASH] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_GT_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_CARET] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_or] = ACTIONS(2921), + [sym_none] = ACTIONS(2921), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_nil] = ACTIONS(2921), + [anon_sym_QMARK_DOT] = ACTIONS(2921), + [anon_sym_POUND_LBRACK] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_DOLLARif] = ACTIONS(2921), + [anon_sym_is] = ACTIONS(2921), + [anon_sym_BANGis] = ACTIONS(2921), + [anon_sym_in] = ACTIONS(2921), + [anon_sym_BANGin] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_select] = ACTIONS(2921), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_sql] = ACTIONS(2921), + [sym_int_literal] = ACTIONS(2921), + [sym_float_literal] = ACTIONS(2921), + [sym_rune_literal] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_c_SQUOTE] = ACTIONS(2921), + [anon_sym_c_DQUOTE] = ACTIONS(2921), + [anon_sym_r_SQUOTE] = ACTIONS(2921), + [anon_sym_r_DQUOTE] = ACTIONS(2921), + [sym_pseudo_compile_time_identifier] = ACTIONS(2921), + [anon_sym_shared] = ACTIONS(2921), + [anon_sym_map_LBRACK] = ACTIONS(2921), + [anon_sym_chan] = ACTIONS(2921), + [anon_sym_thread] = ACTIONS(2921), + [anon_sym_atomic] = ACTIONS(2921), + [anon_sym_assert] = ACTIONS(2921), + [anon_sym_defer] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_DOLLARfor] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_POUND] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), }, - [1314] = { - [sym_line_comment] = STATE(1314), - [sym_block_comment] = STATE(1314), - [sym_reference_expression] = STATE(4598), - [sym_type_reference_expression] = STATE(1722), - [sym_plain_type] = STATE(1838), - [sym__plain_type_without_special] = STATE(1905), - [sym_anon_struct_type] = STATE(1881), - [sym_multi_return_type] = STATE(1905), - [sym_result_type] = STATE(1905), - [sym_option_type] = STATE(1905), - [sym_qualified_type] = STATE(1722), - [sym_fixed_array_type] = STATE(1881), - [sym_array_type] = STATE(1881), - [sym_pointer_type] = STATE(1881), - [sym_wrong_pointer_type] = STATE(1881), - [sym_map_type] = STATE(1881), - [sym_channel_type] = STATE(1881), - [sym_shared_type] = STATE(1881), - [sym_thread_type] = STATE(1881), - [sym_atomic_type] = STATE(1881), - [sym_generic_type] = STATE(1881), - [sym_function_type] = STATE(1881), - [ts_builtin_sym_end] = ACTIONS(879), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), + [1306] = { + [sym_line_comment] = STATE(1306), + [sym_block_comment] = STATE(1306), + [sym_identifier] = ACTIONS(3300), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_CR] = ACTIONS(3300), + [anon_sym_CR_LF] = ACTIONS(3300), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_const] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym___global] = ACTIONS(881), - [anon_sym_type] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(881), - [anon_sym_pub] = ACTIONS(881), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_go] = ACTIONS(881), - [anon_sym_spawn] = ACTIONS(881), - [anon_sym_json_DOTdecode] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_DASH] = ACTIONS(881), - [sym_none] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_nil] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_DOLLARif] = ACTIONS(881), - [anon_sym_match] = ACTIONS(881), - [anon_sym_select] = ACTIONS(881), - [anon_sym_lock] = ACTIONS(881), - [anon_sym_rlock] = ACTIONS(881), - [anon_sym_unsafe] = ACTIONS(881), - [anon_sym_sql] = ACTIONS(881), - [sym_int_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - [sym_rune_literal] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_c_SQUOTE] = ACTIONS(881), - [anon_sym_c_DQUOTE] = ACTIONS(881), - [anon_sym_r_SQUOTE] = ACTIONS(881), - [anon_sym_r_DQUOTE] = ACTIONS(881), - [sym_pseudo_compile_time_identifier] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(4084), - [anon_sym_map_LBRACK] = ACTIONS(4086), - [anon_sym_chan] = ACTIONS(4088), - [anon_sym_thread] = ACTIONS(4090), - [anon_sym_atomic] = ACTIONS(4092), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_goto] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_DOLLARfor] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_asm] = ACTIONS(881), - [anon_sym_AT_LBRACK] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_mut] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_go] = ACTIONS(3300), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3300), + [anon_sym_GT_GT_GT] = ACTIONS(3300), + [anon_sym_AMP_CARET] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_or] = ACTIONS(3300), + [sym_none] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_nil] = ACTIONS(3300), + [anon_sym_QMARK_DOT] = ACTIONS(3300), + [anon_sym_POUND_LBRACK] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_DOLLARif] = ACTIONS(3300), + [anon_sym_is] = ACTIONS(3300), + [anon_sym_BANGis] = ACTIONS(3300), + [anon_sym_in] = ACTIONS(3300), + [anon_sym_BANGin] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_select] = ACTIONS(3300), + [anon_sym_lock] = ACTIONS(3300), + [anon_sym_rlock] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_sql] = ACTIONS(3300), + [sym_int_literal] = ACTIONS(3300), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_c_SQUOTE] = ACTIONS(3300), + [anon_sym_c_DQUOTE] = ACTIONS(3300), + [anon_sym_r_SQUOTE] = ACTIONS(3300), + [anon_sym_r_DQUOTE] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3300), + [anon_sym_shared] = ACTIONS(3300), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3300), + [anon_sym_thread] = ACTIONS(3300), + [anon_sym_atomic] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_defer] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_DOLLARfor] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), }, - [1315] = { - [sym_line_comment] = STATE(1315), - [sym_block_comment] = STATE(1315), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), + [1307] = { + [sym_line_comment] = STATE(1307), + [sym_block_comment] = STATE(1307), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_QMARK_DOT] = ACTIONS(3286), - [anon_sym_POUND_LBRACK] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_is] = ACTIONS(3286), - [anon_sym_BANGis] = ACTIONS(3286), - [anon_sym_in] = ACTIONS(3286), - [anon_sym_BANGin] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - [anon_sym_assert] = ACTIONS(3286), - [anon_sym_defer] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_DOLLARfor] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), }, - [1316] = { - [sym_line_comment] = STATE(1316), - [sym_block_comment] = STATE(1316), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), + [1308] = { + [sym_line_comment] = STATE(1308), + [sym_block_comment] = STATE(1308), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), }, - [1317] = { - [sym_line_comment] = STATE(1317), - [sym_block_comment] = STATE(1317), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [1309] = { + [sym_line_comment] = STATE(1309), + [sym_block_comment] = STATE(1309), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LF] = ACTIONS(2917), + [anon_sym_CR] = ACTIONS(2917), + [anon_sym_CR_LF] = ACTIONS(2917), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2917), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2917), + [anon_sym_BANG_EQ] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), + [anon_sym_spawn] = ACTIONS(2917), + [anon_sym_json_DOTdecode] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2917), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2917), + [anon_sym_AMP_CARET] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_PIPE_PIPE] = ACTIONS(2917), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2917), + [anon_sym_POUND_LBRACK] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), + [sym_rune_literal] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_c_SQUOTE] = ACTIONS(2917), + [anon_sym_c_DQUOTE] = ACTIONS(2917), + [anon_sym_r_SQUOTE] = ACTIONS(2917), + [anon_sym_r_DQUOTE] = ACTIONS(2917), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2917), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + [anon_sym_assert] = ACTIONS(2917), + [anon_sym_defer] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_DOLLARfor] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), }, - [1318] = { - [sym_line_comment] = STATE(1318), - [sym_block_comment] = STATE(1318), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_CR] = ACTIONS(2393), - [anon_sym_CR_LF] = ACTIONS(2393), + [1310] = { + [sym_line_comment] = STATE(1310), + [sym_block_comment] = STATE(1310), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2393), - [anon_sym_BANG_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [anon_sym_CARET] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2393), - [anon_sym_AMP_CARET] = ACTIONS(2393), - [anon_sym_AMP_AMP] = ACTIONS(2393), - [anon_sym_PIPE_PIPE] = ACTIONS(2393), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2393), - [anon_sym_POUND_LBRACK] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_rune_literal] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [anon_sym_c_SQUOTE] = ACTIONS(2393), - [anon_sym_c_DQUOTE] = ACTIONS(2393), - [anon_sym_r_SQUOTE] = ACTIONS(2393), - [anon_sym_r_DQUOTE] = ACTIONS(2393), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2393), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), - [anon_sym_assert] = ACTIONS(2393), - [anon_sym_defer] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_DOLLARfor] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_asm] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_c_SQUOTE] = ACTIONS(3061), + [anon_sym_c_DQUOTE] = ACTIONS(3061), + [anon_sym_r_SQUOTE] = ACTIONS(3061), + [anon_sym_r_DQUOTE] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), }, - [1319] = { - [sym_line_comment] = STATE(1319), - [sym_block_comment] = STATE(1319), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [1311] = { + [sym_line_comment] = STATE(1311), + [sym_block_comment] = STATE(1311), + [sym_identifier] = ACTIONS(2865), + [anon_sym_LF] = ACTIONS(2865), + [anon_sym_CR] = ACTIONS(2865), + [anon_sym_CR_LF] = ACTIONS(2865), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = 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(2178), - [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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(2865), + [anon_sym_as] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_COMMA] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PERCENT] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_EQ_EQ] = ACTIONS(2865), + [anon_sym_BANG_EQ] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_mut] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_go] = ACTIONS(2865), + [anon_sym_spawn] = ACTIONS(2865), + [anon_sym_json_DOTdecode] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_LT_DASH] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2865), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2865), + [anon_sym_AMP_CARET] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_PIPE_PIPE] = ACTIONS(2865), + [anon_sym_or] = ACTIONS(2865), + [sym_none] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_nil] = ACTIONS(2865), + [anon_sym_QMARK_DOT] = ACTIONS(2865), + [anon_sym_POUND_LBRACK] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_DOLLARif] = ACTIONS(2865), + [anon_sym_is] = ACTIONS(2865), + [anon_sym_BANGis] = ACTIONS(2865), + [anon_sym_in] = ACTIONS(2865), + [anon_sym_BANGin] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_select] = ACTIONS(2865), + [anon_sym_lock] = ACTIONS(2865), + [anon_sym_rlock] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_sql] = ACTIONS(2865), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2865), + [sym_rune_literal] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [anon_sym_c_SQUOTE] = ACTIONS(2865), + [anon_sym_c_DQUOTE] = ACTIONS(2865), + [anon_sym_r_SQUOTE] = ACTIONS(2865), + [anon_sym_r_DQUOTE] = ACTIONS(2865), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), + [anon_sym_shared] = ACTIONS(2865), + [anon_sym_map_LBRACK] = ACTIONS(2865), + [anon_sym_chan] = ACTIONS(2865), + [anon_sym_thread] = ACTIONS(2865), + [anon_sym_atomic] = ACTIONS(2865), + [anon_sym_assert] = ACTIONS(2865), + [anon_sym_defer] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_DOLLARfor] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2865), + [anon_sym_asm] = ACTIONS(2865), }, - [1320] = { - [sym_line_comment] = STATE(1320), - [sym_block_comment] = STATE(1320), - [sym_reference_expression] = STATE(4598), - [sym_type_reference_expression] = STATE(1722), - [sym_plain_type] = STATE(1840), - [sym__plain_type_without_special] = STATE(1905), - [sym_anon_struct_type] = STATE(1881), - [sym_multi_return_type] = STATE(1905), - [sym_result_type] = STATE(1905), - [sym_option_type] = STATE(1905), - [sym_qualified_type] = STATE(1722), - [sym_fixed_array_type] = STATE(1881), - [sym_array_type] = STATE(1881), - [sym_pointer_type] = STATE(1881), - [sym_wrong_pointer_type] = STATE(1881), - [sym_map_type] = STATE(1881), - [sym_channel_type] = STATE(1881), - [sym_shared_type] = STATE(1881), - [sym_thread_type] = STATE(1881), - [sym_atomic_type] = STATE(1881), - [sym_generic_type] = STATE(1881), - [sym_function_type] = STATE(1881), - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), + [1312] = { + [sym_line_comment] = STATE(1312), + [sym_block_comment] = STATE(1312), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_const] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym___global] = ACTIONS(877), - [anon_sym_type] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(877), - [anon_sym_pub] = ACTIONS(877), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_go] = ACTIONS(877), - [anon_sym_spawn] = ACTIONS(877), - [anon_sym_json_DOTdecode] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_DASH] = ACTIONS(877), - [sym_none] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_nil] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_DOLLARif] = ACTIONS(877), - [anon_sym_match] = ACTIONS(877), - [anon_sym_select] = ACTIONS(877), - [anon_sym_lock] = ACTIONS(877), - [anon_sym_rlock] = ACTIONS(877), - [anon_sym_unsafe] = ACTIONS(877), - [anon_sym_sql] = ACTIONS(877), - [sym_int_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_rune_literal] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_c_SQUOTE] = ACTIONS(877), - [anon_sym_c_DQUOTE] = ACTIONS(877), - [anon_sym_r_SQUOTE] = ACTIONS(877), - [anon_sym_r_DQUOTE] = ACTIONS(877), - [sym_pseudo_compile_time_identifier] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(4084), - [anon_sym_map_LBRACK] = ACTIONS(4086), - [anon_sym_chan] = ACTIONS(4088), - [anon_sym_thread] = ACTIONS(4090), - [anon_sym_atomic] = ACTIONS(4092), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_defer] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_DOLLARfor] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_asm] = ACTIONS(877), - [anon_sym_AT_LBRACK] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), }, - [1321] = { - [sym_line_comment] = STATE(1321), - [sym_block_comment] = STATE(1321), - [sym_identifier] = ACTIONS(2819), - [anon_sym_LF] = ACTIONS(2819), - [anon_sym_CR] = ACTIONS(2819), - [anon_sym_CR_LF] = ACTIONS(2819), + [1313] = { + [sym_line_comment] = STATE(1313), + [sym_block_comment] = STATE(1313), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2819), - [anon_sym_as] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_fn] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_SLASH] = ACTIONS(2819), - [anon_sym_PERCENT] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_GT] = ACTIONS(2819), - [anon_sym_EQ_EQ] = ACTIONS(2819), - [anon_sym_BANG_EQ] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(2819), - [anon_sym_GT_EQ] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_mut] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2819), - [anon_sym_json_DOTdecode] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK2] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_CARET] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_LT_DASH] = ACTIONS(2819), - [anon_sym_LT_LT] = ACTIONS(2819), - [anon_sym_GT_GT] = ACTIONS(2819), - [anon_sym_GT_GT_GT] = ACTIONS(2819), - [anon_sym_AMP_CARET] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [sym_none] = ACTIONS(2819), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_nil] = ACTIONS(2819), - [anon_sym_QMARK_DOT] = ACTIONS(2819), - [anon_sym_POUND_LBRACK] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_is] = ACTIONS(2819), - [anon_sym_BANGis] = ACTIONS(2819), - [anon_sym_in] = ACTIONS(2819), - [anon_sym_BANGin] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [anon_sym_select] = ACTIONS(2819), - [anon_sym_lock] = ACTIONS(2819), - [anon_sym_rlock] = ACTIONS(2819), - [anon_sym_unsafe] = ACTIONS(2819), - [anon_sym_sql] = ACTIONS(2819), - [sym_int_literal] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), - [sym_rune_literal] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_c_SQUOTE] = ACTIONS(2819), - [anon_sym_c_DQUOTE] = ACTIONS(2819), - [anon_sym_r_SQUOTE] = ACTIONS(2819), - [anon_sym_r_DQUOTE] = ACTIONS(2819), - [sym_pseudo_compile_time_identifier] = ACTIONS(2819), - [anon_sym_shared] = ACTIONS(2819), - [anon_sym_map_LBRACK] = ACTIONS(2819), - [anon_sym_chan] = ACTIONS(2819), - [anon_sym_thread] = ACTIONS(2819), - [anon_sym_atomic] = ACTIONS(2819), - [anon_sym_assert] = ACTIONS(2819), - [anon_sym_defer] = ACTIONS(2819), - [anon_sym_goto] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_DOLLARfor] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_asm] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_defer] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_DOLLARfor] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), }, - [1322] = { - [sym_line_comment] = STATE(1322), - [sym_block_comment] = STATE(1322), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [1314] = { + [sym_line_comment] = STATE(1314), + [sym_block_comment] = STATE(1314), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_c_SQUOTE] = ACTIONS(3035), + [anon_sym_c_DQUOTE] = ACTIONS(3035), + [anon_sym_r_SQUOTE] = ACTIONS(3035), + [anon_sym_r_DQUOTE] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_defer] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_DOLLARfor] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), }, - [1323] = { - [sym_line_comment] = STATE(1323), - [sym_block_comment] = STATE(1323), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LF] = ACTIONS(2823), - [anon_sym_CR] = ACTIONS(2823), - [anon_sym_CR_LF] = ACTIONS(2823), + [1315] = { + [sym_line_comment] = STATE(1315), + [sym_block_comment] = STATE(1315), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(2823), - [anon_sym_as] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_COMMA] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_fn] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_EQ_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_mut] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_go] = ACTIONS(2823), - [anon_sym_spawn] = ACTIONS(2823), - [anon_sym_json_DOTdecode] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK2] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2823), - [anon_sym_GT_GT] = ACTIONS(2823), - [anon_sym_GT_GT_GT] = ACTIONS(2823), - [anon_sym_AMP_CARET] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [sym_none] = ACTIONS(2823), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [sym_nil] = ACTIONS(2823), - [anon_sym_QMARK_DOT] = ACTIONS(2823), - [anon_sym_POUND_LBRACK] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2823), - [anon_sym_is] = ACTIONS(2823), - [anon_sym_BANGis] = ACTIONS(2823), - [anon_sym_in] = ACTIONS(2823), - [anon_sym_BANGin] = ACTIONS(2823), - [anon_sym_match] = ACTIONS(2823), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2823), - [anon_sym_rlock] = ACTIONS(2823), - [anon_sym_unsafe] = ACTIONS(2823), - [anon_sym_sql] = ACTIONS(2823), - [sym_int_literal] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), - [sym_rune_literal] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_c_SQUOTE] = ACTIONS(2823), - [anon_sym_c_DQUOTE] = ACTIONS(2823), - [anon_sym_r_SQUOTE] = ACTIONS(2823), - [anon_sym_r_DQUOTE] = ACTIONS(2823), - [sym_pseudo_compile_time_identifier] = ACTIONS(2823), - [anon_sym_shared] = ACTIONS(2823), - [anon_sym_map_LBRACK] = ACTIONS(2823), - [anon_sym_chan] = ACTIONS(2823), - [anon_sym_thread] = ACTIONS(2823), - [anon_sym_atomic] = ACTIONS(2823), - [anon_sym_assert] = ACTIONS(2823), - [anon_sym_defer] = ACTIONS(2823), - [anon_sym_goto] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_DOLLARfor] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_asm] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), }, - [1324] = { - [sym_line_comment] = STATE(1324), - [sym_block_comment] = STATE(1324), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [1316] = { + [sym_line_comment] = STATE(1316), + [sym_block_comment] = STATE(1316), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_CR] = ACTIONS(3065), + [anon_sym_CR_LF] = ACTIONS(3065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3065), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_CARET] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3065), + [anon_sym_POUND_LBRACK] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), + [sym_rune_literal] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_c_SQUOTE] = ACTIONS(3065), + [anon_sym_c_DQUOTE] = ACTIONS(3065), + [anon_sym_r_SQUOTE] = ACTIONS(3065), + [anon_sym_r_DQUOTE] = ACTIONS(3065), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3065), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), + [anon_sym_assert] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_goto] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_DOLLARfor] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_asm] = ACTIONS(3065), }, - [1325] = { - [sym_line_comment] = STATE(1325), - [sym_block_comment] = STATE(1325), + [1317] = { + [sym_line_comment] = STATE(1317), + [sym_block_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), + }, + [1318] = { + [sym_line_comment] = STATE(1318), + [sym_block_comment] = STATE(1318), [sym_identifier] = ACTIONS(2837), [anon_sym_LF] = ACTIONS(2837), [anon_sym_CR] = ACTIONS(2837), @@ -172216,7 +171789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2837), [anon_sym_as] = ACTIONS(2837), [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2335), [anon_sym_RBRACE] = ACTIONS(2837), [anon_sym_LPAREN] = ACTIONS(2837), [anon_sym_fn] = ACTIONS(2837), @@ -172298,484 +171871,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2837), [anon_sym_asm] = ACTIONS(2837), }, - [1326] = { - [sym_line_comment] = STATE(1326), - [sym_block_comment] = STATE(1326), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - }, - [1327] = { - [sym_line_comment] = STATE(1327), - [sym_block_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - }, - [1328] = { - [sym_line_comment] = STATE(1328), - [sym_block_comment] = STATE(1328), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_as] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2885), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2885), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), - [anon_sym_assert] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_DOLLARfor] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - }, - [1329] = { - [sym_line_comment] = STATE(1329), - [sym_block_comment] = STATE(1329), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [1319] = { + [sym_line_comment] = STATE(1319), + [sym_block_comment] = STATE(1319), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3069), + [anon_sym_CR] = ACTIONS(3069), + [anon_sym_CR_LF] = ACTIONS(3069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3354), - [anon_sym_BANG_EQ] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3354), - [anon_sym_AMP_CARET] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_PIPE_PIPE] = ACTIONS(3354), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3069), + [anon_sym_DASH_DASH] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_CARET] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3069), + [anon_sym_POUND_LBRACK] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3069), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), + [sym_rune_literal] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_c_SQUOTE] = ACTIONS(3069), + [anon_sym_c_DQUOTE] = ACTIONS(3069), + [anon_sym_r_SQUOTE] = ACTIONS(3069), + [anon_sym_r_DQUOTE] = ACTIONS(3069), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3069), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_goto] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_DOLLARfor] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3069), + [anon_sym_asm] = ACTIONS(3069), }, - [1330] = { - [sym_line_comment] = STATE(1330), - [sym_block_comment] = STATE(1330), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [1320] = { + [sym_line_comment] = STATE(1320), + [sym_block_comment] = STATE(1320), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_EQ_EQ] = ACTIONS(3336), - [anon_sym_BANG_EQ] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3336), - [anon_sym_AMP_CARET] = ACTIONS(3336), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_PIPE_PIPE] = ACTIONS(3336), - [anon_sym_or] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_c_SQUOTE] = ACTIONS(3336), - [anon_sym_c_DQUOTE] = ACTIONS(3336), - [anon_sym_r_SQUOTE] = ACTIONS(3336), - [anon_sym_r_DQUOTE] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), }, - [1331] = { - [sym_line_comment] = STATE(1331), - [sym_block_comment] = STATE(1331), + [1321] = { + [sym_line_comment] = STATE(1321), + [sym_block_comment] = STATE(1321), [sym_identifier] = ACTIONS(3328), [anon_sym_LF] = ACTIONS(3328), [anon_sym_CR] = ACTIONS(3328), @@ -172868,959 +172156,769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3328), [anon_sym_asm] = ACTIONS(3328), }, - [1332] = { - [sym_line_comment] = STATE(1332), - [sym_block_comment] = STATE(1332), - [sym_identifier] = ACTIONS(3318), - [anon_sym_LF] = ACTIONS(3318), - [anon_sym_CR] = ACTIONS(3318), - [anon_sym_CR_LF] = ACTIONS(3318), + [1322] = { + [sym_line_comment] = STATE(1322), + [sym_block_comment] = STATE(1322), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_DOT] = ACTIONS(3318), - [anon_sym_as] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_fn] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_PERCENT] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_EQ_EQ] = ACTIONS(3318), - [anon_sym_BANG_EQ] = ACTIONS(3318), - [anon_sym_LT_EQ] = ACTIONS(3318), - [anon_sym_GT_EQ] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_mut] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_go] = ACTIONS(3318), - [anon_sym_spawn] = ACTIONS(3318), - [anon_sym_json_DOTdecode] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_LBRACK2] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3318), - [anon_sym_LT_LT] = ACTIONS(3318), - [anon_sym_GT_GT] = ACTIONS(3318), - [anon_sym_GT_GT_GT] = ACTIONS(3318), - [anon_sym_AMP_CARET] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_or] = ACTIONS(3318), - [sym_none] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_nil] = ACTIONS(3318), - [anon_sym_QMARK_DOT] = ACTIONS(3318), - [anon_sym_POUND_LBRACK] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3318), - [anon_sym_is] = ACTIONS(3318), - [anon_sym_BANGis] = ACTIONS(3318), - [anon_sym_in] = ACTIONS(3318), - [anon_sym_BANGin] = ACTIONS(3318), - [anon_sym_match] = ACTIONS(3318), - [anon_sym_select] = ACTIONS(3318), - [anon_sym_lock] = ACTIONS(3318), - [anon_sym_rlock] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3318), - [sym_int_literal] = ACTIONS(3318), - [sym_float_literal] = ACTIONS(3318), - [sym_rune_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_c_SQUOTE] = ACTIONS(3318), - [anon_sym_c_DQUOTE] = ACTIONS(3318), - [anon_sym_r_SQUOTE] = ACTIONS(3318), - [anon_sym_r_DQUOTE] = ACTIONS(3318), - [sym_pseudo_compile_time_identifier] = ACTIONS(3318), - [anon_sym_shared] = ACTIONS(3318), - [anon_sym_map_LBRACK] = ACTIONS(3318), - [anon_sym_chan] = ACTIONS(3318), - [anon_sym_thread] = ACTIONS(3318), - [anon_sym_atomic] = ACTIONS(3318), - [anon_sym_assert] = ACTIONS(3318), - [anon_sym_defer] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_DOLLARfor] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_asm] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), }, - [1333] = { - [sym_line_comment] = STATE(1333), - [sym_block_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), + [1323] = { + [sym_line_comment] = STATE(1323), + [sym_block_comment] = STATE(1323), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_CR] = ACTIONS(3240), + [anon_sym_CR_LF] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3314), - [anon_sym_BANG_EQ] = ACTIONS(3314), - [anon_sym_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_EQ] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [anon_sym_LT_LT] = ACTIONS(3314), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3314), - [anon_sym_AMP_CARET] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_PIPE_PIPE] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3314), - [anon_sym_POUND_LBRACK] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3314), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3240), + [anon_sym_c_DQUOTE] = ACTIONS(3240), + [anon_sym_r_SQUOTE] = ACTIONS(3240), + [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), + [anon_sym_assert] = ACTIONS(3240), + [anon_sym_defer] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_DOLLARfor] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), }, - [1334] = { - [sym_line_comment] = STATE(1334), - [sym_block_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LF] = ACTIONS(3308), - [anon_sym_CR] = ACTIONS(3308), - [anon_sym_CR_LF] = ACTIONS(3308), + [1324] = { + [sym_line_comment] = STATE(1324), + [sym_block_comment] = STATE(1324), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_as] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_COMMA] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_fn] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_PERCENT] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_GT] = ACTIONS(3308), - [anon_sym_EQ_EQ] = ACTIONS(3308), - [anon_sym_BANG_EQ] = ACTIONS(3308), - [anon_sym_LT_EQ] = ACTIONS(3308), - [anon_sym_GT_EQ] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_mut] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_QMARK] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3308), - [anon_sym_spawn] = ACTIONS(3308), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_CARET] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_LT_DASH] = ACTIONS(3308), - [anon_sym_LT_LT] = ACTIONS(3308), - [anon_sym_GT_GT] = ACTIONS(3308), - [anon_sym_GT_GT_GT] = ACTIONS(3308), - [anon_sym_AMP_CARET] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_PIPE_PIPE] = ACTIONS(3308), - [anon_sym_or] = ACTIONS(3308), - [sym_none] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_nil] = ACTIONS(3308), - [anon_sym_QMARK_DOT] = ACTIONS(3308), - [anon_sym_POUND_LBRACK] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3308), - [anon_sym_is] = ACTIONS(3308), - [anon_sym_BANGis] = ACTIONS(3308), - [anon_sym_in] = ACTIONS(3308), - [anon_sym_BANGin] = ACTIONS(3308), - [anon_sym_match] = ACTIONS(3308), - [anon_sym_select] = ACTIONS(3308), - [anon_sym_lock] = ACTIONS(3308), - [anon_sym_rlock] = ACTIONS(3308), - [anon_sym_unsafe] = ACTIONS(3308), - [anon_sym_sql] = ACTIONS(3308), - [sym_int_literal] = ACTIONS(3308), - [sym_float_literal] = ACTIONS(3308), - [sym_rune_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_c_SQUOTE] = ACTIONS(3308), - [anon_sym_c_DQUOTE] = ACTIONS(3308), - [anon_sym_r_SQUOTE] = ACTIONS(3308), - [anon_sym_r_DQUOTE] = ACTIONS(3308), - [sym_pseudo_compile_time_identifier] = ACTIONS(3308), - [anon_sym_shared] = ACTIONS(3308), - [anon_sym_map_LBRACK] = ACTIONS(3308), - [anon_sym_chan] = ACTIONS(3308), - [anon_sym_thread] = ACTIONS(3308), - [anon_sym_atomic] = ACTIONS(3308), - [anon_sym_assert] = ACTIONS(3308), - [anon_sym_defer] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_DOLLARfor] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_POUND] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - }, - [1335] = { - [sym_line_comment] = STATE(1335), - [sym_block_comment] = STATE(1335), - [sym_identifier] = ACTIONS(3304), - [anon_sym_LF] = ACTIONS(3304), - [anon_sym_CR] = ACTIONS(3304), - [anon_sym_CR_LF] = ACTIONS(3304), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_DOT] = ACTIONS(3304), - [anon_sym_as] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_COMMA] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_fn] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_PERCENT] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_GT] = ACTIONS(3304), - [anon_sym_EQ_EQ] = ACTIONS(3304), - [anon_sym_BANG_EQ] = ACTIONS(3304), - [anon_sym_LT_EQ] = ACTIONS(3304), - [anon_sym_GT_EQ] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_mut] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_QMARK] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3304), - [anon_sym_json_DOTdecode] = ACTIONS(3304), - [anon_sym_PIPE] = ACTIONS(3304), - [anon_sym_LBRACK2] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_CARET] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_LT_DASH] = ACTIONS(3304), - [anon_sym_LT_LT] = ACTIONS(3304), - [anon_sym_GT_GT] = ACTIONS(3304), - [anon_sym_GT_GT_GT] = ACTIONS(3304), - [anon_sym_AMP_CARET] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_PIPE_PIPE] = ACTIONS(3304), - [anon_sym_or] = ACTIONS(3304), - [sym_none] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_nil] = ACTIONS(3304), - [anon_sym_QMARK_DOT] = ACTIONS(3304), - [anon_sym_POUND_LBRACK] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_DOLLARif] = ACTIONS(3304), - [anon_sym_is] = ACTIONS(3304), - [anon_sym_BANGis] = ACTIONS(3304), - [anon_sym_in] = ACTIONS(3304), - [anon_sym_BANGin] = ACTIONS(3304), - [anon_sym_match] = ACTIONS(3304), - [anon_sym_select] = ACTIONS(3304), - [anon_sym_lock] = ACTIONS(3304), - [anon_sym_rlock] = ACTIONS(3304), - [anon_sym_unsafe] = ACTIONS(3304), - [anon_sym_sql] = ACTIONS(3304), - [sym_int_literal] = ACTIONS(3304), - [sym_float_literal] = ACTIONS(3304), - [sym_rune_literal] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_c_SQUOTE] = ACTIONS(3304), - [anon_sym_c_DQUOTE] = ACTIONS(3304), - [anon_sym_r_SQUOTE] = ACTIONS(3304), - [anon_sym_r_DQUOTE] = ACTIONS(3304), - [sym_pseudo_compile_time_identifier] = ACTIONS(3304), - [anon_sym_shared] = ACTIONS(3304), - [anon_sym_map_LBRACK] = ACTIONS(3304), - [anon_sym_chan] = ACTIONS(3304), - [anon_sym_thread] = ACTIONS(3304), - [anon_sym_atomic] = ACTIONS(3304), - [anon_sym_assert] = ACTIONS(3304), - [anon_sym_defer] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_DOLLARfor] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - }, - [1336] = { - [sym_line_comment] = STATE(1336), - [sym_block_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3300), - [anon_sym_LF] = ACTIONS(3300), - [anon_sym_CR] = ACTIONS(3300), - [anon_sym_CR_LF] = ACTIONS(3300), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_DOT] = ACTIONS(3300), - [anon_sym_as] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_COMMA] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_PERCENT] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_EQ_EQ] = ACTIONS(3300), - [anon_sym_BANG_EQ] = ACTIONS(3300), - [anon_sym_LT_EQ] = ACTIONS(3300), - [anon_sym_GT_EQ] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_QMARK] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_go] = ACTIONS(3300), - [anon_sym_spawn] = ACTIONS(3300), - [anon_sym_json_DOTdecode] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_LT_DASH] = ACTIONS(3300), - [anon_sym_LT_LT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3300), - [anon_sym_GT_GT_GT] = ACTIONS(3300), - [anon_sym_AMP_CARET] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_PIPE_PIPE] = ACTIONS(3300), - [anon_sym_or] = ACTIONS(3300), - [sym_none] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_nil] = ACTIONS(3300), - [anon_sym_QMARK_DOT] = ACTIONS(3300), - [anon_sym_POUND_LBRACK] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_DOLLARif] = ACTIONS(3300), - [anon_sym_is] = ACTIONS(3300), - [anon_sym_BANGis] = ACTIONS(3300), - [anon_sym_in] = ACTIONS(3300), - [anon_sym_BANGin] = ACTIONS(3300), - [anon_sym_match] = ACTIONS(3300), - [anon_sym_select] = ACTIONS(3300), - [anon_sym_lock] = ACTIONS(3300), - [anon_sym_rlock] = ACTIONS(3300), - [anon_sym_unsafe] = ACTIONS(3300), - [anon_sym_sql] = ACTIONS(3300), - [sym_int_literal] = ACTIONS(3300), - [sym_float_literal] = ACTIONS(3300), - [sym_rune_literal] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_c_SQUOTE] = ACTIONS(3300), - [anon_sym_c_DQUOTE] = ACTIONS(3300), - [anon_sym_r_SQUOTE] = ACTIONS(3300), - [anon_sym_r_DQUOTE] = ACTIONS(3300), - [sym_pseudo_compile_time_identifier] = ACTIONS(3300), - [anon_sym_shared] = ACTIONS(3300), - [anon_sym_map_LBRACK] = ACTIONS(3300), - [anon_sym_chan] = ACTIONS(3300), - [anon_sym_thread] = ACTIONS(3300), - [anon_sym_atomic] = ACTIONS(3300), - [anon_sym_assert] = ACTIONS(3300), - [anon_sym_defer] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_DOLLARfor] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), }, - [1337] = { - [sym_line_comment] = STATE(1337), - [sym_block_comment] = STATE(1337), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [1325] = { + [sym_line_comment] = STATE(1325), + [sym_block_comment] = STATE(1325), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), }, - [1338] = { - [sym_line_comment] = STATE(1338), - [sym_block_comment] = STATE(1338), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), + [1326] = { + [sym_line_comment] = STATE(1326), + [sym_block_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_c_SQUOTE] = ACTIONS(2973), - [anon_sym_c_DQUOTE] = ACTIONS(2973), - [anon_sym_r_SQUOTE] = ACTIONS(2973), - [anon_sym_r_DQUOTE] = ACTIONS(2973), - [sym_pseudo_compile_time_identifier] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_DOLLARfor] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_c_SQUOTE] = ACTIONS(3023), + [anon_sym_c_DQUOTE] = ACTIONS(3023), + [anon_sym_r_SQUOTE] = ACTIONS(3023), + [anon_sym_r_DQUOTE] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_defer] = ACTIONS(3023), + [anon_sym_goto] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_DOLLARfor] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_asm] = ACTIONS(3023), }, - [1339] = { - [sym_line_comment] = STATE(1339), - [sym_block_comment] = STATE(1339), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [1327] = { + [sym_line_comment] = STATE(1327), + [sym_block_comment] = STATE(1327), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), }, - [1340] = { - [sym_line_comment] = STATE(1340), - [sym_block_comment] = STATE(1340), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [1328] = { + [sym_line_comment] = STATE(1328), + [sym_block_comment] = STATE(1328), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), }, - [1341] = { - [sym_line_comment] = STATE(1341), - [sym_block_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), + [1329] = { + [sym_line_comment] = STATE(1329), + [sym_block_comment] = STATE(1329), + [sym_identifier] = ACTIONS(3019), + [anon_sym_LF] = ACTIONS(3019), + [anon_sym_CR] = ACTIONS(3019), + [anon_sym_CR_LF] = ACTIONS(3019), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [anon_sym_c_SQUOTE] = ACTIONS(3001), - [anon_sym_c_DQUOTE] = ACTIONS(3001), - [anon_sym_r_SQUOTE] = ACTIONS(3001), - [anon_sym_r_DQUOTE] = ACTIONS(3001), - [sym_pseudo_compile_time_identifier] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_DOT] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_fn] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_mut] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_go] = ACTIONS(3019), + [anon_sym_spawn] = ACTIONS(3019), + [anon_sym_json_DOTdecode] = ACTIONS(3019), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_LBRACK2] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_LT_DASH] = ACTIONS(3019), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_or] = ACTIONS(3019), + [sym_none] = ACTIONS(3019), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_nil] = ACTIONS(3019), + [anon_sym_QMARK_DOT] = ACTIONS(3019), + [anon_sym_POUND_LBRACK] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_DOLLARif] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3019), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_in] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_select] = ACTIONS(3019), + [anon_sym_lock] = ACTIONS(3019), + [anon_sym_rlock] = ACTIONS(3019), + [anon_sym_unsafe] = ACTIONS(3019), + [anon_sym_sql] = ACTIONS(3019), + [sym_int_literal] = ACTIONS(3019), + [sym_float_literal] = ACTIONS(3019), + [sym_rune_literal] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [anon_sym_c_SQUOTE] = ACTIONS(3019), + [anon_sym_c_DQUOTE] = ACTIONS(3019), + [anon_sym_r_SQUOTE] = ACTIONS(3019), + [anon_sym_r_DQUOTE] = ACTIONS(3019), + [sym_pseudo_compile_time_identifier] = ACTIONS(3019), + [anon_sym_shared] = ACTIONS(3019), + [anon_sym_map_LBRACK] = ACTIONS(3019), + [anon_sym_chan] = ACTIONS(3019), + [anon_sym_thread] = ACTIONS(3019), + [anon_sym_atomic] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_defer] = ACTIONS(3019), + [anon_sym_goto] = ACTIONS(3019), + [anon_sym_break] = ACTIONS(3019), + [anon_sym_continue] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_DOLLARfor] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_POUND] = ACTIONS(3019), + [anon_sym_asm] = ACTIONS(3019), }, - [1342] = { - [sym_line_comment] = STATE(1342), - [sym_block_comment] = STATE(1342), + [1330] = { + [sym_line_comment] = STATE(1330), + [sym_block_comment] = STATE(1330), [sym_identifier] = ACTIONS(3015), [anon_sym_LF] = ACTIONS(3015), [anon_sym_CR] = ACTIONS(3015), @@ -173913,1339 +173011,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3015), [anon_sym_asm] = ACTIONS(3015), }, - [1343] = { - [sym_line_comment] = STATE(1343), - [sym_block_comment] = STATE(1343), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), + [1331] = { + [sym_line_comment] = STATE(1331), + [sym_block_comment] = STATE(1331), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(3007), + [anon_sym_CR] = ACTIONS(3007), + [anon_sym_CR_LF] = ACTIONS(3007), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_c_SQUOTE] = ACTIONS(3019), - [anon_sym_c_DQUOTE] = ACTIONS(3019), - [anon_sym_r_SQUOTE] = ACTIONS(3019), - [anon_sym_r_DQUOTE] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_defer] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_DOLLARfor] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - }, - [1344] = { - [sym_line_comment] = STATE(1344), - [sym_block_comment] = STATE(1344), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LF] = ACTIONS(3294), - [anon_sym_CR] = ACTIONS(3294), - [anon_sym_CR_LF] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COMMA] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_EQ] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_CARET] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3294), - [anon_sym_LT_LT] = ACTIONS(3294), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3294), - [anon_sym_AMP_CARET] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3294), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3294), - [anon_sym_POUND_LBRACK] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3294), - [sym_rune_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_c_SQUOTE] = ACTIONS(3294), - [anon_sym_c_DQUOTE] = ACTIONS(3294), - [anon_sym_r_SQUOTE] = ACTIONS(3294), - [anon_sym_r_DQUOTE] = ACTIONS(3294), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3294), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - [anon_sym_assert] = ACTIONS(3294), - [anon_sym_defer] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_DOLLARfor] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_POUND] = ACTIONS(3294), - [anon_sym_asm] = ACTIONS(3294), - }, - [1345] = { - [sym_line_comment] = STATE(1345), - [sym_block_comment] = STATE(1345), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_c_SQUOTE] = ACTIONS(2989), - [anon_sym_c_DQUOTE] = ACTIONS(2989), - [anon_sym_r_SQUOTE] = ACTIONS(2989), - [anon_sym_r_DQUOTE] = ACTIONS(2989), - [sym_pseudo_compile_time_identifier] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - }, - [1346] = { - [sym_line_comment] = STATE(1346), - [sym_block_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3270), - [anon_sym_LF] = ACTIONS(3270), - [anon_sym_CR] = ACTIONS(3270), - [anon_sym_CR_LF] = ACTIONS(3270), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_fn] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_LT_EQ] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_mut] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_QMARK] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_go] = ACTIONS(3270), - [anon_sym_spawn] = ACTIONS(3270), - [anon_sym_json_DOTdecode] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_LBRACK2] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_LT_DASH] = ACTIONS(3270), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3270), - [anon_sym_GT_GT_GT] = ACTIONS(3270), - [anon_sym_AMP_CARET] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3270), - [sym_none] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_nil] = ACTIONS(3270), - [anon_sym_QMARK_DOT] = ACTIONS(3270), - [anon_sym_POUND_LBRACK] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_DOLLARif] = ACTIONS(3270), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3270), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_BANGin] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_lock] = ACTIONS(3270), - [anon_sym_rlock] = ACTIONS(3270), - [anon_sym_unsafe] = ACTIONS(3270), - [anon_sym_sql] = ACTIONS(3270), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(3270), - [sym_rune_literal] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_c_SQUOTE] = ACTIONS(3270), - [anon_sym_c_DQUOTE] = ACTIONS(3270), - [anon_sym_r_SQUOTE] = ACTIONS(3270), - [anon_sym_r_DQUOTE] = ACTIONS(3270), - [sym_pseudo_compile_time_identifier] = ACTIONS(3270), - [anon_sym_shared] = ACTIONS(3270), - [anon_sym_map_LBRACK] = ACTIONS(3270), - [anon_sym_chan] = ACTIONS(3270), - [anon_sym_thread] = ACTIONS(3270), - [anon_sym_atomic] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_defer] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_DOLLARfor] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - }, - [1347] = { - [sym_line_comment] = STATE(1347), - [sym_block_comment] = STATE(1347), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LF] = ACTIONS(3023), - [anon_sym_CR] = ACTIONS(3023), - [anon_sym_CR_LF] = ACTIONS(3023), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_fn] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_mut] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_go] = ACTIONS(3023), - [anon_sym_spawn] = ACTIONS(3023), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_GT_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_CARET] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3023), - [sym_none] = ACTIONS(3023), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_nil] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_DOLLARif] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3023), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_select] = ACTIONS(3023), - [anon_sym_lock] = ACTIONS(3023), - [anon_sym_rlock] = ACTIONS(3023), - [anon_sym_unsafe] = ACTIONS(3023), - [anon_sym_sql] = ACTIONS(3023), - [sym_int_literal] = ACTIONS(3023), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_c_SQUOTE] = ACTIONS(3023), - [anon_sym_c_DQUOTE] = ACTIONS(3023), - [anon_sym_r_SQUOTE] = ACTIONS(3023), - [anon_sym_r_DQUOTE] = ACTIONS(3023), - [sym_pseudo_compile_time_identifier] = ACTIONS(3023), - [anon_sym_shared] = ACTIONS(3023), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3023), - [anon_sym_thread] = ACTIONS(3023), - [anon_sym_atomic] = ACTIONS(3023), - [anon_sym_assert] = ACTIONS(3023), - [anon_sym_defer] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_DOLLARfor] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_POUND] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - }, - [1348] = { - [sym_line_comment] = STATE(1348), - [sym_block_comment] = STATE(1348), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [anon_sym_c_SQUOTE] = ACTIONS(2947), - [anon_sym_c_DQUOTE] = ACTIONS(2947), - [anon_sym_r_SQUOTE] = ACTIONS(2947), - [anon_sym_r_DQUOTE] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [anon_sym_assert] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_DOLLARfor] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - }, - [1349] = { - [sym_line_comment] = STATE(1349), - [sym_block_comment] = STATE(1349), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LF] = ACTIONS(2925), - [anon_sym_CR] = ACTIONS(2925), - [anon_sym_CR_LF] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_as] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_mut] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2925), - [anon_sym_spawn] = ACTIONS(2925), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2925), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_nil] = ACTIONS(2925), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_DOLLARif] = ACTIONS(2925), - [anon_sym_is] = ACTIONS(2925), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_select] = ACTIONS(2925), - [anon_sym_lock] = ACTIONS(2925), - [anon_sym_rlock] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_sql] = ACTIONS(2925), - [sym_int_literal] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_c_SQUOTE] = ACTIONS(2925), - [anon_sym_c_DQUOTE] = ACTIONS(2925), - [anon_sym_r_SQUOTE] = ACTIONS(2925), - [anon_sym_r_DQUOTE] = ACTIONS(2925), - [sym_pseudo_compile_time_identifier] = ACTIONS(2925), - [anon_sym_shared] = ACTIONS(2925), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2925), - [anon_sym_thread] = ACTIONS(2925), - [anon_sym_atomic] = ACTIONS(2925), - [anon_sym_assert] = ACTIONS(2925), - [anon_sym_defer] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_DOLLARfor] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_POUND] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - }, - [1350] = { - [sym_line_comment] = STATE(1350), - [sym_block_comment] = STATE(1350), - [sym_identifier] = ACTIONS(2881), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_CR] = ACTIONS(2881), - [anon_sym_CR_LF] = ACTIONS(2881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_as] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_fn] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2881), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_GT] = ACTIONS(2881), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_mut] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_QMARK] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_go] = ACTIONS(2881), - [anon_sym_spawn] = ACTIONS(2881), - [anon_sym_json_DOTdecode] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_LBRACK2] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_GT_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_CARET] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_or] = ACTIONS(2881), - [sym_none] = ACTIONS(2881), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [sym_nil] = ACTIONS(2881), - [anon_sym_QMARK_DOT] = ACTIONS(2881), - [anon_sym_POUND_LBRACK] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_DOLLARif] = ACTIONS(2881), - [anon_sym_is] = ACTIONS(2881), - [anon_sym_BANGis] = ACTIONS(2881), - [anon_sym_in] = ACTIONS(2881), - [anon_sym_BANGin] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2881), - [anon_sym_select] = ACTIONS(2881), - [anon_sym_lock] = ACTIONS(2881), - [anon_sym_rlock] = ACTIONS(2881), - [anon_sym_unsafe] = ACTIONS(2881), - [anon_sym_sql] = ACTIONS(2881), - [sym_int_literal] = ACTIONS(2881), - [sym_float_literal] = ACTIONS(2881), - [sym_rune_literal] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_c_SQUOTE] = ACTIONS(2881), - [anon_sym_c_DQUOTE] = ACTIONS(2881), - [anon_sym_r_SQUOTE] = ACTIONS(2881), - [anon_sym_r_DQUOTE] = ACTIONS(2881), - [sym_pseudo_compile_time_identifier] = ACTIONS(2881), - [anon_sym_shared] = ACTIONS(2881), - [anon_sym_map_LBRACK] = ACTIONS(2881), - [anon_sym_chan] = ACTIONS(2881), - [anon_sym_thread] = ACTIONS(2881), - [anon_sym_atomic] = ACTIONS(2881), - [anon_sym_assert] = ACTIONS(2881), - [anon_sym_defer] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_DOLLARfor] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_POUND] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - }, - [1351] = { - [sym_line_comment] = STATE(1351), - [sym_block_comment] = STATE(1351), - [sym_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_CR] = ACTIONS(2387), - [anon_sym_CR_LF] = ACTIONS(2387), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2387), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2387), - [anon_sym_POUND_LBRACK] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_rune_literal] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_c_SQUOTE] = ACTIONS(2387), - [anon_sym_c_DQUOTE] = ACTIONS(2387), - [anon_sym_r_SQUOTE] = ACTIONS(2387), - [anon_sym_r_DQUOTE] = ACTIONS(2387), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2387), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), - [anon_sym_assert] = ACTIONS(2387), - [anon_sym_defer] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_DOLLARfor] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(2387), - [anon_sym_asm] = ACTIONS(2387), - }, - [1352] = { - [sym_line_comment] = STATE(1352), - [sym_block_comment] = STATE(1352), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LF] = ACTIONS(2637), - [anon_sym_CR] = ACTIONS(2637), - [anon_sym_CR_LF] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_AMP_CARET] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2637), - [anon_sym_POUND_LBRACK] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_rune_literal] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_c_SQUOTE] = ACTIONS(2637), - [anon_sym_c_DQUOTE] = ACTIONS(2637), - [anon_sym_r_SQUOTE] = ACTIONS(2637), - [anon_sym_r_DQUOTE] = ACTIONS(2637), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2637), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), - [anon_sym_assert] = ACTIONS(2637), - [anon_sym_defer] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_DOLLARfor] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - }, - [1353] = { - [sym_line_comment] = STATE(1353), - [sym_block_comment] = STATE(1353), - [sym_identifier] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_CR] = ACTIONS(2633), - [anon_sym_CR_LF] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_c_SQUOTE] = ACTIONS(2633), - [anon_sym_c_DQUOTE] = ACTIONS(2633), - [anon_sym_r_SQUOTE] = ACTIONS(2633), - [anon_sym_r_DQUOTE] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), - [anon_sym_assert] = ACTIONS(2633), - [anon_sym_defer] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_DOLLARfor] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - }, - [1354] = { - [sym_line_comment] = STATE(1354), - [sym_block_comment] = STATE(1354), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), - }, - [1355] = { - [sym_line_comment] = STATE(1355), - [sym_block_comment] = STATE(1355), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_CR] = ACTIONS(2627), - [anon_sym_CR_LF] = ACTIONS(2627), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_DOT] = ACTIONS(2627), - [anon_sym_as] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_COMMA] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_SLASH] = ACTIONS(2627), - [anon_sym_PERCENT] = ACTIONS(2627), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_GT] = ACTIONS(2627), - [anon_sym_EQ_EQ] = ACTIONS(2627), - [anon_sym_BANG_EQ] = ACTIONS(2627), - [anon_sym_LT_EQ] = ACTIONS(2627), - [anon_sym_GT_EQ] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_mut] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_go] = ACTIONS(2627), - [anon_sym_spawn] = ACTIONS(2627), - [anon_sym_json_DOTdecode] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_CARET] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_LT_DASH] = ACTIONS(2627), - [anon_sym_LT_LT] = ACTIONS(2627), - [anon_sym_GT_GT] = ACTIONS(2627), - [anon_sym_GT_GT_GT] = ACTIONS(2627), - [anon_sym_AMP_CARET] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_PIPE_PIPE] = ACTIONS(2627), - [anon_sym_or] = ACTIONS(2627), - [sym_none] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_nil] = ACTIONS(2627), - [anon_sym_QMARK_DOT] = ACTIONS(2627), - [anon_sym_POUND_LBRACK] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_DOLLARif] = ACTIONS(2627), - [anon_sym_is] = ACTIONS(2627), - [anon_sym_BANGis] = ACTIONS(2627), - [anon_sym_in] = ACTIONS(2627), - [anon_sym_BANGin] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_select] = ACTIONS(2627), - [anon_sym_lock] = ACTIONS(2627), - [anon_sym_rlock] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_sql] = ACTIONS(2627), - [sym_int_literal] = ACTIONS(2627), - [sym_float_literal] = ACTIONS(2627), - [sym_rune_literal] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_c_SQUOTE] = ACTIONS(2627), - [anon_sym_c_DQUOTE] = ACTIONS(2627), - [anon_sym_r_SQUOTE] = ACTIONS(2627), - [anon_sym_r_DQUOTE] = ACTIONS(2627), - [sym_pseudo_compile_time_identifier] = ACTIONS(2627), - [anon_sym_shared] = ACTIONS(2627), - [anon_sym_map_LBRACK] = ACTIONS(2627), - [anon_sym_chan] = ACTIONS(2627), - [anon_sym_thread] = ACTIONS(2627), - [anon_sym_atomic] = ACTIONS(2627), - [anon_sym_assert] = ACTIONS(2627), - [anon_sym_defer] = ACTIONS(2627), - [anon_sym_goto] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_DOLLARfor] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_POUND] = ACTIONS(2627), - [anon_sym_asm] = ACTIONS(2627), - }, - [1356] = { - [sym_line_comment] = STATE(1356), - [sym_block_comment] = STATE(1356), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LF] = ACTIONS(2373), - [anon_sym_CR] = ACTIONS(2373), - [anon_sym_CR_LF] = ACTIONS(2373), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_PERCENT] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2373), - [anon_sym_BANG_EQ] = ACTIONS(2373), - [anon_sym_LT_EQ] = ACTIONS(2373), - [anon_sym_GT_EQ] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_QMARK] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_go] = ACTIONS(2373), - [anon_sym_spawn] = ACTIONS(2373), - [anon_sym_json_DOTdecode] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_LBRACK2] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_DASH] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_GT_GT] = ACTIONS(2373), - [anon_sym_GT_GT_GT] = ACTIONS(2373), - [anon_sym_AMP_CARET] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_PIPE_PIPE] = ACTIONS(2373), - [anon_sym_or] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_nil] = ACTIONS(2373), - [anon_sym_QMARK_DOT] = ACTIONS(2373), - [anon_sym_POUND_LBRACK] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2373), - [anon_sym_is] = ACTIONS(2373), - [anon_sym_BANGis] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_BANGin] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_select] = ACTIONS(2373), - [anon_sym_lock] = ACTIONS(2373), - [anon_sym_rlock] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_sql] = ACTIONS(2373), - [sym_int_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_rune_literal] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [anon_sym_c_SQUOTE] = ACTIONS(2373), - [anon_sym_c_DQUOTE] = ACTIONS(2373), - [anon_sym_r_SQUOTE] = ACTIONS(2373), - [anon_sym_r_DQUOTE] = ACTIONS(2373), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2373), - [anon_sym_map_LBRACK] = ACTIONS(2373), - [anon_sym_chan] = ACTIONS(2373), - [anon_sym_thread] = ACTIONS(2373), - [anon_sym_atomic] = ACTIONS(2373), - [anon_sym_assert] = ACTIONS(2373), - [anon_sym_defer] = ACTIONS(2373), - [anon_sym_goto] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_DOLLARfor] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2373), - [anon_sym_asm] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [anon_sym_c_SQUOTE] = ACTIONS(3007), + [anon_sym_c_DQUOTE] = ACTIONS(3007), + [anon_sym_r_SQUOTE] = ACTIONS(3007), + [anon_sym_r_DQUOTE] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_defer] = ACTIONS(3007), + [anon_sym_goto] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_DOLLARfor] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_asm] = ACTIONS(3007), }, - [1357] = { - [sym_line_comment] = STATE(1357), - [sym_block_comment] = STATE(1357), + [1332] = { + [sym_line_comment] = STATE(1332), + [sym_block_comment] = STATE(1332), [sym_identifier] = ACTIONS(3027), [anon_sym_LF] = ACTIONS(3027), [anon_sym_CR] = ACTIONS(3027), @@ -175338,1624 +173201,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3027), [anon_sym_asm] = ACTIONS(3027), }, - [1358] = { - [sym_line_comment] = STATE(1358), - [sym_block_comment] = STATE(1358), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LF] = ACTIONS(3274), - [anon_sym_CR] = ACTIONS(3274), - [anon_sym_CR_LF] = ACTIONS(3274), + [1333] = { + [sym_line_comment] = STATE(1333), + [sym_block_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_PERCENT] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_GT] = ACTIONS(3274), - [anon_sym_EQ_EQ] = ACTIONS(3274), - [anon_sym_BANG_EQ] = ACTIONS(3274), - [anon_sym_LT_EQ] = ACTIONS(3274), - [anon_sym_GT_EQ] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3274), - [anon_sym_PIPE] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_CARET] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3274), - [anon_sym_LT_LT] = ACTIONS(3274), - [anon_sym_GT_GT] = ACTIONS(3274), - [anon_sym_GT_GT_GT] = ACTIONS(3274), - [anon_sym_AMP_CARET] = ACTIONS(3274), - [anon_sym_AMP_AMP] = ACTIONS(3274), - [anon_sym_PIPE_PIPE] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_QMARK_DOT] = ACTIONS(3274), - [anon_sym_POUND_LBRACK] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_is] = ACTIONS(3274), - [anon_sym_BANGis] = ACTIONS(3274), - [anon_sym_in] = ACTIONS(3274), - [anon_sym_BANGin] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3274), - [sym_rune_literal] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_c_SQUOTE] = ACTIONS(3274), - [anon_sym_c_DQUOTE] = ACTIONS(3274), - [anon_sym_r_SQUOTE] = ACTIONS(3274), - [anon_sym_r_DQUOTE] = ACTIONS(3274), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [anon_sym_map_LBRACK] = ACTIONS(3274), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), - [anon_sym_assert] = ACTIONS(3274), - [anon_sym_defer] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_DOLLARfor] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_POUND] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), }, - [1359] = { - [sym_line_comment] = STATE(1359), - [sym_block_comment] = STATE(1359), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [1334] = { + [sym_line_comment] = STATE(1334), + [sym_block_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - }, - [1360] = { - [sym_line_comment] = STATE(1360), - [sym_block_comment] = STATE(1360), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_mut] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_c_SQUOTE] = ACTIONS(2647), - [anon_sym_c_DQUOTE] = ACTIONS(2647), - [anon_sym_r_SQUOTE] = ACTIONS(2647), - [anon_sym_r_DQUOTE] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - [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), - }, - [1361] = { - [sym_line_comment] = STATE(1361), - [sym_block_comment] = STATE(1361), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_CR] = ACTIONS(2693), - [anon_sym_CR_LF] = ACTIONS(2693), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_EQ_EQ] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_GT_GT_GT] = ACTIONS(2693), - [anon_sym_AMP_CARET] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_PIPE_PIPE] = ACTIONS(2693), - [anon_sym_or] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2693), - [anon_sym_POUND_LBRACK] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - [sym_rune_literal] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_c_SQUOTE] = ACTIONS(2693), - [anon_sym_c_DQUOTE] = ACTIONS(2693), - [anon_sym_r_SQUOTE] = ACTIONS(2693), - [anon_sym_r_DQUOTE] = ACTIONS(2693), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_defer] = ACTIONS(2693), - [anon_sym_goto] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_DOLLARfor] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_asm] = ACTIONS(2693), - }, - [1362] = { - [sym_line_comment] = STATE(1362), - [sym_block_comment] = STATE(1362), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_GT_GT_GT] = ACTIONS(2451), - [anon_sym_AMP_CARET] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_or] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2451), - [anon_sym_POUND_LBRACK] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), - }, - [1363] = { - [sym_line_comment] = STATE(1363), - [sym_block_comment] = STATE(1363), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - }, - [1364] = { - [sym_line_comment] = STATE(1364), - [sym_block_comment] = STATE(1364), - [sym_identifier] = ACTIONS(3244), - [anon_sym_LF] = ACTIONS(3244), - [anon_sym_CR] = ACTIONS(3244), - [anon_sym_CR_LF] = ACTIONS(3244), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3244), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3244), - [anon_sym_POUND_LBRACK] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3244), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_c_SQUOTE] = ACTIONS(3244), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3244), - [anon_sym_r_DQUOTE] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3244), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), - [anon_sym_assert] = ACTIONS(3244), - [anon_sym_defer] = ACTIONS(3244), - [anon_sym_goto] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_DOLLARfor] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_asm] = ACTIONS(3244), - }, - [1365] = { - [sym_line_comment] = STATE(1365), - [sym_block_comment] = STATE(1365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), - }, - [1366] = { - [sym_line_comment] = STATE(1366), - [sym_block_comment] = STATE(1366), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_c_SQUOTE] = ACTIONS(2935), - [anon_sym_c_DQUOTE] = ACTIONS(2935), - [anon_sym_r_SQUOTE] = ACTIONS(2935), - [anon_sym_r_DQUOTE] = ACTIONS(2935), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - }, - [1367] = { - [sym_line_comment] = STATE(1367), - [sym_block_comment] = STATE(1367), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_or] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3080), - [anon_sym_POUND_LBRACK] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - [anon_sym_assert] = ACTIONS(3080), - [anon_sym_defer] = ACTIONS(3080), - [anon_sym_goto] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_DOLLARfor] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_asm] = ACTIONS(3080), - }, - [1368] = { - [sym_line_comment] = STATE(1368), - [sym_block_comment] = STATE(1368), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - }, - [1369] = { - [sym_line_comment] = STATE(1369), - [sym_block_comment] = STATE(1369), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - }, - [1370] = { - [sym_line_comment] = STATE(1370), - [sym_block_comment] = STATE(1370), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3340), - [anon_sym_AMP_CARET] = ACTIONS(3340), - [anon_sym_AMP_AMP] = ACTIONS(3340), - [anon_sym_PIPE_PIPE] = ACTIONS(3340), - [anon_sym_or] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_c_SQUOTE] = ACTIONS(3340), - [anon_sym_c_DQUOTE] = ACTIONS(3340), - [anon_sym_r_SQUOTE] = ACTIONS(3340), - [anon_sym_r_DQUOTE] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - }, - [1371] = { - [sym_line_comment] = STATE(1371), - [sym_block_comment] = STATE(1371), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - }, - [1372] = { - [sym_line_comment] = STATE(1372), - [sym_block_comment] = STATE(1372), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_COMMA] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3254), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3254), - [anon_sym_AMP_CARET] = ACTIONS(3254), - [anon_sym_AMP_AMP] = ACTIONS(3254), - [anon_sym_PIPE_PIPE] = ACTIONS(3254), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3254), - [anon_sym_POUND_LBRACK] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3254), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - }, - [1373] = { - [sym_line_comment] = STATE(1373), - [sym_block_comment] = STATE(1373), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_DOLLARfor] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_asm] = ACTIONS(2437), - }, - [1374] = { - [sym_line_comment] = STATE(1374), - [sym_block_comment] = STATE(1374), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LF] = ACTIONS(2957), - [anon_sym_CR] = ACTIONS(2957), - [anon_sym_CR_LF] = ACTIONS(2957), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_fn] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_mut] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_go] = ACTIONS(2957), - [anon_sym_spawn] = ACTIONS(2957), - [anon_sym_json_DOTdecode] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_LT_DASH] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2957), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_AMP_CARET] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2957), - [sym_none] = ACTIONS(2957), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_nil] = ACTIONS(2957), - [anon_sym_QMARK_DOT] = ACTIONS(2957), - [anon_sym_POUND_LBRACK] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_DOLLARif] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_BANGis] = ACTIONS(2957), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_BANGin] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2957), - [anon_sym_sql] = ACTIONS(2957), - [sym_int_literal] = ACTIONS(2957), - [sym_float_literal] = ACTIONS(2957), - [sym_rune_literal] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_c_SQUOTE] = ACTIONS(2957), - [anon_sym_c_DQUOTE] = ACTIONS(2957), - [anon_sym_r_SQUOTE] = ACTIONS(2957), - [anon_sym_r_DQUOTE] = ACTIONS(2957), - [sym_pseudo_compile_time_identifier] = ACTIONS(2957), - [anon_sym_shared] = ACTIONS(2957), - [anon_sym_map_LBRACK] = ACTIONS(2957), - [anon_sym_chan] = ACTIONS(2957), - [anon_sym_thread] = ACTIONS(2957), - [anon_sym_atomic] = ACTIONS(2957), - [anon_sym_assert] = ACTIONS(2957), - [anon_sym_defer] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_DOLLARfor] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_POUND] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), }, - [1375] = { - [sym_line_comment] = STATE(1375), - [sym_block_comment] = STATE(1375), + [1335] = { + [sym_line_comment] = STATE(1335), + [sym_block_comment] = STATE(1335), [sym_identifier] = ACTIONS(2977), [anon_sym_LF] = ACTIONS(2977), [anon_sym_CR] = ACTIONS(2977), @@ -177048,2483 +173486,1058 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2977), [anon_sym_asm] = ACTIONS(2977), }, - [1376] = { - [sym_line_comment] = STATE(1376), - [sym_block_comment] = STATE(1376), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), + [1336] = { + [sym_line_comment] = STATE(1336), + [sym_block_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3035), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - [anon_sym_assert] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_DOLLARfor] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_c_SQUOTE] = ACTIONS(3031), + [anon_sym_c_DQUOTE] = ACTIONS(3031), + [anon_sym_r_SQUOTE] = ACTIONS(3031), + [anon_sym_r_DQUOTE] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), }, - [1377] = { - [sym_line_comment] = STATE(1377), - [sym_block_comment] = STATE(1377), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), + [1337] = { + [sym_line_comment] = STATE(1337), + [sym_block_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_c_SQUOTE] = ACTIONS(2869), - [anon_sym_c_DQUOTE] = ACTIONS(2869), - [anon_sym_r_SQUOTE] = ACTIONS(2869), - [anon_sym_r_DQUOTE] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3041), + [anon_sym_AMP_CARET] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_PIPE_PIPE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), }, - [1378] = { - [sym_line_comment] = STATE(1378), - [sym_block_comment] = STATE(1378), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [1338] = { + [sym_line_comment] = STATE(1338), + [sym_block_comment] = STATE(1338), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - [anon_sym_assert] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_DOLLARfor] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), }, - [1379] = { - [sym_line_comment] = STATE(1379), - [sym_block_comment] = STATE(1379), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LF] = ACTIONS(3039), - [anon_sym_CR] = ACTIONS(3039), - [anon_sym_CR_LF] = ACTIONS(3039), + [1339] = { + [sym_line_comment] = STATE(1339), + [sym_block_comment] = STATE(1339), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [anon_sym_c_SQUOTE] = ACTIONS(3039), - [anon_sym_c_DQUOTE] = ACTIONS(3039), - [anon_sym_r_SQUOTE] = ACTIONS(3039), - [anon_sym_r_DQUOTE] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), - [anon_sym_assert] = ACTIONS(3039), - [anon_sym_defer] = ACTIONS(3039), - [anon_sym_goto] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_DOLLARfor] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_asm] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_c_SQUOTE] = ACTIONS(2829), + [anon_sym_c_DQUOTE] = ACTIONS(2829), + [anon_sym_r_SQUOTE] = ACTIONS(2829), + [anon_sym_r_DQUOTE] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), }, - [1380] = { - [sym_line_comment] = STATE(1380), - [sym_block_comment] = STATE(1380), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LF] = ACTIONS(3262), - [anon_sym_CR] = ACTIONS(3262), - [anon_sym_CR_LF] = ACTIONS(3262), + [1340] = { + [sym_line_comment] = STATE(1340), + [sym_block_comment] = STATE(1340), + [sym_reference_expression] = STATE(4601), + [sym_type_reference_expression] = STATE(1730), + [sym_plain_type] = STATE(1870), + [sym__plain_type_without_special] = STATE(1875), + [sym_anon_struct_type] = STATE(1881), + [sym_multi_return_type] = STATE(1875), + [sym_result_type] = STATE(1875), + [sym_option_type] = STATE(1875), + [sym_qualified_type] = STATE(1730), + [sym_fixed_array_type] = STATE(1881), + [sym_array_type] = STATE(1881), + [sym_pointer_type] = STATE(1881), + [sym_wrong_pointer_type] = STATE(1881), + [sym_map_type] = STATE(1881), + [sym_channel_type] = STATE(1881), + [sym_shared_type] = STATE(1881), + [sym_thread_type] = STATE(1881), + [sym_atomic_type] = STATE(1881), + [sym_generic_type] = STATE(1881), + [sym_function_type] = STATE(1881), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_fn] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_mut] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_go] = ACTIONS(3262), - [anon_sym_spawn] = ACTIONS(3262), - [anon_sym_json_DOTdecode] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_LBRACK2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_GT_GT_GT] = ACTIONS(3262), - [anon_sym_AMP_CARET] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_or] = ACTIONS(3262), - [sym_none] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_nil] = ACTIONS(3262), - [anon_sym_QMARK_DOT] = ACTIONS(3262), - [anon_sym_POUND_LBRACK] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_DOLLARif] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_BANGis] = ACTIONS(3262), - [anon_sym_in] = ACTIONS(3262), - [anon_sym_BANGin] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_select] = ACTIONS(3262), - [anon_sym_lock] = ACTIONS(3262), - [anon_sym_rlock] = ACTIONS(3262), - [anon_sym_unsafe] = ACTIONS(3262), - [anon_sym_sql] = ACTIONS(3262), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(3262), - [sym_rune_literal] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_c_SQUOTE] = ACTIONS(3262), - [anon_sym_c_DQUOTE] = ACTIONS(3262), - [anon_sym_r_SQUOTE] = ACTIONS(3262), - [anon_sym_r_DQUOTE] = ACTIONS(3262), - [sym_pseudo_compile_time_identifier] = ACTIONS(3262), - [anon_sym_shared] = ACTIONS(3262), - [anon_sym_map_LBRACK] = ACTIONS(3262), - [anon_sym_chan] = ACTIONS(3262), - [anon_sym_thread] = ACTIONS(3262), - [anon_sym_atomic] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_defer] = ACTIONS(3262), - [anon_sym_goto] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_DOLLARfor] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_POUND] = ACTIONS(3262), - [anon_sym_asm] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym___global] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_interface] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_go] = ACTIONS(859), + [anon_sym_spawn] = ACTIONS(859), + [anon_sym_json_DOTdecode] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_LT_DASH] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_nil] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_DOLLARif] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_select] = ACTIONS(859), + [anon_sym_lock] = ACTIONS(859), + [anon_sym_rlock] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_sql] = ACTIONS(859), + [sym_int_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_rune_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_c_SQUOTE] = ACTIONS(859), + [anon_sym_c_DQUOTE] = ACTIONS(859), + [anon_sym_r_SQUOTE] = ACTIONS(859), + [anon_sym_r_DQUOTE] = ACTIONS(859), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4086), + [anon_sym_chan] = ACTIONS(4088), + [anon_sym_thread] = ACTIONS(4090), + [anon_sym_atomic] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_goto] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_DOLLARfor] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_asm] = ACTIONS(859), + [anon_sym_AT_LBRACK] = ACTIONS(859), }, - [1381] = { - [sym_line_comment] = STATE(1381), - [sym_block_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LF] = ACTIONS(3278), - [anon_sym_CR] = ACTIONS(3278), - [anon_sym_CR_LF] = ACTIONS(3278), + [1341] = { + [sym_line_comment] = STATE(1341), + [sym_block_comment] = STATE(1341), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3278), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3278), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3278), - [anon_sym_POUND_LBRACK] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3278), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3278), - [sym_rune_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_c_SQUOTE] = ACTIONS(3278), - [anon_sym_c_DQUOTE] = ACTIONS(3278), - [anon_sym_r_SQUOTE] = ACTIONS(3278), - [anon_sym_r_DQUOTE] = ACTIONS(3278), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3278), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_defer] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_DOLLARfor] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_asm] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), }, - [1382] = { - [sym_line_comment] = STATE(1382), - [sym_block_comment] = STATE(1382), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), + [1342] = { + [sym_line_comment] = STATE(1342), + [sym_block_comment] = STATE(1342), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [anon_sym_EQ_EQ] = ACTIONS(3332), - [anon_sym_BANG_EQ] = ACTIONS(3332), - [anon_sym_LT_EQ] = ACTIONS(3332), - [anon_sym_GT_EQ] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3332), - [anon_sym_GT_GT] = ACTIONS(3332), - [anon_sym_GT_GT_GT] = ACTIONS(3332), - [anon_sym_AMP_CARET] = ACTIONS(3332), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_PIPE_PIPE] = ACTIONS(3332), - [anon_sym_or] = ACTIONS(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3332), - [anon_sym_POUND_LBRACK] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3332), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_c_SQUOTE] = ACTIONS(3332), - [anon_sym_c_DQUOTE] = ACTIONS(3332), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [anon_sym_assert] = ACTIONS(3332), - [anon_sym_defer] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_DOLLARfor] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), }, - [1383] = { - [sym_line_comment] = STATE(1383), - [sym_block_comment] = STATE(1383), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [1343] = { + [sym_line_comment] = STATE(1343), + [sym_block_comment] = STATE(1343), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LF] = ACTIONS(2823), + [anon_sym_CR] = ACTIONS(2823), + [anon_sym_CR_LF] = ACTIONS(2823), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_c_SQUOTE] = ACTIONS(2909), - [anon_sym_c_DQUOTE] = ACTIONS(2909), - [anon_sym_r_SQUOTE] = ACTIONS(2909), - [anon_sym_r_DQUOTE] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_as] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_COMMA] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2823), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_mut] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_QMARK] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_go] = ACTIONS(2823), + [anon_sym_spawn] = ACTIONS(2823), + [anon_sym_json_DOTdecode] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2823), + [anon_sym_LBRACK2] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_CARET] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2823), + [anon_sym_LT_LT] = ACTIONS(2823), + [anon_sym_GT_GT] = ACTIONS(2823), + [anon_sym_GT_GT_GT] = ACTIONS(2823), + [anon_sym_AMP_CARET] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_or] = ACTIONS(2823), + [sym_none] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_nil] = ACTIONS(2823), + [anon_sym_QMARK_DOT] = ACTIONS(2823), + [anon_sym_POUND_LBRACK] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_DOLLARif] = ACTIONS(2823), + [anon_sym_is] = ACTIONS(2823), + [anon_sym_BANGis] = ACTIONS(2823), + [anon_sym_in] = ACTIONS(2823), + [anon_sym_BANGin] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2823), + [anon_sym_rlock] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_sql] = ACTIONS(2823), + [sym_int_literal] = ACTIONS(2823), + [sym_float_literal] = ACTIONS(2823), + [sym_rune_literal] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [anon_sym_c_SQUOTE] = ACTIONS(2823), + [anon_sym_c_DQUOTE] = ACTIONS(2823), + [anon_sym_r_SQUOTE] = ACTIONS(2823), + [anon_sym_r_DQUOTE] = ACTIONS(2823), + [sym_pseudo_compile_time_identifier] = ACTIONS(2823), + [anon_sym_shared] = ACTIONS(2823), + [anon_sym_map_LBRACK] = ACTIONS(2823), + [anon_sym_chan] = ACTIONS(2823), + [anon_sym_thread] = ACTIONS(2823), + [anon_sym_atomic] = ACTIONS(2823), + [anon_sym_assert] = ACTIONS(2823), + [anon_sym_defer] = ACTIONS(2823), + [anon_sym_goto] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_DOLLARfor] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_POUND] = ACTIONS(2823), + [anon_sym_asm] = ACTIONS(2823), }, - [1384] = { - [sym_line_comment] = STATE(1384), - [sym_block_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [1344] = { + [sym_line_comment] = STATE(1344), + [sym_block_comment] = STATE(1344), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LF] = ACTIONS(3286), + [anon_sym_CR] = ACTIONS(3286), + [anon_sym_CR_LF] = ACTIONS(3286), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - [anon_sym_assert] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_DOLLARfor] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_asm] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_QMARK] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_go] = ACTIONS(3286), + [anon_sym_spawn] = ACTIONS(3286), + [anon_sym_json_DOTdecode] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LBRACK2] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_LT_DASH] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_or] = ACTIONS(3286), + [sym_none] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_nil] = ACTIONS(3286), + [anon_sym_QMARK_DOT] = ACTIONS(3286), + [anon_sym_POUND_LBRACK] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_DOLLARif] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_select] = ACTIONS(3286), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3286), + [anon_sym_sql] = ACTIONS(3286), + [sym_int_literal] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3286), + [sym_rune_literal] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_c_SQUOTE] = ACTIONS(3286), + [anon_sym_c_DQUOTE] = ACTIONS(3286), + [anon_sym_r_SQUOTE] = ACTIONS(3286), + [anon_sym_r_DQUOTE] = ACTIONS(3286), + [sym_pseudo_compile_time_identifier] = ACTIONS(3286), + [anon_sym_shared] = ACTIONS(3286), + [anon_sym_map_LBRACK] = ACTIONS(3286), + [anon_sym_chan] = ACTIONS(3286), + [anon_sym_thread] = ACTIONS(3286), + [anon_sym_atomic] = ACTIONS(3286), + [anon_sym_assert] = ACTIONS(3286), + [anon_sym_defer] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_DOLLARfor] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), }, - [1385] = { - [sym_line_comment] = STATE(1385), - [sym_block_comment] = STATE(1385), - [sym_identifier] = ACTIONS(2917), - [anon_sym_LF] = ACTIONS(2917), - [anon_sym_CR] = ACTIONS(2917), - [anon_sym_CR_LF] = ACTIONS(2917), + [1345] = { + [sym_line_comment] = STATE(1345), + [sym_block_comment] = STATE(1345), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_CR] = ACTIONS(2377), + [anon_sym_CR_LF] = ACTIONS(2377), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_c_SQUOTE] = ACTIONS(2917), - [anon_sym_c_DQUOTE] = ACTIONS(2917), - [anon_sym_r_SQUOTE] = ACTIONS(2917), - [anon_sym_r_DQUOTE] = ACTIONS(2917), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_defer] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_DOLLARfor] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_POUND] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2377), + [anon_sym_defer] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_DOLLARfor] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), }, - [1386] = { - [sym_line_comment] = STATE(1386), - [sym_block_comment] = STATE(1386), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), + [1346] = { + [sym_line_comment] = STATE(1346), + [sym_block_comment] = STATE(1346), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3280), + [anon_sym_CR] = ACTIONS(3280), + [anon_sym_CR_LF] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [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(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [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(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3280), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3280), + [anon_sym_AMP_CARET] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3280), + [anon_sym_POUND_LBRACK] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3280), + [sym_rune_literal] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_c_SQUOTE] = ACTIONS(3280), + [anon_sym_c_DQUOTE] = ACTIONS(3280), + [anon_sym_r_SQUOTE] = ACTIONS(3280), + [anon_sym_r_DQUOTE] = ACTIONS(3280), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3280), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), + [anon_sym_assert] = ACTIONS(3280), + [anon_sym_defer] = ACTIONS(3280), + [anon_sym_goto] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_DOLLARfor] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3280), + [anon_sym_asm] = ACTIONS(3280), }, - [1387] = { - [sym_line_comment] = STATE(1387), - [sym_block_comment] = STATE(1387), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_CR] = ACTIONS(3346), - [anon_sym_CR_LF] = ACTIONS(3346), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_fn] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_mut] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_go] = ACTIONS(3346), - [anon_sym_spawn] = ACTIONS(3346), - [anon_sym_json_DOTdecode] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3346), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_or] = ACTIONS(3346), - [sym_none] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_nil] = ACTIONS(3346), - [anon_sym_QMARK_DOT] = ACTIONS(3346), - [anon_sym_POUND_LBRACK] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3346), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_select] = ACTIONS(3346), - [anon_sym_lock] = ACTIONS(3346), - [anon_sym_rlock] = ACTIONS(3346), - [anon_sym_unsafe] = ACTIONS(3346), - [anon_sym_sql] = ACTIONS(3346), - [sym_int_literal] = ACTIONS(3346), - [sym_float_literal] = ACTIONS(3346), - [sym_rune_literal] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_c_SQUOTE] = ACTIONS(3346), - [anon_sym_c_DQUOTE] = ACTIONS(3346), - [anon_sym_r_SQUOTE] = ACTIONS(3346), - [anon_sym_r_DQUOTE] = ACTIONS(3346), - [sym_pseudo_compile_time_identifier] = ACTIONS(3346), - [anon_sym_shared] = ACTIONS(3346), - [anon_sym_map_LBRACK] = ACTIONS(3346), - [anon_sym_chan] = ACTIONS(3346), - [anon_sym_thread] = ACTIONS(3346), - [anon_sym_atomic] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_defer] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_DOLLARfor] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_POUND] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - }, - [1388] = { - [sym_line_comment] = STATE(1388), - [sym_block_comment] = STATE(1388), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LF] = ACTIONS(3324), - [anon_sym_CR] = ACTIONS(3324), - [anon_sym_CR_LF] = ACTIONS(3324), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_as] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_fn] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_EQ_EQ] = ACTIONS(3324), - [anon_sym_BANG_EQ] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_mut] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_go] = ACTIONS(3324), - [anon_sym_spawn] = ACTIONS(3324), - [anon_sym_json_DOTdecode] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_LBRACK2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_LT_DASH] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3324), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3324), - [anon_sym_AMP_CARET] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_PIPE_PIPE] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(3324), - [sym_none] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_nil] = ACTIONS(3324), - [anon_sym_QMARK_DOT] = ACTIONS(3324), - [anon_sym_POUND_LBRACK] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3324), - [anon_sym_is] = ACTIONS(3324), - [anon_sym_BANGis] = ACTIONS(3324), - [anon_sym_in] = ACTIONS(3324), - [anon_sym_BANGin] = ACTIONS(3324), - [anon_sym_match] = ACTIONS(3324), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3324), - [anon_sym_rlock] = ACTIONS(3324), - [anon_sym_unsafe] = ACTIONS(3324), - [anon_sym_sql] = ACTIONS(3324), - [sym_int_literal] = ACTIONS(3324), - [sym_float_literal] = ACTIONS(3324), - [sym_rune_literal] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_c_SQUOTE] = ACTIONS(3324), - [anon_sym_c_DQUOTE] = ACTIONS(3324), - [anon_sym_r_SQUOTE] = ACTIONS(3324), - [anon_sym_r_DQUOTE] = ACTIONS(3324), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(3324), - [anon_sym_map_LBRACK] = ACTIONS(3324), - [anon_sym_chan] = ACTIONS(3324), - [anon_sym_thread] = ACTIONS(3324), - [anon_sym_atomic] = ACTIONS(3324), - [anon_sym_assert] = ACTIONS(3324), - [anon_sym_defer] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_DOLLARfor] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3324), - [anon_sym_asm] = ACTIONS(3324), - }, - [1389] = { - [sym_line_comment] = STATE(1389), - [sym_block_comment] = STATE(1389), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_c_SQUOTE] = ACTIONS(3074), - [anon_sym_c_DQUOTE] = ACTIONS(3074), - [anon_sym_r_SQUOTE] = ACTIONS(3074), - [anon_sym_r_DQUOTE] = ACTIONS(3074), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - }, - [1390] = { - [sym_line_comment] = STATE(1390), - [sym_block_comment] = STATE(1390), - [sym_identifier] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_CR] = ACTIONS(2921), - [anon_sym_CR_LF] = ACTIONS(2921), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_BANG_EQ] = ACTIONS(2921), - [anon_sym_LT_EQ] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_GT_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_CARET] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_or] = ACTIONS(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_c_SQUOTE] = ACTIONS(2921), - [anon_sym_c_DQUOTE] = ACTIONS(2921), - [anon_sym_r_SQUOTE] = ACTIONS(2921), - [anon_sym_r_DQUOTE] = ACTIONS(2921), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), - [anon_sym_assert] = ACTIONS(2921), - [anon_sym_defer] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_DOLLARfor] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_POUND] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - }, - [1391] = { - [sym_line_comment] = STATE(1391), - [sym_block_comment] = STATE(1391), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [anon_sym_c_SQUOTE] = ACTIONS(2981), - [anon_sym_c_DQUOTE] = ACTIONS(2981), - [anon_sym_r_SQUOTE] = ACTIONS(2981), - [anon_sym_r_DQUOTE] = ACTIONS(2981), - [sym_pseudo_compile_time_identifier] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - }, - [1392] = { - [sym_line_comment] = STATE(1392), - [sym_block_comment] = STATE(1392), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(2985), - [anon_sym_c_SQUOTE] = ACTIONS(2985), - [anon_sym_c_DQUOTE] = ACTIONS(2985), - [anon_sym_r_SQUOTE] = ACTIONS(2985), - [anon_sym_r_DQUOTE] = ACTIONS(2985), - [sym_pseudo_compile_time_identifier] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - }, - [1393] = { - [sym_line_comment] = STATE(1393), - [sym_block_comment] = STATE(1393), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [anon_sym_c_SQUOTE] = ACTIONS(2993), - [anon_sym_c_DQUOTE] = ACTIONS(2993), - [anon_sym_r_SQUOTE] = ACTIONS(2993), - [anon_sym_r_DQUOTE] = ACTIONS(2993), - [sym_pseudo_compile_time_identifier] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - }, - [1394] = { - [sym_line_comment] = STATE(1394), - [sym_block_comment] = STATE(1394), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - [anon_sym_assert] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_goto] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_DOLLARfor] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_asm] = ACTIONS(3031), - }, - [1395] = { - [sym_line_comment] = STATE(1395), - [sym_block_comment] = STATE(1395), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_c_SQUOTE] = ACTIONS(2965), - [anon_sym_c_DQUOTE] = ACTIONS(2965), - [anon_sym_r_SQUOTE] = ACTIONS(2965), - [anon_sym_r_DQUOTE] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - }, - [1396] = { - [sym_line_comment] = STATE(1396), - [sym_block_comment] = STATE(1396), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_c_SQUOTE] = ACTIONS(2459), - [anon_sym_c_DQUOTE] = ACTIONS(2459), - [anon_sym_r_SQUOTE] = ACTIONS(2459), - [anon_sym_r_DQUOTE] = 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), - }, - [1397] = { - [sym_line_comment] = STATE(1397), - [sym_block_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - }, - [1398] = { - [sym_line_comment] = STATE(1398), - [sym_block_comment] = STATE(1398), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_CR] = ACTIONS(2953), - [anon_sym_CR_LF] = ACTIONS(2953), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_c_SQUOTE] = ACTIONS(2953), - [anon_sym_c_DQUOTE] = ACTIONS(2953), - [anon_sym_r_SQUOTE] = ACTIONS(2953), - [anon_sym_r_DQUOTE] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_defer] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_DOLLARfor] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_POUND] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - }, - [1399] = { - [sym_line_comment] = STATE(1399), - [sym_block_comment] = STATE(1399), - [sym_identifier] = ACTIONS(2845), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_CR] = ACTIONS(2845), - [anon_sym_CR_LF] = ACTIONS(2845), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_as] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_PERCENT] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ] = ACTIONS(2845), - [anon_sym_LT_EQ] = ACTIONS(2845), - [anon_sym_GT_EQ] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_mut] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_go] = ACTIONS(2845), - [anon_sym_spawn] = ACTIONS(2845), - [anon_sym_json_DOTdecode] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_CARET] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_LT_DASH] = ACTIONS(2845), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(2845), - [anon_sym_GT_GT_GT] = ACTIONS(2845), - [anon_sym_AMP_CARET] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [sym_none] = ACTIONS(2845), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_nil] = ACTIONS(2845), - [anon_sym_QMARK_DOT] = ACTIONS(2845), - [anon_sym_POUND_LBRACK] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_DOLLARif] = ACTIONS(2845), - [anon_sym_is] = ACTIONS(2845), - [anon_sym_BANGis] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2845), - [anon_sym_BANGin] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_select] = ACTIONS(2845), - [anon_sym_lock] = ACTIONS(2845), - [anon_sym_rlock] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_sql] = ACTIONS(2845), - [sym_int_literal] = ACTIONS(2845), - [sym_float_literal] = ACTIONS(2845), - [sym_rune_literal] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [anon_sym_c_SQUOTE] = ACTIONS(2845), - [anon_sym_c_DQUOTE] = ACTIONS(2845), - [anon_sym_r_SQUOTE] = ACTIONS(2845), - [anon_sym_r_DQUOTE] = ACTIONS(2845), - [sym_pseudo_compile_time_identifier] = ACTIONS(2845), - [anon_sym_shared] = ACTIONS(2845), - [anon_sym_map_LBRACK] = ACTIONS(2845), - [anon_sym_chan] = ACTIONS(2845), - [anon_sym_thread] = ACTIONS(2845), - [anon_sym_atomic] = ACTIONS(2845), - [anon_sym_assert] = ACTIONS(2845), - [anon_sym_defer] = ACTIONS(2845), - [anon_sym_goto] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_DOLLARfor] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_asm] = ACTIONS(2845), - }, - [1400] = { - [sym_line_comment] = STATE(1400), - [sym_block_comment] = STATE(1400), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [anon_sym_c_SQUOTE] = ACTIONS(2865), - [anon_sym_c_DQUOTE] = ACTIONS(2865), - [anon_sym_r_SQUOTE] = ACTIONS(2865), - [anon_sym_r_DQUOTE] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - }, - [1401] = { - [sym_line_comment] = STATE(1401), - [sym_block_comment] = STATE(1401), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_c_SQUOTE] = ACTIONS(2913), - [anon_sym_c_DQUOTE] = ACTIONS(2913), - [anon_sym_r_SQUOTE] = ACTIONS(2913), - [anon_sym_r_DQUOTE] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - }, - [1402] = { - [sym_line_comment] = STATE(1402), - [sym_block_comment] = STATE(1402), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2841), - [anon_sym_CR] = ACTIONS(2841), - [anon_sym_CR_LF] = ACTIONS(2841), + [1347] = { + [sym_line_comment] = STATE(1347), + [sym_block_comment] = STATE(1347), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_SEMI] = ACTIONS(2841), @@ -179613,6543 +174626,7850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2841), [anon_sym_asm] = ACTIONS(2841), }, - [1403] = { - [sym_line_comment] = STATE(1403), - [sym_block_comment] = STATE(1403), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), + [1348] = { + [sym_line_comment] = STATE(1348), + [sym_block_comment] = STATE(1348), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LF] = ACTIONS(2951), + [anon_sym_CR] = ACTIONS(2951), + [anon_sym_CR_LF] = ACTIONS(2951), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_c_SQUOTE] = ACTIONS(2997), - [anon_sym_c_DQUOTE] = ACTIONS(2997), - [anon_sym_r_SQUOTE] = ACTIONS(2997), - [anon_sym_r_DQUOTE] = ACTIONS(2997), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - }, - [1404] = { - [sym_line_comment] = STATE(1404), - [sym_block_comment] = STATE(1404), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - }, - [1405] = { - [sym_line_comment] = STATE(1405), - [sym_block_comment] = STATE(1405), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [anon_sym_c_SQUOTE] = ACTIONS(2931), - [anon_sym_c_DQUOTE] = ACTIONS(2931), - [anon_sym_r_SQUOTE] = ACTIONS(2931), - [anon_sym_r_DQUOTE] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_c_SQUOTE] = ACTIONS(2951), + [anon_sym_c_DQUOTE] = ACTIONS(2951), + [anon_sym_r_SQUOTE] = ACTIONS(2951), + [anon_sym_r_DQUOTE] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), + [anon_sym_assert] = ACTIONS(2951), + [anon_sym_defer] = ACTIONS(2951), + [anon_sym_goto] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_DOLLARfor] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_asm] = ACTIONS(2951), }, - [1406] = { - [sym_line_comment] = STATE(1406), - [sym_block_comment] = STATE(1406), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), + [1349] = { + [sym_line_comment] = STATE(1349), + [sym_block_comment] = STATE(1349), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_COMMA] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2433), - [anon_sym_AMP_CARET] = ACTIONS(2433), - [anon_sym_AMP_AMP] = ACTIONS(2433), - [anon_sym_PIPE_PIPE] = ACTIONS(2433), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2433), - [anon_sym_POUND_LBRACK] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), }, - [1407] = { - [sym_line_comment] = STATE(1407), - [sym_block_comment] = STATE(1407), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LF] = ACTIONS(3266), - [anon_sym_CR] = ACTIONS(3266), - [anon_sym_CR_LF] = ACTIONS(3266), + [1350] = { + [sym_line_comment] = STATE(1350), + [sym_block_comment] = STATE(1350), + [sym_identifier] = ACTIONS(2881), + [anon_sym_LF] = ACTIONS(2881), + [anon_sym_CR] = ACTIONS(2881), + [anon_sym_CR_LF] = ACTIONS(2881), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_as] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_fn] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_PERCENT] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_GT] = ACTIONS(3266), - [anon_sym_EQ_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_mut] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_go] = ACTIONS(3266), - [anon_sym_spawn] = ACTIONS(3266), - [anon_sym_json_DOTdecode] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_LBRACK2] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_LT_DASH] = ACTIONS(3266), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_GT_GT_GT] = ACTIONS(3266), - [anon_sym_AMP_CARET] = ACTIONS(3266), - [anon_sym_AMP_AMP] = ACTIONS(3266), - [anon_sym_PIPE_PIPE] = ACTIONS(3266), - [anon_sym_or] = ACTIONS(3266), - [sym_none] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_nil] = ACTIONS(3266), - [anon_sym_QMARK_DOT] = ACTIONS(3266), - [anon_sym_POUND_LBRACK] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_DOLLARif] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_BANGis] = ACTIONS(3266), - [anon_sym_in] = ACTIONS(3266), - [anon_sym_BANGin] = ACTIONS(3266), - [anon_sym_match] = ACTIONS(3266), - [anon_sym_select] = ACTIONS(3266), - [anon_sym_lock] = ACTIONS(3266), - [anon_sym_rlock] = ACTIONS(3266), - [anon_sym_unsafe] = ACTIONS(3266), - [anon_sym_sql] = ACTIONS(3266), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(3266), - [sym_rune_literal] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_c_SQUOTE] = ACTIONS(3266), - [anon_sym_c_DQUOTE] = ACTIONS(3266), - [anon_sym_r_SQUOTE] = ACTIONS(3266), - [anon_sym_r_DQUOTE] = ACTIONS(3266), - [sym_pseudo_compile_time_identifier] = ACTIONS(3266), - [anon_sym_shared] = ACTIONS(3266), - [anon_sym_map_LBRACK] = ACTIONS(3266), - [anon_sym_chan] = ACTIONS(3266), - [anon_sym_thread] = ACTIONS(3266), - [anon_sym_atomic] = ACTIONS(3266), - [anon_sym_assert] = ACTIONS(3266), - [anon_sym_defer] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_DOLLARfor] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_DOT] = ACTIONS(2881), + [anon_sym_as] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_fn] = ACTIONS(2881), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_GT] = ACTIONS(2881), + [anon_sym_EQ_EQ] = ACTIONS(2881), + [anon_sym_BANG_EQ] = ACTIONS(2881), + [anon_sym_LT_EQ] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2881), + [anon_sym_mut] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_go] = ACTIONS(2881), + [anon_sym_spawn] = ACTIONS(2881), + [anon_sym_json_DOTdecode] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_LBRACK2] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_LT_DASH] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2881), + [anon_sym_GT_GT] = ACTIONS(2881), + [anon_sym_GT_GT_GT] = ACTIONS(2881), + [anon_sym_AMP_CARET] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_PIPE_PIPE] = ACTIONS(2881), + [anon_sym_or] = ACTIONS(2881), + [sym_none] = ACTIONS(2881), + [sym_true] = ACTIONS(2881), + [sym_false] = ACTIONS(2881), + [sym_nil] = ACTIONS(2881), + [anon_sym_QMARK_DOT] = ACTIONS(2881), + [anon_sym_POUND_LBRACK] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_DOLLARif] = ACTIONS(2881), + [anon_sym_is] = ACTIONS(2881), + [anon_sym_BANGis] = ACTIONS(2881), + [anon_sym_in] = ACTIONS(2881), + [anon_sym_BANGin] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(2881), + [anon_sym_select] = ACTIONS(2881), + [anon_sym_lock] = ACTIONS(2881), + [anon_sym_rlock] = ACTIONS(2881), + [anon_sym_unsafe] = ACTIONS(2881), + [anon_sym_sql] = ACTIONS(2881), + [sym_int_literal] = ACTIONS(2881), + [sym_float_literal] = ACTIONS(2881), + [sym_rune_literal] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [anon_sym_c_SQUOTE] = ACTIONS(2881), + [anon_sym_c_DQUOTE] = ACTIONS(2881), + [anon_sym_r_SQUOTE] = ACTIONS(2881), + [anon_sym_r_DQUOTE] = ACTIONS(2881), + [sym_pseudo_compile_time_identifier] = ACTIONS(2881), + [anon_sym_shared] = ACTIONS(2881), + [anon_sym_map_LBRACK] = ACTIONS(2881), + [anon_sym_chan] = ACTIONS(2881), + [anon_sym_thread] = ACTIONS(2881), + [anon_sym_atomic] = ACTIONS(2881), + [anon_sym_assert] = ACTIONS(2881), + [anon_sym_defer] = ACTIONS(2881), + [anon_sym_goto] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_DOLLARfor] = ACTIONS(2881), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_POUND] = ACTIONS(2881), + [anon_sym_asm] = ACTIONS(2881), }, - [1408] = { - [sym_line_comment] = STATE(1408), - [sym_block_comment] = STATE(1408), - [aux_sym_strictly_expression_list_repeat1] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2043), - [anon_sym_CR] = ACTIONS(2043), - [anon_sym_CR_LF] = ACTIONS(2043), + [1351] = { + [sym_line_comment] = STATE(1351), + [sym_block_comment] = STATE(1351), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2045), - [anon_sym___global] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_interface] = ACTIONS(2043), - [anon_sym_QMARK] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_go] = ACTIONS(2043), - [anon_sym_spawn] = ACTIONS(2043), - [anon_sym_json_DOTdecode] = ACTIONS(2043), - [anon_sym_LBRACK2] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_LT_DASH] = ACTIONS(2043), - [sym_none] = ACTIONS(2043), - [sym_true] = ACTIONS(2043), - [sym_false] = ACTIONS(2043), - [sym_nil] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_DOLLARif] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_select] = ACTIONS(2043), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_PERCENT_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP_EQ] = ACTIONS(2045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2045), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_PIPE_EQ] = ACTIONS(2045), - [anon_sym_CARET_EQ] = ACTIONS(2045), - [anon_sym_COLON_EQ] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2043), - [anon_sym_rlock] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_sql] = ACTIONS(2043), - [sym_int_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - [sym_rune_literal] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_c_SQUOTE] = ACTIONS(2043), - [anon_sym_c_DQUOTE] = ACTIONS(2043), - [anon_sym_r_SQUOTE] = ACTIONS(2043), - [anon_sym_r_DQUOTE] = ACTIONS(2043), - [sym_pseudo_compile_time_identifier] = ACTIONS(2043), - [anon_sym_shared] = ACTIONS(2043), - [anon_sym_map_LBRACK] = ACTIONS(2043), - [anon_sym_chan] = ACTIONS(2043), - [anon_sym_thread] = ACTIONS(2043), - [anon_sym_atomic] = ACTIONS(2043), - [anon_sym_assert] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_goto] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_DOLLARfor] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_asm] = ACTIONS(2043), - [anon_sym_AT_LBRACK] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), }, - [1409] = { - [sym_line_comment] = STATE(1409), - [sym_block_comment] = STATE(1409), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1352] = { + [sym_line_comment] = STATE(1352), + [sym_block_comment] = STATE(1352), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), }, - [1410] = { - [sym_line_comment] = STATE(1410), - [sym_block_comment] = STATE(1410), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2065), - [anon_sym_LF] = ACTIONS(2065), - [anon_sym_CR] = ACTIONS(2065), - [anon_sym_CR_LF] = ACTIONS(2065), + [1353] = { + [sym_line_comment] = STATE(1353), + [sym_block_comment] = STATE(1353), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_COMMA] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2065), - [anon_sym_spawn] = ACTIONS(2065), - [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2065), - [anon_sym_AMP_CARET] = ACTIONS(2065), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2065), - [sym_none] = ACTIONS(2065), - [sym_true] = ACTIONS(2065), - [sym_false] = ACTIONS(2065), - [sym_nil] = ACTIONS(2065), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_select] = ACTIONS(2065), - [anon_sym_lock] = ACTIONS(2065), - [anon_sym_rlock] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_sql] = ACTIONS(2065), - [sym_int_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), - [sym_rune_literal] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_c_SQUOTE] = ACTIONS(2065), - [anon_sym_c_DQUOTE] = ACTIONS(2065), - [anon_sym_r_SQUOTE] = ACTIONS(2065), - [anon_sym_r_DQUOTE] = ACTIONS(2065), - [sym_pseudo_compile_time_identifier] = ACTIONS(2065), - [anon_sym_shared] = ACTIONS(2065), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2065), - [anon_sym_thread] = ACTIONS(2065), - [anon_sym_atomic] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), }, - [1411] = { - [sym_line_comment] = STATE(1411), - [sym_block_comment] = STATE(1411), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [1354] = { + [sym_line_comment] = STATE(1354), + [sym_block_comment] = STATE(1354), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [anon_sym_c_SQUOTE] = ACTIONS(2059), - [anon_sym_c_DQUOTE] = ACTIONS(2059), - [anon_sym_r_SQUOTE] = ACTIONS(2059), - [anon_sym_r_DQUOTE] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_QMARK] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_AMP_CARET] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2627), + [anon_sym_POUND_LBRACK] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2627), + [anon_sym_BANGis] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_BANGin] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_defer] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_DOLLARfor] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), }, - [1412] = { - [sym_line_comment] = STATE(1412), - [sym_block_comment] = STATE(1412), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1355] = { + [sym_line_comment] = STATE(1355), + [sym_block_comment] = STATE(1355), + [sym_identifier] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2819), + [anon_sym_CR] = ACTIONS(2819), + [anon_sym_CR_LF] = ACTIONS(2819), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_as] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_mut] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_QMARK] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2819), + [anon_sym_json_DOTdecode] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_LBRACK2] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [sym_none] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_nil] = ACTIONS(2819), + [anon_sym_QMARK_DOT] = ACTIONS(2819), + [anon_sym_POUND_LBRACK] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_BANGis] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_BANGin] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_select] = ACTIONS(2819), + [anon_sym_lock] = ACTIONS(2819), + [anon_sym_rlock] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_sql] = ACTIONS(2819), + [sym_int_literal] = ACTIONS(2819), + [sym_float_literal] = ACTIONS(2819), + [sym_rune_literal] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_c_SQUOTE] = ACTIONS(2819), + [anon_sym_c_DQUOTE] = ACTIONS(2819), + [anon_sym_r_SQUOTE] = ACTIONS(2819), + [anon_sym_r_DQUOTE] = ACTIONS(2819), + [sym_pseudo_compile_time_identifier] = ACTIONS(2819), + [anon_sym_shared] = ACTIONS(2819), + [anon_sym_map_LBRACK] = ACTIONS(2819), + [anon_sym_chan] = ACTIONS(2819), + [anon_sym_thread] = ACTIONS(2819), + [anon_sym_atomic] = ACTIONS(2819), + [anon_sym_assert] = ACTIONS(2819), + [anon_sym_defer] = ACTIONS(2819), + [anon_sym_goto] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_DOLLARfor] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_POUND] = ACTIONS(2819), + [anon_sym_asm] = ACTIONS(2819), }, - [1413] = { - [sym_line_comment] = STATE(1413), - [sym_block_comment] = STATE(1413), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LF] = ACTIONS(2069), - [anon_sym_CR] = ACTIONS(2069), - [anon_sym_CR_LF] = ACTIONS(2069), + [1356] = { + [sym_line_comment] = STATE(1356), + [sym_block_comment] = STATE(1356), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_rune_literal] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [anon_sym_c_SQUOTE] = ACTIONS(2069), - [anon_sym_c_DQUOTE] = ACTIONS(2069), - [anon_sym_r_SQUOTE] = ACTIONS(2069), - [anon_sym_r_DQUOTE] = ACTIONS(2069), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2069), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_defer] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_DOLLARfor] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_asm] = ACTIONS(2465), }, - [1414] = { - [sym_line_comment] = STATE(1414), - [sym_block_comment] = STATE(1414), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1357] = { + [sym_line_comment] = STATE(1357), + [sym_block_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3304), + [anon_sym_LF] = ACTIONS(3304), + [anon_sym_CR] = ACTIONS(3304), + [anon_sym_CR_LF] = ACTIONS(3304), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_as] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_GT] = ACTIONS(3304), + [anon_sym_EQ_EQ] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_LT_EQ] = ACTIONS(3304), + [anon_sym_GT_EQ] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_mut] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_go] = ACTIONS(3304), + [anon_sym_spawn] = ACTIONS(3304), + [anon_sym_json_DOTdecode] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3304), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_LT_LT] = ACTIONS(3304), + [anon_sym_GT_GT] = ACTIONS(3304), + [anon_sym_GT_GT_GT] = ACTIONS(3304), + [anon_sym_AMP_CARET] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_or] = ACTIONS(3304), + [sym_none] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_nil] = ACTIONS(3304), + [anon_sym_QMARK_DOT] = ACTIONS(3304), + [anon_sym_POUND_LBRACK] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_DOLLARif] = ACTIONS(3304), + [anon_sym_is] = ACTIONS(3304), + [anon_sym_BANGis] = ACTIONS(3304), + [anon_sym_in] = ACTIONS(3304), + [anon_sym_BANGin] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_select] = ACTIONS(3304), + [anon_sym_lock] = ACTIONS(3304), + [anon_sym_rlock] = ACTIONS(3304), + [anon_sym_unsafe] = ACTIONS(3304), + [anon_sym_sql] = ACTIONS(3304), + [sym_int_literal] = ACTIONS(3304), + [sym_float_literal] = ACTIONS(3304), + [sym_rune_literal] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_c_SQUOTE] = ACTIONS(3304), + [anon_sym_c_DQUOTE] = ACTIONS(3304), + [anon_sym_r_SQUOTE] = ACTIONS(3304), + [anon_sym_r_DQUOTE] = ACTIONS(3304), + [sym_pseudo_compile_time_identifier] = ACTIONS(3304), + [anon_sym_shared] = ACTIONS(3304), + [anon_sym_map_LBRACK] = ACTIONS(3304), + [anon_sym_chan] = ACTIONS(3304), + [anon_sym_thread] = ACTIONS(3304), + [anon_sym_atomic] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_defer] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_DOLLARfor] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), }, - [1415] = { - [sym_line_comment] = STATE(1415), - [sym_block_comment] = STATE(1415), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1358] = { + [sym_line_comment] = STATE(1358), + [sym_block_comment] = STATE(1358), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - }, - [1416] = { - [sym_line_comment] = STATE(1416), - [sym_block_comment] = STATE(1416), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2049), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_CR] = ACTIONS(2049), - [anon_sym_CR_LF] = ACTIONS(2049), + [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_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_mut] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_c_SQUOTE] = ACTIONS(2647), + [anon_sym_c_DQUOTE] = ACTIONS(2647), + [anon_sym_r_SQUOTE] = ACTIONS(2647), + [anon_sym_r_DQUOTE] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + [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), + }, + [1359] = { + [sym_line_comment] = STATE(1359), + [sym_block_comment] = STATE(1359), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2049), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_BANG_EQ] = ACTIONS(2049), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2049), - [anon_sym_spawn] = ACTIONS(2049), - [anon_sym_json_DOTdecode] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_LT_DASH] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2049), - [anon_sym_AMP_CARET] = ACTIONS(2049), - [anon_sym_AMP_AMP] = ACTIONS(2049), - [anon_sym_PIPE_PIPE] = ACTIONS(2049), - [anon_sym_or] = ACTIONS(2049), - [sym_none] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_nil] = ACTIONS(2049), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_DOLLARif] = ACTIONS(2049), - [anon_sym_is] = ACTIONS(2049), - [anon_sym_BANGis] = ACTIONS(2049), - [anon_sym_in] = ACTIONS(2049), - [anon_sym_BANGin] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_select] = ACTIONS(2049), - [anon_sym_lock] = ACTIONS(2049), - [anon_sym_rlock] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_sql] = ACTIONS(2049), - [sym_int_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), - [sym_rune_literal] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [anon_sym_c_SQUOTE] = ACTIONS(2049), - [anon_sym_c_DQUOTE] = ACTIONS(2049), - [anon_sym_r_SQUOTE] = ACTIONS(2049), - [anon_sym_r_DQUOTE] = ACTIONS(2049), - [sym_pseudo_compile_time_identifier] = ACTIONS(2049), - [anon_sym_shared] = ACTIONS(2049), - [anon_sym_map_LBRACK] = ACTIONS(2049), - [anon_sym_chan] = ACTIONS(2049), - [anon_sym_thread] = ACTIONS(2049), - [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_c_SQUOTE] = ACTIONS(2993), + [anon_sym_c_DQUOTE] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(2993), + [anon_sym_r_DQUOTE] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), }, - [1417] = { - [sym_line_comment] = STATE(1417), - [sym_block_comment] = STATE(1417), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [1360] = { + [sym_line_comment] = STATE(1360), + [sym_block_comment] = STATE(1360), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(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_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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_c_SQUOTE] = ACTIONS(2659), + [anon_sym_c_DQUOTE] = ACTIONS(2659), + [anon_sym_r_SQUOTE] = ACTIONS(2659), + [anon_sym_r_DQUOTE] = 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), }, - [1418] = { - [sym_line_comment] = STATE(1418), - [sym_block_comment] = STATE(1418), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2079), - [anon_sym_CR] = ACTIONS(2079), - [anon_sym_CR_LF] = ACTIONS(2079), + [1361] = { + [sym_line_comment] = STATE(1361), + [sym_block_comment] = STATE(1361), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_LT_EQ] = ACTIONS(2079), - [anon_sym_GT_EQ] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(2079), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - [sym_rune_literal] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_c_SQUOTE] = ACTIONS(2079), - [anon_sym_c_DQUOTE] = ACTIONS(2079), - [anon_sym_r_SQUOTE] = ACTIONS(2079), - [anon_sym_r_DQUOTE] = ACTIONS(2079), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2079), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), + [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_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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_c_SQUOTE] = ACTIONS(2655), + [anon_sym_c_DQUOTE] = ACTIONS(2655), + [anon_sym_r_SQUOTE] = ACTIONS(2655), + [anon_sym_r_DQUOTE] = ACTIONS(2655), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, - [1419] = { - [sym_line_comment] = STATE(1419), - [sym_block_comment] = STATE(1419), - [sym_else_branch] = STATE(1526), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_CR] = ACTIONS(2089), - [anon_sym_CR_LF] = ACTIONS(2089), + [1362] = { + [sym_line_comment] = STATE(1362), + [sym_block_comment] = STATE(1362), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_go] = ACTIONS(2089), - [anon_sym_spawn] = ACTIONS(2089), - [anon_sym_json_DOTdecode] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_LBRACK2] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_LT_DASH] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_AMP_CARET] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [sym_none] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_nil] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2089), - [anon_sym_POUND_LBRACK] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_DOLLARif] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_BANGis] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_BANGin] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_lock] = ACTIONS(2089), - [anon_sym_rlock] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_sql] = ACTIONS(2089), - [sym_int_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), - [sym_rune_literal] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_c_SQUOTE] = ACTIONS(2089), - [anon_sym_c_DQUOTE] = ACTIONS(2089), - [anon_sym_r_SQUOTE] = ACTIONS(2089), - [anon_sym_r_DQUOTE] = ACTIONS(2089), - [sym_pseudo_compile_time_identifier] = ACTIONS(2089), - [anon_sym_shared] = ACTIONS(2089), - [anon_sym_map_LBRACK] = ACTIONS(2089), - [anon_sym_chan] = ACTIONS(2089), - [anon_sym_thread] = ACTIONS(2089), - [anon_sym_atomic] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), }, - [1420] = { - [sym_line_comment] = STATE(1420), - [sym_block_comment] = STATE(1420), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(4132), - [anon_sym_LF] = ACTIONS(4132), - [anon_sym_CR] = ACTIONS(4132), - [anon_sym_CR_LF] = ACTIONS(4132), + [1363] = { + [sym_line_comment] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4132), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_COMMA] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(4132), - [anon_sym_fn] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_mut] = ACTIONS(4132), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4132), - [anon_sym_spawn] = ACTIONS(4132), - [anon_sym_json_DOTdecode] = ACTIONS(4132), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4132), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4132), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(4132), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [sym_nil] = ACTIONS(4132), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_DOLLARif] = ACTIONS(4132), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4132), - [anon_sym_select] = ACTIONS(4132), - [anon_sym_lock] = ACTIONS(4132), - [anon_sym_rlock] = ACTIONS(4132), - [anon_sym_unsafe] = ACTIONS(4132), - [anon_sym_sql] = ACTIONS(4132), - [sym_int_literal] = ACTIONS(4132), - [sym_float_literal] = ACTIONS(4132), - [sym_rune_literal] = ACTIONS(4132), - [anon_sym_SQUOTE] = ACTIONS(4132), - [anon_sym_DQUOTE] = ACTIONS(4132), - [anon_sym_c_SQUOTE] = ACTIONS(4132), - [anon_sym_c_DQUOTE] = ACTIONS(4132), - [anon_sym_r_SQUOTE] = ACTIONS(4132), - [anon_sym_r_DQUOTE] = ACTIONS(4132), - [sym_pseudo_compile_time_identifier] = ACTIONS(4132), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4132), - [anon_sym_chan] = ACTIONS(4132), - [anon_sym_thread] = ACTIONS(4132), - [anon_sym_atomic] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + [anon_sym_assert] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_goto] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_DOLLARfor] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_asm] = ACTIONS(3045), }, - [1421] = { - [sym_line_comment] = STATE(1421), - [sym_block_comment] = STATE(1421), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(2073), - [anon_sym_CR] = ACTIONS(2073), - [anon_sym_CR_LF] = ACTIONS(2073), + [1364] = { + [sym_line_comment] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LF] = ACTIONS(2935), + [anon_sym_CR] = ACTIONS(2935), + [anon_sym_CR_LF] = ACTIONS(2935), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(2073), - [anon_sym_spawn] = ACTIONS(2073), - [anon_sym_json_DOTdecode] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(2073), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_nil] = ACTIONS(2073), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_DOLLARif] = ACTIONS(2073), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_BANGis] = ACTIONS(4134), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_select] = ACTIONS(2073), - [anon_sym_lock] = ACTIONS(2073), - [anon_sym_rlock] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_sql] = ACTIONS(2073), - [sym_int_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_rune_literal] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [anon_sym_c_SQUOTE] = ACTIONS(2073), - [anon_sym_c_DQUOTE] = ACTIONS(2073), - [anon_sym_r_SQUOTE] = ACTIONS(2073), - [anon_sym_r_DQUOTE] = ACTIONS(2073), - [sym_pseudo_compile_time_identifier] = ACTIONS(2073), - [anon_sym_shared] = ACTIONS(2073), - [anon_sym_map_LBRACK] = ACTIONS(2073), - [anon_sym_chan] = ACTIONS(2073), - [anon_sym_thread] = ACTIONS(2073), - [anon_sym_atomic] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + [anon_sym_assert] = ACTIONS(2935), + [anon_sym_defer] = ACTIONS(2935), + [anon_sym_goto] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_DOLLARfor] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_asm] = ACTIONS(2935), + }, + [1365] = { + [sym_line_comment] = STATE(1365), + [sym_block_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_CR] = ACTIONS(3073), + [anon_sym_CR_LF] = ACTIONS(3073), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3073), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3073), + [anon_sym_AMP_CARET] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3073), + [anon_sym_POUND_LBRACK] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3073), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), + [sym_rune_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_c_SQUOTE] = ACTIONS(3073), + [anon_sym_c_DQUOTE] = ACTIONS(3073), + [anon_sym_r_SQUOTE] = ACTIONS(3073), + [anon_sym_r_DQUOTE] = ACTIONS(3073), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3073), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_defer] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_DOLLARfor] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + }, + [1366] = { + [sym_line_comment] = STATE(1366), + [sym_block_comment] = STATE(1366), + [sym_reference_expression] = STATE(4601), + [sym_type_reference_expression] = STATE(1730), + [sym_plain_type] = STATE(1891), + [sym__plain_type_without_special] = STATE(1875), + [sym_anon_struct_type] = STATE(1881), + [sym_multi_return_type] = STATE(1875), + [sym_result_type] = STATE(1875), + [sym_option_type] = STATE(1875), + [sym_qualified_type] = STATE(1730), + [sym_fixed_array_type] = STATE(1881), + [sym_array_type] = STATE(1881), + [sym_pointer_type] = STATE(1881), + [sym_wrong_pointer_type] = STATE(1881), + [sym_map_type] = STATE(1881), + [sym_channel_type] = STATE(1881), + [sym_shared_type] = STATE(1881), + [sym_thread_type] = STATE(1881), + [sym_atomic_type] = STATE(1881), + [sym_generic_type] = STATE(1881), + [sym_function_type] = STATE(1881), + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym___global] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(855), + [anon_sym_pub] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_interface] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_go] = ACTIONS(855), + [anon_sym_spawn] = ACTIONS(855), + [anon_sym_json_DOTdecode] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_LT_DASH] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_nil] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_DOLLARif] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_select] = ACTIONS(855), + [anon_sym_lock] = ACTIONS(855), + [anon_sym_rlock] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), + [sym_rune_literal] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_c_SQUOTE] = ACTIONS(855), + [anon_sym_c_DQUOTE] = ACTIONS(855), + [anon_sym_r_SQUOTE] = ACTIONS(855), + [anon_sym_r_DQUOTE] = ACTIONS(855), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4086), + [anon_sym_chan] = ACTIONS(4088), + [anon_sym_thread] = ACTIONS(4090), + [anon_sym_atomic] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_DOLLARfor] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(855), + [anon_sym_AT_LBRACK] = ACTIONS(855), + }, + [1367] = { + [sym_line_comment] = STATE(1367), + [sym_block_comment] = STATE(1367), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_c_SQUOTE] = ACTIONS(2471), + [anon_sym_c_DQUOTE] = ACTIONS(2471), + [anon_sym_r_SQUOTE] = ACTIONS(2471), + [anon_sym_r_DQUOTE] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_defer] = ACTIONS(2471), + [anon_sym_goto] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_DOLLARfor] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_asm] = ACTIONS(2471), + }, + [1368] = { + [sym_line_comment] = STATE(1368), + [sym_block_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), + }, + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_RBRACE] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + }, + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + }, + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + }, + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + }, + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_reference_expression] = STATE(4601), + [sym_type_reference_expression] = STATE(1730), + [sym_plain_type] = STATE(1844), + [sym__plain_type_without_special] = STATE(1875), + [sym_anon_struct_type] = STATE(1881), + [sym_multi_return_type] = STATE(1875), + [sym_result_type] = STATE(1875), + [sym_option_type] = STATE(1875), + [sym_qualified_type] = STATE(1730), + [sym_fixed_array_type] = STATE(1881), + [sym_array_type] = STATE(1881), + [sym_pointer_type] = STATE(1881), + [sym_wrong_pointer_type] = STATE(1881), + [sym_map_type] = STATE(1881), + [sym_channel_type] = STATE(1881), + [sym_shared_type] = STATE(1881), + [sym_thread_type] = STATE(1881), + [sym_atomic_type] = STATE(1881), + [sym_generic_type] = STATE(1881), + [sym_function_type] = STATE(1881), + [ts_builtin_sym_end] = ACTIONS(817), + [sym_identifier] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_CR] = ACTIONS(821), + [anon_sym_CR_LF] = ACTIONS(821), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym___global] = ACTIONS(821), + [anon_sym_type] = ACTIONS(821), + [anon_sym_fn] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(821), + [anon_sym_pub] = ACTIONS(821), + [anon_sym_mut] = ACTIONS(821), + [anon_sym_enum] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(821), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(821), + [anon_sym_json_DOTdecode] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_LT_DASH] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_true] = ACTIONS(821), + [sym_false] = ACTIONS(821), + [sym_nil] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_select] = ACTIONS(821), + [anon_sym_lock] = ACTIONS(821), + [anon_sym_rlock] = ACTIONS(821), + [anon_sym_unsafe] = ACTIONS(821), + [anon_sym_sql] = ACTIONS(821), + [sym_int_literal] = ACTIONS(821), + [sym_float_literal] = ACTIONS(821), + [sym_rune_literal] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_c_SQUOTE] = ACTIONS(821), + [anon_sym_c_DQUOTE] = ACTIONS(821), + [anon_sym_r_SQUOTE] = ACTIONS(821), + [anon_sym_r_DQUOTE] = ACTIONS(821), + [sym_pseudo_compile_time_identifier] = ACTIONS(821), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4086), + [anon_sym_chan] = ACTIONS(4088), + [anon_sym_thread] = ACTIONS(4090), + [anon_sym_atomic] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(821), + [anon_sym_defer] = ACTIONS(821), + [anon_sym_goto] = ACTIONS(821), + [anon_sym_break] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_return] = ACTIONS(821), + [anon_sym_DOLLARfor] = ACTIONS(821), + [anon_sym_for] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(821), + [anon_sym_asm] = ACTIONS(821), + [anon_sym_AT_LBRACK] = ACTIONS(821), + }, + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), + }, + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_CARET] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_assert] = ACTIONS(2973), + [anon_sym_defer] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_DOLLARfor] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + }, + [1376] = { + [sym_line_comment] = STATE(1376), + [sym_block_comment] = STATE(1376), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + }, + [1377] = { + [sym_line_comment] = STATE(1377), + [sym_block_comment] = STATE(1377), + [sym_identifier] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2435), + [anon_sym_CR] = ACTIONS(2435), + [anon_sym_CR_LF] = ACTIONS(2435), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2435), + [anon_sym_LT_LT] = ACTIONS(2435), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2435), + [anon_sym_AMP_CARET] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2435), + [anon_sym_POUND_LBRACK] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_rune_literal] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_c_SQUOTE] = ACTIONS(2435), + [anon_sym_c_DQUOTE] = ACTIONS(2435), + [anon_sym_r_SQUOTE] = ACTIONS(2435), + [anon_sym_r_DQUOTE] = ACTIONS(2435), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2435), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), + [anon_sym_assert] = ACTIONS(2435), + [anon_sym_defer] = ACTIONS(2435), + [anon_sym_goto] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_DOLLARfor] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_asm] = ACTIONS(2435), + }, + [1378] = { + [sym_line_comment] = STATE(1378), + [sym_block_comment] = STATE(1378), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + }, + [1379] = { + [sym_line_comment] = STATE(1379), + [sym_block_comment] = STATE(1379), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + }, + [1380] = { + [sym_line_comment] = STATE(1380), + [sym_block_comment] = STATE(1380), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3256), + [anon_sym_CR] = ACTIONS(3256), + [anon_sym_CR_LF] = ACTIONS(3256), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_c_SQUOTE] = ACTIONS(3256), + [anon_sym_c_DQUOTE] = ACTIONS(3256), + [anon_sym_r_SQUOTE] = ACTIONS(3256), + [anon_sym_r_DQUOTE] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), + [anon_sym_assert] = ACTIONS(3256), + [anon_sym_defer] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_DOLLARfor] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + }, + [1381] = { + [sym_line_comment] = STATE(1381), + [sym_block_comment] = STATE(1381), + [sym_identifier] = ACTIONS(3274), + [anon_sym_LF] = ACTIONS(3274), + [anon_sym_CR] = ACTIONS(3274), + [anon_sym_CR_LF] = ACTIONS(3274), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_fn] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_mut] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_go] = ACTIONS(3274), + [anon_sym_spawn] = ACTIONS(3274), + [anon_sym_json_DOTdecode] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3274), + [anon_sym_LBRACK2] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_CARET] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_LT_LT] = ACTIONS(3274), + [anon_sym_GT_GT] = ACTIONS(3274), + [anon_sym_GT_GT_GT] = ACTIONS(3274), + [anon_sym_AMP_CARET] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3274), + [sym_none] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_nil] = ACTIONS(3274), + [anon_sym_QMARK_DOT] = ACTIONS(3274), + [anon_sym_POUND_LBRACK] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_DOLLARif] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3274), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_select] = ACTIONS(3274), + [anon_sym_lock] = ACTIONS(3274), + [anon_sym_rlock] = ACTIONS(3274), + [anon_sym_unsafe] = ACTIONS(3274), + [anon_sym_sql] = ACTIONS(3274), + [sym_int_literal] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(3274), + [sym_rune_literal] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_c_SQUOTE] = ACTIONS(3274), + [anon_sym_c_DQUOTE] = ACTIONS(3274), + [anon_sym_r_SQUOTE] = ACTIONS(3274), + [anon_sym_r_DQUOTE] = ACTIONS(3274), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), + [anon_sym_shared] = ACTIONS(3274), + [anon_sym_map_LBRACK] = ACTIONS(3274), + [anon_sym_chan] = ACTIONS(3274), + [anon_sym_thread] = ACTIONS(3274), + [anon_sym_atomic] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_defer] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_DOLLARfor] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_POUND] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), }, - [1422] = { - [sym_line_comment] = STATE(1422), - [sym_block_comment] = STATE(1422), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(4136), - [anon_sym_LF] = ACTIONS(4136), - [anon_sym_CR] = ACTIONS(4136), - [anon_sym_CR_LF] = ACTIONS(4136), + [1382] = { + [sym_line_comment] = STATE(1382), + [sym_block_comment] = STATE(1382), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_COMMA] = ACTIONS(4136), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(4136), - [anon_sym_fn] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_mut] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4136), - [anon_sym_spawn] = ACTIONS(4136), - [anon_sym_json_DOTdecode] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(4136), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [sym_nil] = ACTIONS(4136), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_DOLLARif] = ACTIONS(4136), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4136), - [anon_sym_select] = ACTIONS(4136), - [anon_sym_lock] = ACTIONS(4136), - [anon_sym_rlock] = ACTIONS(4136), - [anon_sym_unsafe] = ACTIONS(4136), - [anon_sym_sql] = ACTIONS(4136), - [sym_int_literal] = ACTIONS(4136), - [sym_float_literal] = ACTIONS(4136), - [sym_rune_literal] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [anon_sym_c_SQUOTE] = ACTIONS(4136), - [anon_sym_c_DQUOTE] = ACTIONS(4136), - [anon_sym_r_SQUOTE] = ACTIONS(4136), - [anon_sym_r_DQUOTE] = ACTIONS(4136), - [sym_pseudo_compile_time_identifier] = ACTIONS(4136), - [anon_sym_shared] = ACTIONS(4136), - [anon_sym_map_LBRACK] = ACTIONS(4136), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4136), - [anon_sym_atomic] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3332), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [anon_sym_assert] = ACTIONS(3332), + [anon_sym_defer] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_DOLLARfor] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), }, - [1423] = { - [sym_line_comment] = STATE(1423), - [sym_block_comment] = STATE(1423), - [sym_else_branch] = STATE(1522), - [sym_identifier] = ACTIONS(2083), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_CR] = ACTIONS(2083), - [anon_sym_CR_LF] = ACTIONS(2083), + [1383] = { + [sym_line_comment] = STATE(1383), + [sym_block_comment] = STATE(1383), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_DOT] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_COMMA] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2083), - [anon_sym_EQ_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ] = ACTIONS(2083), - [anon_sym_LT_EQ] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_mut] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_QMARK] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_go] = ACTIONS(2083), - [anon_sym_spawn] = ACTIONS(2083), - [anon_sym_json_DOTdecode] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2083), - [anon_sym_LBRACK2] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2083), - [anon_sym_LT_LT] = ACTIONS(2083), - [anon_sym_GT_GT] = ACTIONS(2083), - [anon_sym_GT_GT_GT] = ACTIONS(2083), - [anon_sym_AMP_CARET] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2083), - [anon_sym_PIPE_PIPE] = ACTIONS(2083), - [anon_sym_or] = ACTIONS(2083), - [sym_none] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_nil] = ACTIONS(2083), - [anon_sym_QMARK_DOT] = ACTIONS(2083), - [anon_sym_POUND_LBRACK] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(4130), - [anon_sym_DOLLARif] = ACTIONS(2083), - [anon_sym_is] = ACTIONS(2083), - [anon_sym_BANGis] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2083), - [anon_sym_BANGin] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_select] = ACTIONS(2083), - [anon_sym_lock] = ACTIONS(2083), - [anon_sym_rlock] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_sql] = ACTIONS(2083), - [sym_int_literal] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), - [sym_rune_literal] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [anon_sym_c_SQUOTE] = ACTIONS(2083), - [anon_sym_c_DQUOTE] = ACTIONS(2083), - [anon_sym_r_SQUOTE] = ACTIONS(2083), - [anon_sym_r_DQUOTE] = ACTIONS(2083), - [sym_pseudo_compile_time_identifier] = ACTIONS(2083), - [anon_sym_shared] = ACTIONS(2083), - [anon_sym_map_LBRACK] = ACTIONS(2083), - [anon_sym_chan] = ACTIONS(2083), - [anon_sym_thread] = ACTIONS(2083), - [anon_sym_atomic] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), }, - [1424] = { - [sym_line_comment] = STATE(1424), - [sym_block_comment] = STATE(1424), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(4138), - [anon_sym_LF] = ACTIONS(4138), - [anon_sym_CR] = ACTIONS(4138), - [anon_sym_CR_LF] = ACTIONS(4138), + [1384] = { + [sym_line_comment] = STATE(1384), + [sym_block_comment] = STATE(1384), + [sym_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2335), + [anon_sym_CR] = ACTIONS(2335), + [anon_sym_CR_LF] = ACTIONS(2335), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_COMMA] = ACTIONS(4138), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(4138), - [anon_sym_fn] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4138), - [anon_sym_mut] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4138), - [anon_sym_spawn] = ACTIONS(4138), - [anon_sym_json_DOTdecode] = ACTIONS(4138), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4138), - [anon_sym_CARET] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_LT_DASH] = ACTIONS(4138), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(4138), - [sym_true] = ACTIONS(4138), - [sym_false] = ACTIONS(4138), - [sym_nil] = ACTIONS(4138), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_DOLLARif] = ACTIONS(4138), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4138), - [anon_sym_select] = ACTIONS(4138), - [anon_sym_lock] = ACTIONS(4138), - [anon_sym_rlock] = ACTIONS(4138), - [anon_sym_unsafe] = ACTIONS(4138), - [anon_sym_sql] = ACTIONS(4138), - [sym_int_literal] = ACTIONS(4138), - [sym_float_literal] = ACTIONS(4138), - [sym_rune_literal] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [anon_sym_c_SQUOTE] = ACTIONS(4138), - [anon_sym_c_DQUOTE] = ACTIONS(4138), - [anon_sym_r_SQUOTE] = ACTIONS(4138), - [anon_sym_r_DQUOTE] = ACTIONS(4138), - [sym_pseudo_compile_time_identifier] = ACTIONS(4138), - [anon_sym_shared] = ACTIONS(4138), - [anon_sym_map_LBRACK] = ACTIONS(4138), - [anon_sym_chan] = ACTIONS(4138), - [anon_sym_thread] = ACTIONS(4138), - [anon_sym_atomic] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_DOT] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [anon_sym_EQ_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_go] = ACTIONS(2335), + [anon_sym_spawn] = ACTIONS(2335), + [anon_sym_json_DOTdecode] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_LT_DASH] = ACTIONS(2335), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2335), + [anon_sym_GT_GT_GT] = ACTIONS(2335), + [anon_sym_AMP_CARET] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_or] = ACTIONS(2335), + [sym_none] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_nil] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2335), + [anon_sym_POUND_LBRACK] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_DOLLARif] = ACTIONS(2335), + [anon_sym_is] = ACTIONS(2335), + [anon_sym_BANGis] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_BANGin] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_select] = ACTIONS(2335), + [anon_sym_lock] = ACTIONS(2335), + [anon_sym_rlock] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_sql] = ACTIONS(2335), + [sym_int_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), + [sym_rune_literal] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_c_SQUOTE] = ACTIONS(2335), + [anon_sym_c_DQUOTE] = ACTIONS(2335), + [anon_sym_r_SQUOTE] = ACTIONS(2335), + [anon_sym_r_DQUOTE] = ACTIONS(2335), + [sym_pseudo_compile_time_identifier] = ACTIONS(2335), + [anon_sym_shared] = ACTIONS(2335), + [anon_sym_map_LBRACK] = ACTIONS(2335), + [anon_sym_chan] = ACTIONS(2335), + [anon_sym_thread] = ACTIONS(2335), + [anon_sym_atomic] = ACTIONS(2335), + [anon_sym_assert] = ACTIONS(2335), + [anon_sym_defer] = ACTIONS(2335), + [anon_sym_goto] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_DOLLARfor] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_asm] = ACTIONS(2335), }, - [1425] = { - [sym_line_comment] = STATE(1425), - [sym_block_comment] = STATE(1425), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(4140), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_CR] = ACTIONS(4140), - [anon_sym_CR_LF] = ACTIONS(4140), + [1385] = { + [sym_line_comment] = STATE(1385), + [sym_block_comment] = STATE(1385), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2397), + [anon_sym_CR] = ACTIONS(2397), + [anon_sym_CR_LF] = ACTIONS(2397), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4140), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4140), - [anon_sym_COMMA] = ACTIONS(4140), - [anon_sym_RBRACE] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_fn] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_mut] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4140), - [anon_sym_spawn] = ACTIONS(4140), - [anon_sym_json_DOTdecode] = ACTIONS(4140), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4140), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(4140), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [sym_nil] = ACTIONS(4140), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_DOLLARif] = ACTIONS(4140), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_lock] = ACTIONS(4140), - [anon_sym_rlock] = ACTIONS(4140), - [anon_sym_unsafe] = ACTIONS(4140), - [anon_sym_sql] = ACTIONS(4140), - [sym_int_literal] = ACTIONS(4140), - [sym_float_literal] = ACTIONS(4140), - [sym_rune_literal] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4140), - [anon_sym_DQUOTE] = ACTIONS(4140), - [anon_sym_c_SQUOTE] = ACTIONS(4140), - [anon_sym_c_DQUOTE] = ACTIONS(4140), - [anon_sym_r_SQUOTE] = ACTIONS(4140), - [anon_sym_r_DQUOTE] = ACTIONS(4140), - [sym_pseudo_compile_time_identifier] = ACTIONS(4140), - [anon_sym_shared] = ACTIONS(4140), - [anon_sym_map_LBRACK] = ACTIONS(4140), - [anon_sym_chan] = ACTIONS(4140), - [anon_sym_thread] = ACTIONS(4140), - [anon_sym_atomic] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2397), + [anon_sym_AMP_CARET] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2397), + [anon_sym_POUND_LBRACK] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_rune_literal] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_c_SQUOTE] = ACTIONS(2397), + [anon_sym_c_DQUOTE] = ACTIONS(2397), + [anon_sym_r_SQUOTE] = ACTIONS(2397), + [anon_sym_r_DQUOTE] = ACTIONS(2397), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), + [anon_sym_assert] = ACTIONS(2397), + [anon_sym_defer] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_DOLLARfor] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_asm] = ACTIONS(2397), }, - [1426] = { - [sym_line_comment] = STATE(1426), - [sym_block_comment] = STATE(1426), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [1386] = { + [sym_line_comment] = STATE(1386), + [sym_block_comment] = STATE(1386), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_RPAREN] = 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(2178), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_COLON] = 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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), }, - [1427] = { - [sym_line_comment] = STATE(1427), - [sym_block_comment] = STATE(1427), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [1387] = { + [sym_line_comment] = STATE(1387), + [sym_block_comment] = STATE(1387), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_c_SQUOTE] = ACTIONS(3336), + [anon_sym_c_DQUOTE] = ACTIONS(3336), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_defer] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_DOLLARfor] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), }, - [1428] = { - [sym_line_comment] = STATE(1428), - [sym_block_comment] = STATE(1428), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_CR] = ACTIONS(2331), - [anon_sym_CR_LF] = ACTIONS(2331), + [1388] = { + [sym_line_comment] = STATE(1388), + [sym_block_comment] = STATE(1388), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_CARET] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2331), - [anon_sym_LT_LT] = ACTIONS(2331), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2331), - [anon_sym_AMP_CARET] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2331), - [anon_sym_POUND_LBRACK] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(4142), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2331), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_rune_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [anon_sym_c_SQUOTE] = ACTIONS(2331), - [anon_sym_c_DQUOTE] = ACTIONS(2331), - [anon_sym_r_SQUOTE] = ACTIONS(2331), - [anon_sym_r_DQUOTE] = ACTIONS(2331), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2331), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_c_SQUOTE] = ACTIONS(3340), + [anon_sym_c_DQUOTE] = ACTIONS(3340), + [anon_sym_r_SQUOTE] = ACTIONS(3340), + [anon_sym_r_DQUOTE] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), }, - [1429] = { - [sym_line_comment] = STATE(1429), - [sym_block_comment] = STATE(1429), - [sym_type_parameters] = STATE(1537), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [1389] = { + [sym_line_comment] = STATE(1389), + [sym_block_comment] = STATE(1389), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_c_SQUOTE] = ACTIONS(3080), + [anon_sym_c_DQUOTE] = ACTIONS(3080), + [anon_sym_r_SQUOTE] = ACTIONS(3080), + [anon_sym_r_DQUOTE] = ACTIONS(3080), + [sym_pseudo_compile_time_identifier] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_assert] = ACTIONS(3080), + [anon_sym_defer] = ACTIONS(3080), + [anon_sym_goto] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_DOLLARfor] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_asm] = ACTIONS(3080), }, - [1430] = { - [sym_line_comment] = STATE(1430), - [sym_block_comment] = STATE(1430), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [1390] = { + [sym_line_comment] = STATE(1390), + [sym_block_comment] = STATE(1390), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_CR] = ACTIONS(2429), + [anon_sym_CR_LF] = ACTIONS(2429), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + [anon_sym_assert] = ACTIONS(2429), + [anon_sym_defer] = ACTIONS(2429), + [anon_sym_goto] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_DOLLARfor] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2429), + [anon_sym_asm] = ACTIONS(2429), }, - [1431] = { - [sym_line_comment] = STATE(1431), - [sym_block_comment] = STATE(1431), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [1391] = { + [sym_line_comment] = STATE(1391), + [sym_block_comment] = STATE(1391), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LF] = ACTIONS(3308), + [anon_sym_CR] = ACTIONS(3308), + [anon_sym_CR_LF] = ACTIONS(3308), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_as] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_fn] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_GT] = ACTIONS(3308), + [anon_sym_EQ_EQ] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_LT_EQ] = ACTIONS(3308), + [anon_sym_GT_EQ] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_mut] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3308), + [anon_sym_spawn] = ACTIONS(3308), + [anon_sym_json_DOTdecode] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(3308), + [anon_sym_LBRACK2] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_CARET] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_LT_LT] = ACTIONS(3308), + [anon_sym_GT_GT] = ACTIONS(3308), + [anon_sym_GT_GT_GT] = ACTIONS(3308), + [anon_sym_AMP_CARET] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_or] = ACTIONS(3308), + [sym_none] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_nil] = ACTIONS(3308), + [anon_sym_QMARK_DOT] = ACTIONS(3308), + [anon_sym_POUND_LBRACK] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3308), + [anon_sym_is] = ACTIONS(3308), + [anon_sym_BANGis] = ACTIONS(3308), + [anon_sym_in] = ACTIONS(3308), + [anon_sym_BANGin] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_select] = ACTIONS(3308), + [anon_sym_lock] = ACTIONS(3308), + [anon_sym_rlock] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_sql] = ACTIONS(3308), + [sym_int_literal] = ACTIONS(3308), + [sym_float_literal] = ACTIONS(3308), + [sym_rune_literal] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_c_SQUOTE] = ACTIONS(3308), + [anon_sym_c_DQUOTE] = ACTIONS(3308), + [anon_sym_r_SQUOTE] = ACTIONS(3308), + [anon_sym_r_DQUOTE] = ACTIONS(3308), + [sym_pseudo_compile_time_identifier] = ACTIONS(3308), + [anon_sym_shared] = ACTIONS(3308), + [anon_sym_map_LBRACK] = ACTIONS(3308), + [anon_sym_chan] = ACTIONS(3308), + [anon_sym_thread] = ACTIONS(3308), + [anon_sym_atomic] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_defer] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_DOLLARfor] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_POUND] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), }, - [1432] = { - [sym_line_comment] = STATE(1432), - [sym_block_comment] = STATE(1432), - [sym_type_parameters] = STATE(4401), - [sym_argument_list] = STATE(1479), - [sym_or_block] = STATE(1480), - [sym_identifier] = ACTIONS(4144), - [anon_sym_LF] = ACTIONS(4146), - [anon_sym_CR] = ACTIONS(4146), - [anon_sym_CR_LF] = ACTIONS(4146), + [1392] = { + [sym_line_comment] = STATE(1392), + [sym_block_comment] = STATE(1392), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym_fn] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_mut] = ACTIONS(4144), - [anon_sym_PLUS_PLUS] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4144), - [anon_sym_spawn] = ACTIONS(4144), - [anon_sym_json_DOTdecode] = ACTIONS(4144), - [anon_sym_PIPE] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4144), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4112), - [anon_sym_AMP_CARET] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [sym_none] = ACTIONS(4144), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [sym_nil] = ACTIONS(4144), - [anon_sym_QMARK_DOT] = ACTIONS(4096), - [anon_sym_POUND_LBRACK] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_DOLLARif] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4144), - [anon_sym_select] = ACTIONS(4144), - [anon_sym_lock] = ACTIONS(4144), - [anon_sym_rlock] = ACTIONS(4144), - [anon_sym_unsafe] = ACTIONS(4144), - [anon_sym_sql] = ACTIONS(4144), - [sym_int_literal] = ACTIONS(4144), - [sym_float_literal] = ACTIONS(4144), - [sym_rune_literal] = ACTIONS(4144), - [anon_sym_SQUOTE] = ACTIONS(4144), - [anon_sym_DQUOTE] = ACTIONS(4144), - [anon_sym_c_SQUOTE] = ACTIONS(4144), - [anon_sym_c_DQUOTE] = ACTIONS(4144), - [anon_sym_r_SQUOTE] = ACTIONS(4144), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), }, - [1433] = { - [sym_line_comment] = STATE(1433), - [sym_block_comment] = STATE(1433), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), + [1393] = { + [sym_line_comment] = STATE(1393), + [sym_block_comment] = STATE(1393), + [sym_identifier] = ACTIONS(2697), + [anon_sym_LF] = ACTIONS(2697), + [anon_sym_CR] = ACTIONS(2697), + [anon_sym_CR_LF] = ACTIONS(2697), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(4148), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2697), + [anon_sym_BANG_EQ] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2697), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2697), + [anon_sym_AMP_CARET] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2697), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2697), + [anon_sym_POUND_LBRACK] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), + [sym_rune_literal] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_c_SQUOTE] = ACTIONS(2697), + [anon_sym_c_DQUOTE] = ACTIONS(2697), + [anon_sym_r_SQUOTE] = ACTIONS(2697), + [anon_sym_r_DQUOTE] = ACTIONS(2697), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2697), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), + [anon_sym_assert] = ACTIONS(2697), + [anon_sym_defer] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_DOLLARfor] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_asm] = ACTIONS(2697), }, - [1434] = { - [sym_line_comment] = STATE(1434), - [sym_block_comment] = STATE(1434), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [1394] = { + [sym_line_comment] = STATE(1394), + [sym_block_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_c_SQUOTE] = ACTIONS(3270), + [anon_sym_c_DQUOTE] = ACTIONS(3270), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), }, - [1435] = { - [sym_line_comment] = STATE(1435), - [sym_block_comment] = STATE(1435), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LF] = ACTIONS(3266), - [anon_sym_CR] = ACTIONS(3266), - [anon_sym_CR_LF] = ACTIONS(3266), + [1395] = { + [sym_line_comment] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_as] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_fn] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_PERCENT] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_GT] = ACTIONS(3266), - [anon_sym_EQ_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_mut] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_go] = ACTIONS(3266), - [anon_sym_spawn] = ACTIONS(3266), - [anon_sym_json_DOTdecode] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_LBRACK2] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_LT_DASH] = ACTIONS(3266), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_GT_GT_GT] = ACTIONS(3266), - [anon_sym_AMP_CARET] = ACTIONS(3266), - [anon_sym_AMP_AMP] = ACTIONS(3266), - [anon_sym_PIPE_PIPE] = ACTIONS(3266), - [anon_sym_or] = ACTIONS(3266), - [sym_none] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_nil] = ACTIONS(3266), - [anon_sym_QMARK_DOT] = ACTIONS(3266), - [anon_sym_POUND_LBRACK] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_DOLLARif] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_BANGis] = ACTIONS(3266), - [anon_sym_in] = ACTIONS(3266), - [anon_sym_BANGin] = ACTIONS(3266), - [anon_sym_match] = ACTIONS(3266), - [anon_sym_select] = ACTIONS(3266), - [anon_sym_lock] = ACTIONS(3266), - [anon_sym_rlock] = ACTIONS(3266), - [anon_sym_unsafe] = ACTIONS(3266), - [anon_sym_sql] = ACTIONS(3266), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(3266), - [sym_rune_literal] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_c_SQUOTE] = ACTIONS(3266), - [anon_sym_c_DQUOTE] = ACTIONS(3266), - [anon_sym_r_SQUOTE] = ACTIONS(3266), - [anon_sym_r_DQUOTE] = ACTIONS(3266), - [sym_pseudo_compile_time_identifier] = ACTIONS(3266), - [anon_sym_shared] = ACTIONS(3266), - [anon_sym_map_LBRACK] = ACTIONS(3266), - [anon_sym_chan] = ACTIONS(3266), - [anon_sym_thread] = ACTIONS(3266), - [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_c_SQUOTE] = ACTIONS(2873), + [anon_sym_c_DQUOTE] = ACTIONS(2873), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), }, - [1436] = { - [sym_line_comment] = STATE(1436), - [sym_block_comment] = STATE(1436), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), + [1396] = { + [sym_line_comment] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LF] = ACTIONS(2947), + [anon_sym_CR] = ACTIONS(2947), + [anon_sym_CR_LF] = ACTIONS(2947), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3248), - [anon_sym_POUND_LBRACK] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - }, - [1437] = { - [sym_line_comment] = STATE(1437), - [sym_block_comment] = STATE(1437), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_STAR_EQ] = ACTIONS(853), - [anon_sym_SLASH_EQ] = ACTIONS(853), - [anon_sym_PERCENT_EQ] = ACTIONS(853), - [anon_sym_LT_LT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(853), - [anon_sym_AMP_EQ] = ACTIONS(853), - [anon_sym_AMP_CARET_EQ] = ACTIONS(853), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_PIPE_EQ] = ACTIONS(853), - [anon_sym_CARET_EQ] = ACTIONS(853), - [anon_sym_COLON_EQ] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_as] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_mut] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_QMARK] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2947), + [anon_sym_spawn] = ACTIONS(2947), + [anon_sym_json_DOTdecode] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2947), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2947), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_or] = ACTIONS(2947), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_QMARK_DOT] = ACTIONS(2947), + [anon_sym_POUND_LBRACK] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_DOLLARif] = ACTIONS(2947), + [anon_sym_is] = ACTIONS(2947), + [anon_sym_BANGis] = ACTIONS(2947), + [anon_sym_in] = ACTIONS(2947), + [anon_sym_BANGin] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_select] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2947), + [anon_sym_rlock] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_sql] = ACTIONS(2947), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2947), + [sym_rune_literal] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_c_SQUOTE] = ACTIONS(2947), + [anon_sym_c_DQUOTE] = ACTIONS(2947), + [anon_sym_r_SQUOTE] = ACTIONS(2947), + [anon_sym_r_DQUOTE] = ACTIONS(2947), + [sym_pseudo_compile_time_identifier] = ACTIONS(2947), + [anon_sym_shared] = ACTIONS(2947), + [anon_sym_map_LBRACK] = ACTIONS(2947), + [anon_sym_chan] = ACTIONS(2947), + [anon_sym_thread] = ACTIONS(2947), + [anon_sym_atomic] = ACTIONS(2947), + [anon_sym_assert] = ACTIONS(2947), + [anon_sym_defer] = ACTIONS(2947), + [anon_sym_goto] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_DOLLARfor] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_asm] = ACTIONS(2947), }, - [1438] = { - [sym_line_comment] = STATE(1438), - [sym_block_comment] = STATE(1438), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_CR] = ACTIONS(2173), - [anon_sym_CR_LF] = ACTIONS(2173), + [1397] = { + [sym_line_comment] = STATE(1397), + [sym_block_comment] = STATE(1397), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), - }, - [1439] = { - [sym_line_comment] = STATE(1439), - [sym_block_comment] = STATE(1439), - [sym_reference_expression] = STATE(4463), - [sym_type_reference_expression] = STATE(2011), - [sym_plain_type] = STATE(2052), - [sym__plain_type_without_special] = STATE(2045), - [sym_anon_struct_type] = STATE(2044), - [sym_multi_return_type] = STATE(2045), - [sym_result_type] = STATE(2045), - [sym_option_type] = STATE(2045), - [sym_qualified_type] = STATE(2011), - [sym_fixed_array_type] = STATE(2044), - [sym_array_type] = STATE(2044), - [sym_pointer_type] = STATE(2044), - [sym_wrong_pointer_type] = STATE(2044), - [sym_map_type] = STATE(2044), - [sym_channel_type] = STATE(2044), - [sym_shared_type] = STATE(2044), - [sym_thread_type] = STATE(2044), - [sym_atomic_type] = STATE(2044), - [sym_generic_type] = STATE(2044), - [sym_function_type] = STATE(2044), - [sym_identifier] = ACTIONS(4152), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_as] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4166), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_AMP_CARET] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_or] = ACTIONS(821), - [anon_sym_QMARK_DOT] = ACTIONS(817), - [anon_sym_POUND_LBRACK] = ACTIONS(817), - [anon_sym_is] = ACTIONS(821), - [anon_sym_BANGis] = ACTIONS(817), - [anon_sym_in] = ACTIONS(821), - [anon_sym_BANGin] = ACTIONS(817), - [anon_sym_STAR_EQ] = ACTIONS(817), - [anon_sym_SLASH_EQ] = ACTIONS(817), - [anon_sym_PERCENT_EQ] = ACTIONS(817), - [anon_sym_LT_LT_EQ] = ACTIONS(817), - [anon_sym_GT_GT_EQ] = ACTIONS(817), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(817), - [anon_sym_AMP_EQ] = ACTIONS(817), - [anon_sym_AMP_CARET_EQ] = ACTIONS(817), - [anon_sym_PLUS_EQ] = ACTIONS(817), - [anon_sym_DASH_EQ] = ACTIONS(817), - [anon_sym_PIPE_EQ] = ACTIONS(817), - [anon_sym_CARET_EQ] = ACTIONS(817), - [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_shared] = ACTIONS(4170), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4174), - [anon_sym_thread] = ACTIONS(4176), - [anon_sym_atomic] = ACTIONS(4178), - }, - [1440] = { - [sym_line_comment] = STATE(1440), - [sym_block_comment] = STATE(1440), - [sym_reference_expression] = STATE(4463), - [sym_type_reference_expression] = STATE(2011), - [sym_plain_type] = STATE(2059), - [sym__plain_type_without_special] = STATE(2045), - [sym_anon_struct_type] = STATE(2044), - [sym_multi_return_type] = STATE(2045), - [sym_result_type] = STATE(2045), - [sym_option_type] = STATE(2045), - [sym_qualified_type] = STATE(2011), - [sym_fixed_array_type] = STATE(2044), - [sym_array_type] = STATE(2044), - [sym_pointer_type] = STATE(2044), - [sym_wrong_pointer_type] = STATE(2044), - [sym_map_type] = STATE(2044), - [sym_channel_type] = STATE(2044), - [sym_shared_type] = STATE(2044), - [sym_thread_type] = STATE(2044), - [sym_atomic_type] = STATE(2044), - [sym_generic_type] = STATE(2044), - [sym_function_type] = STATE(2044), - [sym_identifier] = ACTIONS(4152), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4166), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(879), - [anon_sym_POUND_LBRACK] = ACTIONS(879), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(879), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(879), - [anon_sym_STAR_EQ] = ACTIONS(879), - [anon_sym_SLASH_EQ] = ACTIONS(879), - [anon_sym_PERCENT_EQ] = ACTIONS(879), - [anon_sym_LT_LT_EQ] = ACTIONS(879), - [anon_sym_GT_GT_EQ] = ACTIONS(879), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(879), - [anon_sym_AMP_EQ] = ACTIONS(879), - [anon_sym_AMP_CARET_EQ] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(879), - [anon_sym_DASH_EQ] = ACTIONS(879), - [anon_sym_PIPE_EQ] = ACTIONS(879), - [anon_sym_CARET_EQ] = ACTIONS(879), - [anon_sym_COLON_EQ] = ACTIONS(879), - [anon_sym_shared] = ACTIONS(4170), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4174), - [anon_sym_thread] = ACTIONS(4176), - [anon_sym_atomic] = ACTIONS(4178), - }, - [1441] = { - [sym_line_comment] = STATE(1441), - [sym_block_comment] = STATE(1441), - [sym_reference_expression] = STATE(4463), - [sym_type_reference_expression] = STATE(2011), - [sym_plain_type] = STATE(2037), - [sym__plain_type_without_special] = STATE(2045), - [sym_anon_struct_type] = STATE(2044), - [sym_multi_return_type] = STATE(2045), - [sym_result_type] = STATE(2045), - [sym_option_type] = STATE(2045), - [sym_qualified_type] = STATE(2011), - [sym_fixed_array_type] = STATE(2044), - [sym_array_type] = STATE(2044), - [sym_pointer_type] = STATE(2044), - [sym_wrong_pointer_type] = STATE(2044), - [sym_map_type] = STATE(2044), - [sym_channel_type] = STATE(2044), - [sym_shared_type] = STATE(2044), - [sym_thread_type] = STATE(2044), - [sym_atomic_type] = STATE(2044), - [sym_generic_type] = STATE(2044), - [sym_function_type] = STATE(2044), - [sym_identifier] = ACTIONS(4152), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4166), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(875), - [anon_sym_POUND_LBRACK] = ACTIONS(875), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(875), - [anon_sym_STAR_EQ] = ACTIONS(875), - [anon_sym_SLASH_EQ] = ACTIONS(875), - [anon_sym_PERCENT_EQ] = ACTIONS(875), - [anon_sym_LT_LT_EQ] = ACTIONS(875), - [anon_sym_GT_GT_EQ] = ACTIONS(875), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(875), - [anon_sym_AMP_EQ] = ACTIONS(875), - [anon_sym_AMP_CARET_EQ] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(875), - [anon_sym_DASH_EQ] = ACTIONS(875), - [anon_sym_PIPE_EQ] = ACTIONS(875), - [anon_sym_CARET_EQ] = ACTIONS(875), - [anon_sym_COLON_EQ] = ACTIONS(875), - [anon_sym_shared] = ACTIONS(4170), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4174), - [anon_sym_thread] = ACTIONS(4176), - [anon_sym_atomic] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), }, - [1442] = { - [sym_line_comment] = STATE(1442), - [sym_block_comment] = STATE(1442), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), + [1398] = { + [sym_line_comment] = STATE(1398), + [sym_block_comment] = STATE(1398), + [sym_identifier] = ACTIONS(2885), + [anon_sym_LF] = ACTIONS(2885), + [anon_sym_CR] = ACTIONS(2885), + [anon_sym_CR_LF] = ACTIONS(2885), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_COMMA] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_EQ] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_PLUS_PLUS] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2433), - [anon_sym_AMP_CARET] = ACTIONS(2433), - [anon_sym_AMP_AMP] = ACTIONS(2433), - [anon_sym_PIPE_PIPE] = ACTIONS(2433), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2433), - [anon_sym_POUND_LBRACK] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_DOT] = ACTIONS(2885), + [anon_sym_as] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_fn] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2885), + [anon_sym_mut] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2885), + [anon_sym_spawn] = ACTIONS(2885), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2885), + [sym_none] = ACTIONS(2885), + [sym_true] = ACTIONS(2885), + [sym_false] = ACTIONS(2885), + [sym_nil] = ACTIONS(2885), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_DOLLARif] = ACTIONS(2885), + [anon_sym_is] = ACTIONS(2885), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2885), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2885), + [anon_sym_select] = ACTIONS(2885), + [anon_sym_lock] = ACTIONS(2885), + [anon_sym_rlock] = ACTIONS(2885), + [anon_sym_unsafe] = ACTIONS(2885), + [anon_sym_sql] = ACTIONS(2885), + [sym_int_literal] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2885), + [anon_sym_shared] = ACTIONS(2885), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2885), + [anon_sym_thread] = ACTIONS(2885), + [anon_sym_atomic] = ACTIONS(2885), + [anon_sym_assert] = ACTIONS(2885), + [anon_sym_defer] = ACTIONS(2885), + [anon_sym_goto] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_DOLLARfor] = ACTIONS(2885), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_asm] = ACTIONS(2885), }, - [1443] = { - [sym_line_comment] = STATE(1443), - [sym_block_comment] = STATE(1443), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), + [1399] = { + [sym_line_comment] = STATE(1399), + [sym_block_comment] = STATE(1399), + [sym_identifier] = ACTIONS(2845), + [anon_sym_LF] = ACTIONS(2845), + [anon_sym_CR] = ACTIONS(2845), + [anon_sym_CR_LF] = ACTIONS(2845), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym_DOT] = ACTIONS(2845), + [anon_sym_as] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_COMMA] = ACTIONS(2845), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym_fn] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_PERCENT] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_mut] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_QMARK] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_go] = ACTIONS(2845), + [anon_sym_spawn] = ACTIONS(2845), + [anon_sym_json_DOTdecode] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_LBRACK2] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_CARET] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_LT_DASH] = ACTIONS(2845), + [anon_sym_LT_LT] = ACTIONS(2845), + [anon_sym_GT_GT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2845), + [anon_sym_AMP_CARET] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_or] = ACTIONS(2845), + [sym_none] = ACTIONS(2845), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_nil] = ACTIONS(2845), + [anon_sym_QMARK_DOT] = ACTIONS(2845), + [anon_sym_POUND_LBRACK] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_DOLLARif] = ACTIONS(2845), + [anon_sym_is] = ACTIONS(2845), + [anon_sym_BANGis] = ACTIONS(2845), + [anon_sym_in] = ACTIONS(2845), + [anon_sym_BANGin] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_select] = ACTIONS(2845), + [anon_sym_lock] = ACTIONS(2845), + [anon_sym_rlock] = ACTIONS(2845), + [anon_sym_unsafe] = ACTIONS(2845), + [anon_sym_sql] = ACTIONS(2845), + [sym_int_literal] = ACTIONS(2845), + [sym_float_literal] = ACTIONS(2845), + [sym_rune_literal] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [anon_sym_c_SQUOTE] = ACTIONS(2845), + [anon_sym_c_DQUOTE] = ACTIONS(2845), + [anon_sym_r_SQUOTE] = ACTIONS(2845), + [anon_sym_r_DQUOTE] = ACTIONS(2845), + [sym_pseudo_compile_time_identifier] = ACTIONS(2845), + [anon_sym_shared] = ACTIONS(2845), + [anon_sym_map_LBRACK] = ACTIONS(2845), + [anon_sym_chan] = ACTIONS(2845), + [anon_sym_thread] = ACTIONS(2845), + [anon_sym_atomic] = ACTIONS(2845), + [anon_sym_assert] = ACTIONS(2845), + [anon_sym_defer] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_DOLLARfor] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2845), + [anon_sym_asm] = ACTIONS(2845), }, - [1444] = { - [sym_line_comment] = STATE(1444), - [sym_block_comment] = STATE(1444), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), + [1400] = { + [sym_line_comment] = STATE(1400), + [sym_block_comment] = STATE(1400), + [sym_identifier] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2849), + [anon_sym_CR] = ACTIONS(2849), + [anon_sym_CR_LF] = ACTIONS(2849), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [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_DOT_DOT_DOT] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [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(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), + [anon_sym_assert] = ACTIONS(2849), + [anon_sym_defer] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_DOLLARfor] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_asm] = ACTIONS(2849), }, - [1445] = { - [sym_line_comment] = STATE(1445), - [sym_block_comment] = STATE(1445), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), + [1401] = { + [sym_line_comment] = STATE(1401), + [sym_block_comment] = STATE(1401), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LF] = ACTIONS(2877), + [anon_sym_CR] = ACTIONS(2877), + [anon_sym_CR_LF] = ACTIONS(2877), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3035), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_defer] = ACTIONS(2877), + [anon_sym_goto] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_DOLLARfor] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_asm] = ACTIONS(2877), }, - [1446] = { - [sym_line_comment] = STATE(1446), - [sym_block_comment] = STATE(1446), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), + [1402] = { + [sym_line_comment] = STATE(1402), + [sym_block_comment] = STATE(1402), + [sym_identifier] = ACTIONS(2889), + [anon_sym_LF] = ACTIONS(2889), + [anon_sym_CR] = ACTIONS(2889), + [anon_sym_CR_LF] = ACTIONS(2889), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_fn] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), + [anon_sym_assert] = ACTIONS(2889), + [anon_sym_defer] = ACTIONS(2889), + [anon_sym_goto] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_DOLLARfor] = ACTIONS(2889), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_asm] = ACTIONS(2889), }, - [1447] = { - [sym_line_comment] = STATE(1447), - [sym_block_comment] = STATE(1447), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LF] = ACTIONS(2831), - [anon_sym_CR] = ACTIONS(2831), - [anon_sym_CR_LF] = ACTIONS(2831), + [1403] = { + [sym_line_comment] = STATE(1403), + [sym_block_comment] = STATE(1403), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2831), - [anon_sym_BANG_EQ] = ACTIONS(2831), - [anon_sym_LT_EQ] = ACTIONS(2831), - [anon_sym_GT_EQ] = ACTIONS(2831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2831), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2831), - [anon_sym_AMP_CARET] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2831), - [anon_sym_POUND_LBRACK] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2831), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), - }, - [1448] = { - [sym_line_comment] = STATE(1448), - [sym_block_comment] = STATE(1448), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_LBRACK2] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_GT_GT_GT] = ACTIONS(851), - [anon_sym_AMP_CARET] = ACTIONS(851), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_or] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(849), - [anon_sym_POUND_LBRACK] = ACTIONS(849), - [anon_sym_is] = ACTIONS(851), - [anon_sym_BANGis] = ACTIONS(849), - [anon_sym_in] = ACTIONS(851), - [anon_sym_BANGin] = ACTIONS(849), - [anon_sym_STAR_EQ] = ACTIONS(849), - [anon_sym_SLASH_EQ] = ACTIONS(849), - [anon_sym_PERCENT_EQ] = ACTIONS(849), - [anon_sym_LT_LT_EQ] = ACTIONS(849), - [anon_sym_GT_GT_EQ] = ACTIONS(849), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(849), - [anon_sym_AMP_EQ] = ACTIONS(849), - [anon_sym_AMP_CARET_EQ] = ACTIONS(849), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_PIPE_EQ] = ACTIONS(849), - [anon_sym_CARET_EQ] = ACTIONS(849), - [anon_sym_COLON_EQ] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, - [1449] = { - [sym_line_comment] = STATE(1449), - [sym_block_comment] = STATE(1449), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LF] = ACTIONS(2841), - [anon_sym_CR] = ACTIONS(2841), - [anon_sym_CR_LF] = ACTIONS(2841), + [1404] = { + [sym_line_comment] = STATE(1404), + [sym_block_comment] = STATE(1404), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_as] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_COMMA] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(2841), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_PERCENT] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_EQ_EQ] = ACTIONS(2841), - [anon_sym_BANG_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_mut] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_go] = ACTIONS(2841), - [anon_sym_spawn] = ACTIONS(2841), - [anon_sym_json_DOTdecode] = ACTIONS(2841), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK2] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_CARET] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_LT_DASH] = ACTIONS(2841), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(2841), - [anon_sym_GT_GT_GT] = ACTIONS(2841), - [anon_sym_AMP_CARET] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [sym_none] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_nil] = ACTIONS(2841), - [anon_sym_QMARK_DOT] = ACTIONS(2841), - [anon_sym_POUND_LBRACK] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_DOLLARif] = ACTIONS(2841), - [anon_sym_is] = ACTIONS(2841), - [anon_sym_BANGis] = ACTIONS(2841), - [anon_sym_in] = ACTIONS(2841), - [anon_sym_BANGin] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_select] = ACTIONS(2841), - [anon_sym_lock] = ACTIONS(2841), - [anon_sym_rlock] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_sql] = ACTIONS(2841), - [sym_int_literal] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(2841), - [sym_rune_literal] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [anon_sym_c_SQUOTE] = ACTIONS(2841), - [anon_sym_c_DQUOTE] = ACTIONS(2841), - [anon_sym_r_SQUOTE] = ACTIONS(2841), - [anon_sym_r_DQUOTE] = ACTIONS(2841), - [sym_pseudo_compile_time_identifier] = ACTIONS(2841), - [anon_sym_shared] = ACTIONS(2841), - [anon_sym_map_LBRACK] = ACTIONS(2841), - [anon_sym_chan] = ACTIONS(2841), - [anon_sym_thread] = ACTIONS(2841), - [anon_sym_atomic] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_EQ_EQ] = ACTIONS(3324), + [anon_sym_BANG_EQ] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3324), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3324), + [anon_sym_AMP_CARET] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_QMARK_DOT] = ACTIONS(3324), + [anon_sym_POUND_LBRACK] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_is] = ACTIONS(3324), + [anon_sym_BANGis] = ACTIONS(3324), + [anon_sym_in] = ACTIONS(3324), + [anon_sym_BANGin] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_assert] = ACTIONS(3324), + [anon_sym_defer] = ACTIONS(3324), + [anon_sym_goto] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_DOLLARfor] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3324), + [anon_sym_asm] = ACTIONS(3324), }, - [1450] = { - [sym_line_comment] = STATE(1450), - [sym_block_comment] = STATE(1450), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_CR] = ACTIONS(2953), - [anon_sym_CR_LF] = ACTIONS(2953), + [1405] = { + [sym_line_comment] = STATE(1405), + [sym_block_comment] = STATE(1405), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_c_SQUOTE] = ACTIONS(2953), - [anon_sym_c_DQUOTE] = ACTIONS(2953), - [anon_sym_r_SQUOTE] = ACTIONS(2953), - [anon_sym_r_DQUOTE] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), }, - [1451] = { - [sym_line_comment] = STATE(1451), - [sym_block_comment] = STATE(1451), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [1406] = { + [sym_line_comment] = STATE(1406), + [sym_block_comment] = STATE(1406), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_RPAREN] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_c_SQUOTE] = ACTIONS(3318), + [anon_sym_c_DQUOTE] = ACTIONS(3318), + [anon_sym_r_SQUOTE] = ACTIONS(3318), + [anon_sym_r_DQUOTE] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), }, - [1452] = { - [sym_line_comment] = STATE(1452), - [sym_block_comment] = STATE(1452), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), + [1407] = { + [sym_line_comment] = STATE(1407), + [sym_block_comment] = STATE(1407), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_c_SQUOTE] = ACTIONS(3262), + [anon_sym_c_DQUOTE] = ACTIONS(3262), + [anon_sym_r_SQUOTE] = ACTIONS(3262), + [anon_sym_r_DQUOTE] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_defer] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_DOLLARfor] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), }, - [1453] = { - [sym_line_comment] = STATE(1453), - [sym_block_comment] = STATE(1453), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), + [1408] = { + [sym_line_comment] = STATE(1408), + [sym_block_comment] = STATE(1408), + [aux_sym_strictly_expression_list_repeat1] = STATE(1740), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_CR] = ACTIONS(1995), + [anon_sym_CR_LF] = ACTIONS(1995), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - }, - [1454] = { - [sym_line_comment] = STATE(1454), - [sym_block_comment] = STATE(1454), - [sym_reference_expression] = STATE(4526), - [sym_type_reference_expression] = STATE(2019), - [sym_plain_type] = STATE(2126), - [sym__plain_type_without_special] = STATE(2090), - [sym_anon_struct_type] = STATE(2091), - [sym_multi_return_type] = STATE(2090), - [sym_result_type] = STATE(2090), - [sym_option_type] = STATE(2090), - [sym_qualified_type] = STATE(2019), - [sym_fixed_array_type] = STATE(2091), - [sym_array_type] = STATE(2091), - [sym_pointer_type] = STATE(2091), - [sym_wrong_pointer_type] = STATE(2091), - [sym_map_type] = STATE(2091), - [sym_channel_type] = STATE(2091), - [sym_shared_type] = STATE(2091), - [sym_thread_type] = STATE(2091), - [sym_atomic_type] = STATE(2091), - [sym_generic_type] = STATE(2091), - [sym_function_type] = STATE(2091), - [sym_identifier] = ACTIONS(4180), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_as] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4192), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_LT_DASH] = ACTIONS(817), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_AMP_CARET] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_or] = ACTIONS(821), - [anon_sym_QMARK_DOT] = ACTIONS(817), - [anon_sym_POUND_LBRACK] = ACTIONS(817), - [anon_sym_is] = ACTIONS(821), - [anon_sym_BANGis] = ACTIONS(817), - [anon_sym_in] = ACTIONS(821), - [anon_sym_BANGin] = ACTIONS(817), - [anon_sym_STAR_EQ] = ACTIONS(817), - [anon_sym_SLASH_EQ] = ACTIONS(817), - [anon_sym_PERCENT_EQ] = ACTIONS(817), - [anon_sym_LT_LT_EQ] = ACTIONS(817), - [anon_sym_GT_GT_EQ] = ACTIONS(817), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(817), - [anon_sym_AMP_EQ] = ACTIONS(817), - [anon_sym_AMP_CARET_EQ] = ACTIONS(817), - [anon_sym_PLUS_EQ] = ACTIONS(817), - [anon_sym_DASH_EQ] = ACTIONS(817), - [anon_sym_PIPE_EQ] = ACTIONS(817), - [anon_sym_CARET_EQ] = ACTIONS(817), - [anon_sym_shared] = ACTIONS(4198), - [anon_sym_map_LBRACK] = ACTIONS(4200), - [anon_sym_chan] = ACTIONS(4202), - [anon_sym_thread] = ACTIONS(4204), - [anon_sym_atomic] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym___global] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_fn] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_pub] = ACTIONS(1995), + [anon_sym_mut] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_interface] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_go] = ACTIONS(1995), + [anon_sym_spawn] = ACTIONS(1995), + [anon_sym_json_DOTdecode] = ACTIONS(1995), + [anon_sym_LBRACK2] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_DASH] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_nil] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_DOLLARif] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_select] = ACTIONS(1995), + [anon_sym_STAR_EQ] = ACTIONS(2001), + [anon_sym_SLASH_EQ] = ACTIONS(2001), + [anon_sym_PERCENT_EQ] = ACTIONS(2001), + [anon_sym_LT_LT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_AMP_EQ] = ACTIONS(2001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(2001), + [anon_sym_DASH_EQ] = ACTIONS(2001), + [anon_sym_PIPE_EQ] = ACTIONS(2001), + [anon_sym_CARET_EQ] = ACTIONS(2001), + [anon_sym_COLON_EQ] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(1995), + [anon_sym_rlock] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_sql] = ACTIONS(1995), + [sym_int_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), + [sym_rune_literal] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_c_SQUOTE] = ACTIONS(1995), + [anon_sym_c_DQUOTE] = ACTIONS(1995), + [anon_sym_r_SQUOTE] = ACTIONS(1995), + [anon_sym_r_DQUOTE] = ACTIONS(1995), + [sym_pseudo_compile_time_identifier] = ACTIONS(1995), + [anon_sym_shared] = ACTIONS(1995), + [anon_sym_map_LBRACK] = ACTIONS(1995), + [anon_sym_chan] = ACTIONS(1995), + [anon_sym_thread] = ACTIONS(1995), + [anon_sym_atomic] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_defer] = ACTIONS(1995), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_DOLLARfor] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_asm] = ACTIONS(1995), + [anon_sym_AT_LBRACK] = ACTIONS(1995), }, - [1455] = { - [sym_line_comment] = STATE(1455), - [sym_block_comment] = STATE(1455), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), + [1409] = { + [sym_line_comment] = STATE(1409), + [sym_block_comment] = STATE(1409), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_c_SQUOTE] = ACTIONS(2965), - [anon_sym_c_DQUOTE] = ACTIONS(2965), - [anon_sym_r_SQUOTE] = ACTIONS(2965), - [anon_sym_r_DQUOTE] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, - [1456] = { - [sym_line_comment] = STATE(1456), - [sym_block_comment] = STATE(1456), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [1410] = { + [sym_line_comment] = STATE(1410), + [sym_block_comment] = STATE(1410), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, - [1457] = { - [sym_line_comment] = STATE(1457), - [sym_block_comment] = STATE(1457), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LF] = ACTIONS(3039), - [anon_sym_CR] = ACTIONS(3039), - [anon_sym_CR_LF] = ACTIONS(3039), + [1411] = { + [sym_line_comment] = STATE(1411), + [sym_block_comment] = STATE(1411), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [anon_sym_c_SQUOTE] = ACTIONS(3039), - [anon_sym_c_DQUOTE] = ACTIONS(3039), - [anon_sym_r_SQUOTE] = ACTIONS(3039), - [anon_sym_r_DQUOTE] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_AMP_CARET] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_rune_literal] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_c_SQUOTE] = ACTIONS(2057), + [anon_sym_c_DQUOTE] = ACTIONS(2057), + [anon_sym_r_SQUOTE] = ACTIONS(2057), + [anon_sym_r_DQUOTE] = ACTIONS(2057), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2057), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), }, - [1458] = { - [sym_line_comment] = STATE(1458), - [sym_block_comment] = STATE(1458), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), + [1412] = { + [sym_line_comment] = STATE(1412), + [sym_block_comment] = STATE(1412), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2075), + [anon_sym_CR] = ACTIONS(2075), + [anon_sym_CR_LF] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_GT_GT_GT] = ACTIONS(2451), - [anon_sym_AMP_CARET] = ACTIONS(2451), - [anon_sym_AMP_AMP] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2451), - [anon_sym_or] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2451), - [anon_sym_POUND_LBRACK] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - }, - [1459] = { - [sym_line_comment] = STATE(1459), - [sym_block_comment] = STATE(1459), - [sym_reference_expression] = STATE(4526), - [sym_type_reference_expression] = STATE(2019), - [sym_plain_type] = STATE(2119), - [sym__plain_type_without_special] = STATE(2090), - [sym_anon_struct_type] = STATE(2091), - [sym_multi_return_type] = STATE(2090), - [sym_result_type] = STATE(2090), - [sym_option_type] = STATE(2090), - [sym_qualified_type] = STATE(2019), - [sym_fixed_array_type] = STATE(2091), - [sym_array_type] = STATE(2091), - [sym_pointer_type] = STATE(2091), - [sym_wrong_pointer_type] = STATE(2091), - [sym_map_type] = STATE(2091), - [sym_channel_type] = STATE(2091), - [sym_shared_type] = STATE(2091), - [sym_thread_type] = STATE(2091), - [sym_atomic_type] = STATE(2091), - [sym_generic_type] = STATE(2091), - [sym_function_type] = STATE(2091), - [sym_identifier] = ACTIONS(4180), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4192), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_LT_DASH] = ACTIONS(879), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(879), - [anon_sym_POUND_LBRACK] = ACTIONS(879), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(879), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(879), - [anon_sym_STAR_EQ] = ACTIONS(879), - [anon_sym_SLASH_EQ] = ACTIONS(879), - [anon_sym_PERCENT_EQ] = ACTIONS(879), - [anon_sym_LT_LT_EQ] = ACTIONS(879), - [anon_sym_GT_GT_EQ] = ACTIONS(879), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(879), - [anon_sym_AMP_EQ] = ACTIONS(879), - [anon_sym_AMP_CARET_EQ] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(879), - [anon_sym_DASH_EQ] = ACTIONS(879), - [anon_sym_PIPE_EQ] = ACTIONS(879), - [anon_sym_CARET_EQ] = ACTIONS(879), - [anon_sym_shared] = ACTIONS(4198), - [anon_sym_map_LBRACK] = ACTIONS(4200), - [anon_sym_chan] = ACTIONS(4202), - [anon_sym_thread] = ACTIONS(4204), - [anon_sym_atomic] = ACTIONS(4206), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2075), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_rune_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_c_SQUOTE] = ACTIONS(2075), + [anon_sym_c_DQUOTE] = ACTIONS(2075), + [anon_sym_r_SQUOTE] = ACTIONS(2075), + [anon_sym_r_DQUOTE] = ACTIONS(2075), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2075), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), }, - [1460] = { - [sym_line_comment] = STATE(1460), - [sym_block_comment] = STATE(1460), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [1413] = { + [sym_line_comment] = STATE(1413), + [sym_block_comment] = STATE(1413), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_CR] = ACTIONS(2065), + [anon_sym_CR_LF] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_RPAREN] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_c_SQUOTE] = ACTIONS(2065), + [anon_sym_c_DQUOTE] = ACTIONS(2065), + [anon_sym_r_SQUOTE] = ACTIONS(2065), + [anon_sym_r_DQUOTE] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), }, - [1461] = { - [sym_line_comment] = STATE(1461), - [sym_block_comment] = STATE(1461), - [sym_identifier] = ACTIONS(3300), - [anon_sym_LF] = ACTIONS(3300), - [anon_sym_CR] = ACTIONS(3300), - [anon_sym_CR_LF] = ACTIONS(3300), + [1414] = { + [sym_line_comment] = STATE(1414), + [sym_block_comment] = STATE(1414), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_CR] = ACTIONS(2061), + [anon_sym_CR_LF] = ACTIONS(2061), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_DOT] = ACTIONS(3300), - [anon_sym_as] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_COMMA] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3300), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_PERCENT] = ACTIONS(3300), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_EQ_EQ] = ACTIONS(3300), - [anon_sym_BANG_EQ] = ACTIONS(3300), - [anon_sym_LT_EQ] = ACTIONS(3300), - [anon_sym_GT_EQ] = ACTIONS(3300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_QMARK] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_go] = ACTIONS(3300), - [anon_sym_spawn] = ACTIONS(3300), - [anon_sym_json_DOTdecode] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_LT_DASH] = ACTIONS(3300), - [anon_sym_LT_LT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3300), - [anon_sym_GT_GT_GT] = ACTIONS(3300), - [anon_sym_AMP_CARET] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_PIPE_PIPE] = ACTIONS(3300), - [anon_sym_or] = ACTIONS(3300), - [sym_none] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_nil] = ACTIONS(3300), - [anon_sym_QMARK_DOT] = ACTIONS(3300), - [anon_sym_POUND_LBRACK] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_DOLLARif] = ACTIONS(3300), - [anon_sym_is] = ACTIONS(3300), - [anon_sym_BANGis] = ACTIONS(3300), - [anon_sym_in] = ACTIONS(3300), - [anon_sym_BANGin] = ACTIONS(3300), - [anon_sym_match] = ACTIONS(3300), - [anon_sym_select] = ACTIONS(3300), - [anon_sym_lock] = ACTIONS(3300), - [anon_sym_rlock] = ACTIONS(3300), - [anon_sym_unsafe] = ACTIONS(3300), - [anon_sym_sql] = ACTIONS(3300), - [sym_int_literal] = ACTIONS(3300), - [sym_float_literal] = ACTIONS(3300), - [sym_rune_literal] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_c_SQUOTE] = ACTIONS(3300), - [anon_sym_c_DQUOTE] = ACTIONS(3300), - [anon_sym_r_SQUOTE] = ACTIONS(3300), - [anon_sym_r_DQUOTE] = ACTIONS(3300), - [sym_pseudo_compile_time_identifier] = ACTIONS(3300), - [anon_sym_shared] = ACTIONS(3300), - [anon_sym_map_LBRACK] = ACTIONS(3300), - [anon_sym_chan] = ACTIONS(3300), - [anon_sym_thread] = ACTIONS(3300), - [anon_sym_atomic] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_LT_EQ] = ACTIONS(2061), + [anon_sym_GT_EQ] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2061), + [anon_sym_AMP_CARET] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2061), + [anon_sym_PIPE_PIPE] = ACTIONS(2061), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_rune_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [anon_sym_c_SQUOTE] = ACTIONS(2061), + [anon_sym_c_DQUOTE] = ACTIONS(2061), + [anon_sym_r_SQUOTE] = ACTIONS(2061), + [anon_sym_r_DQUOTE] = ACTIONS(2061), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2061), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), }, - [1462] = { - [sym_line_comment] = STATE(1462), - [sym_block_comment] = STATE(1462), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), + [1415] = { + [sym_line_comment] = STATE(1415), + [sym_block_comment] = STATE(1415), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_RPAREN] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_EQ_EQ] = ACTIONS(3340), - [anon_sym_BANG_EQ] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3340), - [anon_sym_AMP_CARET] = ACTIONS(3340), - [anon_sym_AMP_AMP] = ACTIONS(3340), - [anon_sym_PIPE_PIPE] = ACTIONS(3340), - [anon_sym_or] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_c_SQUOTE] = ACTIONS(3340), - [anon_sym_c_DQUOTE] = ACTIONS(3340), - [anon_sym_r_SQUOTE] = ACTIONS(3340), - [anon_sym_r_DQUOTE] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, - [1463] = { - [sym_line_comment] = STATE(1463), - [sym_block_comment] = STATE(1463), - [sym_identifier] = ACTIONS(3304), - [anon_sym_LF] = ACTIONS(3304), - [anon_sym_CR] = ACTIONS(3304), - [anon_sym_CR_LF] = ACTIONS(3304), + [1416] = { + [sym_line_comment] = STATE(1416), + [sym_block_comment] = STATE(1416), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_DOT] = ACTIONS(3304), - [anon_sym_as] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_COMMA] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_RPAREN] = ACTIONS(3304), - [anon_sym_fn] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_PERCENT] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_GT] = ACTIONS(3304), - [anon_sym_EQ_EQ] = ACTIONS(3304), - [anon_sym_BANG_EQ] = ACTIONS(3304), - [anon_sym_LT_EQ] = ACTIONS(3304), - [anon_sym_GT_EQ] = ACTIONS(3304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_mut] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_QMARK] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3304), - [anon_sym_json_DOTdecode] = ACTIONS(3304), - [anon_sym_PIPE] = ACTIONS(3304), - [anon_sym_LBRACK2] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_CARET] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_LT_DASH] = ACTIONS(3304), - [anon_sym_LT_LT] = ACTIONS(3304), - [anon_sym_GT_GT] = ACTIONS(3304), - [anon_sym_GT_GT_GT] = ACTIONS(3304), - [anon_sym_AMP_CARET] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_PIPE_PIPE] = ACTIONS(3304), - [anon_sym_or] = ACTIONS(3304), - [sym_none] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_nil] = ACTIONS(3304), - [anon_sym_QMARK_DOT] = ACTIONS(3304), - [anon_sym_POUND_LBRACK] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_DOLLARif] = ACTIONS(3304), - [anon_sym_is] = ACTIONS(3304), - [anon_sym_BANGis] = ACTIONS(3304), - [anon_sym_in] = ACTIONS(3304), - [anon_sym_BANGin] = ACTIONS(3304), - [anon_sym_match] = ACTIONS(3304), - [anon_sym_select] = ACTIONS(3304), - [anon_sym_lock] = ACTIONS(3304), - [anon_sym_rlock] = ACTIONS(3304), - [anon_sym_unsafe] = ACTIONS(3304), - [anon_sym_sql] = ACTIONS(3304), - [sym_int_literal] = ACTIONS(3304), - [sym_float_literal] = ACTIONS(3304), - [sym_rune_literal] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_c_SQUOTE] = ACTIONS(3304), - [anon_sym_c_DQUOTE] = ACTIONS(3304), - [anon_sym_r_SQUOTE] = ACTIONS(3304), - [anon_sym_r_DQUOTE] = ACTIONS(3304), - [sym_pseudo_compile_time_identifier] = ACTIONS(3304), - [anon_sym_shared] = ACTIONS(3304), - [anon_sym_map_LBRACK] = ACTIONS(3304), - [anon_sym_chan] = ACTIONS(3304), - [anon_sym_thread] = ACTIONS(3304), - [anon_sym_atomic] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, - [1464] = { - [sym_line_comment] = STATE(1464), - [sym_block_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LF] = ACTIONS(3308), - [anon_sym_CR] = ACTIONS(3308), - [anon_sym_CR_LF] = ACTIONS(3308), + [1417] = { + [sym_line_comment] = STATE(1417), + [sym_block_comment] = STATE(1417), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LF] = ACTIONS(2053), + [anon_sym_CR] = ACTIONS(2053), + [anon_sym_CR_LF] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_as] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_COMMA] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_RPAREN] = ACTIONS(3308), - [anon_sym_fn] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_PERCENT] = ACTIONS(3308), - [anon_sym_LT] = ACTIONS(3308), - [anon_sym_GT] = ACTIONS(3308), - [anon_sym_EQ_EQ] = ACTIONS(3308), - [anon_sym_BANG_EQ] = ACTIONS(3308), - [anon_sym_LT_EQ] = ACTIONS(3308), - [anon_sym_GT_EQ] = ACTIONS(3308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_mut] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_QMARK] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3308), - [anon_sym_spawn] = ACTIONS(3308), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_PIPE] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_CARET] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_LT_DASH] = ACTIONS(3308), - [anon_sym_LT_LT] = ACTIONS(3308), - [anon_sym_GT_GT] = ACTIONS(3308), - [anon_sym_GT_GT_GT] = ACTIONS(3308), - [anon_sym_AMP_CARET] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_PIPE_PIPE] = ACTIONS(3308), - [anon_sym_or] = ACTIONS(3308), - [sym_none] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_nil] = ACTIONS(3308), - [anon_sym_QMARK_DOT] = ACTIONS(3308), - [anon_sym_POUND_LBRACK] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3308), - [anon_sym_is] = ACTIONS(3308), - [anon_sym_BANGis] = ACTIONS(3308), - [anon_sym_in] = ACTIONS(3308), - [anon_sym_BANGin] = ACTIONS(3308), - [anon_sym_match] = ACTIONS(3308), - [anon_sym_select] = ACTIONS(3308), - [anon_sym_lock] = ACTIONS(3308), - [anon_sym_rlock] = ACTIONS(3308), - [anon_sym_unsafe] = ACTIONS(3308), - [anon_sym_sql] = ACTIONS(3308), - [sym_int_literal] = ACTIONS(3308), - [sym_float_literal] = ACTIONS(3308), - [sym_rune_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_c_SQUOTE] = ACTIONS(3308), - [anon_sym_c_DQUOTE] = ACTIONS(3308), - [anon_sym_r_SQUOTE] = ACTIONS(3308), - [anon_sym_r_DQUOTE] = ACTIONS(3308), - [sym_pseudo_compile_time_identifier] = ACTIONS(3308), - [anon_sym_shared] = ACTIONS(3308), - [anon_sym_map_LBRACK] = ACTIONS(3308), - [anon_sym_chan] = ACTIONS(3308), - [anon_sym_thread] = ACTIONS(3308), - [anon_sym_atomic] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, - [1465] = { - [sym_line_comment] = STATE(1465), - [sym_block_comment] = STATE(1465), - [sym_identifier] = ACTIONS(3244), - [anon_sym_LF] = ACTIONS(3244), - [anon_sym_CR] = ACTIONS(3244), - [anon_sym_CR_LF] = ACTIONS(3244), + [1418] = { + [sym_line_comment] = STATE(1418), + [sym_block_comment] = STATE(1418), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_CR] = ACTIONS(2049), + [anon_sym_CR_LF] = ACTIONS(2049), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2049), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + [sym_rune_literal] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_c_SQUOTE] = ACTIONS(2049), + [anon_sym_c_DQUOTE] = ACTIONS(2049), + [anon_sym_r_SQUOTE] = ACTIONS(2049), + [anon_sym_r_DQUOTE] = ACTIONS(2049), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2049), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), + }, + [1419] = { + [sym_line_comment] = STATE(1419), + [sym_block_comment] = STATE(1419), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LF] = ACTIONS(2069), + [anon_sym_CR] = ACTIONS(2069), + [anon_sym_CR_LF] = ACTIONS(2069), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3244), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3244), - [anon_sym_POUND_LBRACK] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3244), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_c_SQUOTE] = ACTIONS(3244), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3244), - [anon_sym_r_DQUOTE] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3244), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_mut] = ACTIONS(2069), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(2069), + [anon_sym_spawn] = ACTIONS(2069), + [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(2069), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_nil] = ACTIONS(2069), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_DOLLARif] = ACTIONS(2069), + [anon_sym_is] = ACTIONS(4130), + [anon_sym_BANGis] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_lock] = ACTIONS(2069), + [anon_sym_rlock] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_sql] = ACTIONS(2069), + [sym_int_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [anon_sym_c_SQUOTE] = ACTIONS(2069), + [anon_sym_c_DQUOTE] = ACTIONS(2069), + [anon_sym_r_SQUOTE] = ACTIONS(2069), + [anon_sym_r_DQUOTE] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2069), + [anon_sym_shared] = ACTIONS(2069), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2069), + [anon_sym_thread] = ACTIONS(2069), + [anon_sym_atomic] = ACTIONS(2069), }, - [1466] = { - [sym_line_comment] = STATE(1466), - [sym_block_comment] = STATE(1466), - [sym_identifier] = ACTIONS(2819), - [anon_sym_LF] = ACTIONS(2819), - [anon_sym_CR] = ACTIONS(2819), - [anon_sym_CR_LF] = ACTIONS(2819), + [1420] = { + [sym_line_comment] = STATE(1420), + [sym_block_comment] = STATE(1420), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(4132), + [anon_sym_LF] = ACTIONS(4132), + [anon_sym_CR] = ACTIONS(4132), + [anon_sym_CR_LF] = ACTIONS(4132), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2819), - [anon_sym_as] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_RPAREN] = ACTIONS(2819), - [anon_sym_fn] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_SLASH] = ACTIONS(2819), - [anon_sym_PERCENT] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_GT] = ACTIONS(2819), - [anon_sym_EQ_EQ] = ACTIONS(2819), - [anon_sym_BANG_EQ] = ACTIONS(2819), - [anon_sym_LT_EQ] = ACTIONS(2819), - [anon_sym_GT_EQ] = ACTIONS(2819), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_mut] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2819), - [anon_sym_json_DOTdecode] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK2] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_CARET] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_LT_DASH] = ACTIONS(2819), - [anon_sym_LT_LT] = ACTIONS(2819), - [anon_sym_GT_GT] = ACTIONS(2819), - [anon_sym_GT_GT_GT] = ACTIONS(2819), - [anon_sym_AMP_CARET] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [sym_none] = ACTIONS(2819), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_nil] = ACTIONS(2819), - [anon_sym_QMARK_DOT] = ACTIONS(2819), - [anon_sym_POUND_LBRACK] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_is] = ACTIONS(2819), - [anon_sym_BANGis] = ACTIONS(2819), - [anon_sym_in] = ACTIONS(2819), - [anon_sym_BANGin] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [anon_sym_select] = ACTIONS(2819), - [anon_sym_lock] = ACTIONS(2819), - [anon_sym_rlock] = ACTIONS(2819), - [anon_sym_unsafe] = ACTIONS(2819), - [anon_sym_sql] = ACTIONS(2819), - [sym_int_literal] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), - [sym_rune_literal] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_c_SQUOTE] = ACTIONS(2819), - [anon_sym_c_DQUOTE] = ACTIONS(2819), - [anon_sym_r_SQUOTE] = ACTIONS(2819), - [anon_sym_r_DQUOTE] = ACTIONS(2819), - [sym_pseudo_compile_time_identifier] = ACTIONS(2819), - [anon_sym_shared] = ACTIONS(2819), - [anon_sym_map_LBRACK] = ACTIONS(2819), - [anon_sym_chan] = ACTIONS(2819), - [anon_sym_thread] = ACTIONS(2819), - [anon_sym_atomic] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_fn] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4132), + [anon_sym_spawn] = ACTIONS(4132), + [anon_sym_json_DOTdecode] = ACTIONS(4132), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_CARET] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_LT_DASH] = ACTIONS(4132), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(4132), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [sym_nil] = ACTIONS(4132), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_DOLLARif] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4132), + [anon_sym_select] = ACTIONS(4132), + [anon_sym_lock] = ACTIONS(4132), + [anon_sym_rlock] = ACTIONS(4132), + [anon_sym_unsafe] = ACTIONS(4132), + [anon_sym_sql] = ACTIONS(4132), + [sym_int_literal] = ACTIONS(4132), + [sym_float_literal] = ACTIONS(4132), + [sym_rune_literal] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [anon_sym_c_SQUOTE] = ACTIONS(4132), + [anon_sym_c_DQUOTE] = ACTIONS(4132), + [anon_sym_r_SQUOTE] = ACTIONS(4132), + [anon_sym_r_DQUOTE] = ACTIONS(4132), + [sym_pseudo_compile_time_identifier] = ACTIONS(4132), + [anon_sym_shared] = ACTIONS(4132), + [anon_sym_map_LBRACK] = ACTIONS(4132), + [anon_sym_chan] = ACTIONS(4132), + [anon_sym_thread] = ACTIONS(4132), + [anon_sym_atomic] = ACTIONS(4132), }, - [1467] = { - [sym_line_comment] = STATE(1467), - [sym_block_comment] = STATE(1467), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LF] = ACTIONS(3023), - [anon_sym_CR] = ACTIONS(3023), - [anon_sym_CR_LF] = ACTIONS(3023), + [1421] = { + [sym_line_comment] = STATE(1421), + [sym_block_comment] = STATE(1421), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(4134), + [anon_sym_LF] = ACTIONS(4134), + [anon_sym_CR] = ACTIONS(4134), + [anon_sym_CR_LF] = ACTIONS(4134), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_fn] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_GT] = ACTIONS(3023), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_mut] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_go] = ACTIONS(3023), - [anon_sym_spawn] = ACTIONS(3023), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_GT_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_CARET] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3023), - [sym_none] = ACTIONS(3023), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [sym_nil] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_DOLLARif] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3023), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_select] = ACTIONS(3023), - [anon_sym_lock] = ACTIONS(3023), - [anon_sym_rlock] = ACTIONS(3023), - [anon_sym_unsafe] = ACTIONS(3023), - [anon_sym_sql] = ACTIONS(3023), - [sym_int_literal] = ACTIONS(3023), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_c_SQUOTE] = ACTIONS(3023), - [anon_sym_c_DQUOTE] = ACTIONS(3023), - [anon_sym_r_SQUOTE] = ACTIONS(3023), - [anon_sym_r_DQUOTE] = ACTIONS(3023), - [sym_pseudo_compile_time_identifier] = ACTIONS(3023), - [anon_sym_shared] = ACTIONS(3023), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3023), - [anon_sym_thread] = ACTIONS(3023), - [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_COMMA] = ACTIONS(4134), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4134), + [anon_sym_fn] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_mut] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4134), + [anon_sym_spawn] = ACTIONS(4134), + [anon_sym_json_DOTdecode] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(4134), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [sym_nil] = ACTIONS(4134), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_DOLLARif] = ACTIONS(4134), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_select] = ACTIONS(4134), + [anon_sym_lock] = ACTIONS(4134), + [anon_sym_rlock] = ACTIONS(4134), + [anon_sym_unsafe] = ACTIONS(4134), + [anon_sym_sql] = ACTIONS(4134), + [sym_int_literal] = ACTIONS(4134), + [sym_float_literal] = ACTIONS(4134), + [sym_rune_literal] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [anon_sym_c_SQUOTE] = ACTIONS(4134), + [anon_sym_c_DQUOTE] = ACTIONS(4134), + [anon_sym_r_SQUOTE] = ACTIONS(4134), + [anon_sym_r_DQUOTE] = ACTIONS(4134), + [sym_pseudo_compile_time_identifier] = ACTIONS(4134), + [anon_sym_shared] = ACTIONS(4134), + [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_chan] = ACTIONS(4134), + [anon_sym_thread] = ACTIONS(4134), + [anon_sym_atomic] = ACTIONS(4134), }, - [1468] = { - [sym_line_comment] = STATE(1468), - [sym_block_comment] = STATE(1468), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), + [1422] = { + [sym_line_comment] = STATE(1422), + [sym_block_comment] = STATE(1422), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(4136), + [anon_sym_LF] = ACTIONS(4136), + [anon_sym_CR] = ACTIONS(4136), + [anon_sym_CR_LF] = ACTIONS(4136), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_c_SQUOTE] = ACTIONS(3019), - [anon_sym_c_DQUOTE] = ACTIONS(3019), - [anon_sym_r_SQUOTE] = ACTIONS(3019), - [anon_sym_r_DQUOTE] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_fn] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_mut] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4136), + [anon_sym_spawn] = ACTIONS(4136), + [anon_sym_json_DOTdecode] = ACTIONS(4136), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(4136), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(4136), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [sym_nil] = ACTIONS(4136), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_DOLLARif] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4136), + [anon_sym_select] = ACTIONS(4136), + [anon_sym_lock] = ACTIONS(4136), + [anon_sym_rlock] = ACTIONS(4136), + [anon_sym_unsafe] = ACTIONS(4136), + [anon_sym_sql] = ACTIONS(4136), + [sym_int_literal] = ACTIONS(4136), + [sym_float_literal] = ACTIONS(4136), + [sym_rune_literal] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [anon_sym_c_SQUOTE] = ACTIONS(4136), + [anon_sym_c_DQUOTE] = ACTIONS(4136), + [anon_sym_r_SQUOTE] = ACTIONS(4136), + [anon_sym_r_DQUOTE] = ACTIONS(4136), + [sym_pseudo_compile_time_identifier] = ACTIONS(4136), + [anon_sym_shared] = ACTIONS(4136), + [anon_sym_map_LBRACK] = ACTIONS(4136), + [anon_sym_chan] = ACTIONS(4136), + [anon_sym_thread] = ACTIONS(4136), + [anon_sym_atomic] = ACTIONS(4136), }, - [1469] = { - [sym_line_comment] = STATE(1469), - [sym_block_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), + [1423] = { + [sym_line_comment] = STATE(1423), + [sym_block_comment] = STATE(1423), + [sym_else_branch] = STATE(1485), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2089), + [anon_sym_CR] = ACTIONS(2089), + [anon_sym_CR_LF] = ACTIONS(2089), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_RPAREN] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3314), - [anon_sym_BANG_EQ] = ACTIONS(3314), - [anon_sym_LT_EQ] = ACTIONS(3314), - [anon_sym_GT_EQ] = ACTIONS(3314), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [anon_sym_LT_LT] = ACTIONS(3314), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3314), - [anon_sym_AMP_CARET] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_PIPE_PIPE] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3314), - [anon_sym_POUND_LBRACK] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3314), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2089), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2089), + [anon_sym_GT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_go] = ACTIONS(2089), + [anon_sym_spawn] = ACTIONS(2089), + [anon_sym_json_DOTdecode] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_LT_DASH] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_AMP_CARET] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_or] = ACTIONS(2089), + [sym_none] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_nil] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2089), + [anon_sym_POUND_LBRACK] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(4138), + [anon_sym_DOLLARif] = ACTIONS(2089), + [anon_sym_is] = ACTIONS(2089), + [anon_sym_BANGis] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_BANGin] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_select] = ACTIONS(2089), + [anon_sym_lock] = ACTIONS(2089), + [anon_sym_rlock] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_sql] = ACTIONS(2089), + [sym_int_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + [sym_rune_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_c_SQUOTE] = ACTIONS(2089), + [anon_sym_c_DQUOTE] = ACTIONS(2089), + [anon_sym_r_SQUOTE] = ACTIONS(2089), + [anon_sym_r_DQUOTE] = ACTIONS(2089), + [sym_pseudo_compile_time_identifier] = ACTIONS(2089), + [anon_sym_shared] = ACTIONS(2089), + [anon_sym_map_LBRACK] = ACTIONS(2089), + [anon_sym_chan] = ACTIONS(2089), + [anon_sym_thread] = ACTIONS(2089), + [anon_sym_atomic] = ACTIONS(2089), }, - [1470] = { - [sym_line_comment] = STATE(1470), - [sym_block_comment] = STATE(1470), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), + [1424] = { + [sym_line_comment] = STATE(1424), + [sym_block_comment] = STATE(1424), + [sym_else_branch] = STATE(1486), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_CR] = ACTIONS(2083), + [anon_sym_CR_LF] = ACTIONS(2083), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_c_SQUOTE] = ACTIONS(3015), - [anon_sym_c_DQUOTE] = ACTIONS(3015), - [anon_sym_r_SQUOTE] = ACTIONS(3015), - [anon_sym_r_DQUOTE] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2083), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2083), + [anon_sym_GT_EQ] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_mut] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_QMARK] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_go] = ACTIONS(2083), + [anon_sym_spawn] = ACTIONS(2083), + [anon_sym_json_DOTdecode] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_LBRACK2] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_AMP_CARET] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_or] = ACTIONS(2083), + [sym_none] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_nil] = ACTIONS(2083), + [anon_sym_QMARK_DOT] = ACTIONS(2083), + [anon_sym_POUND_LBRACK] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(4138), + [anon_sym_DOLLARif] = ACTIONS(2083), + [anon_sym_is] = ACTIONS(2083), + [anon_sym_BANGis] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_BANGin] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_select] = ACTIONS(2083), + [anon_sym_lock] = ACTIONS(2083), + [anon_sym_rlock] = ACTIONS(2083), + [anon_sym_unsafe] = ACTIONS(2083), + [anon_sym_sql] = ACTIONS(2083), + [sym_int_literal] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), + [sym_rune_literal] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_c_SQUOTE] = ACTIONS(2083), + [anon_sym_c_DQUOTE] = ACTIONS(2083), + [anon_sym_r_SQUOTE] = ACTIONS(2083), + [anon_sym_r_DQUOTE] = ACTIONS(2083), + [sym_pseudo_compile_time_identifier] = ACTIONS(2083), + [anon_sym_shared] = ACTIONS(2083), + [anon_sym_map_LBRACK] = ACTIONS(2083), + [anon_sym_chan] = ACTIONS(2083), + [anon_sym_thread] = ACTIONS(2083), + [anon_sym_atomic] = ACTIONS(2083), }, - [1471] = { - [sym_line_comment] = STATE(1471), - [sym_block_comment] = STATE(1471), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), + [1425] = { + [sym_line_comment] = STATE(1425), + [sym_block_comment] = STATE(1425), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [anon_sym_c_SQUOTE] = ACTIONS(3001), - [anon_sym_c_DQUOTE] = ACTIONS(3001), - [anon_sym_r_SQUOTE] = ACTIONS(3001), - [anon_sym_r_DQUOTE] = ACTIONS(3001), - [sym_pseudo_compile_time_identifier] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_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_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_PIPE] = 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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, - [1472] = { - [sym_line_comment] = STATE(1472), - [sym_block_comment] = STATE(1472), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), + [1426] = { + [sym_line_comment] = STATE(1426), + [sym_block_comment] = STATE(1426), + [sym_type_parameters] = STATE(1544), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_c_SQUOTE] = ACTIONS(2973), - [anon_sym_c_DQUOTE] = ACTIONS(2973), - [anon_sym_r_SQUOTE] = ACTIONS(2973), - [anon_sym_r_DQUOTE] = ACTIONS(2973), - [sym_pseudo_compile_time_identifier] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), }, - [1473] = { - [sym_line_comment] = STATE(1473), - [sym_block_comment] = STATE(1473), - [sym_identifier] = ACTIONS(3318), - [anon_sym_LF] = ACTIONS(3318), - [anon_sym_CR] = ACTIONS(3318), - [anon_sym_CR_LF] = ACTIONS(3318), + [1427] = { + [sym_line_comment] = STATE(1427), + [sym_block_comment] = STATE(1427), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(4140), + [anon_sym_LF] = ACTIONS(4140), + [anon_sym_CR] = ACTIONS(4140), + [anon_sym_CR_LF] = ACTIONS(4140), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_DOT] = ACTIONS(3318), - [anon_sym_as] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_RPAREN] = ACTIONS(3318), - [anon_sym_fn] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_PERCENT] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_EQ_EQ] = ACTIONS(3318), - [anon_sym_BANG_EQ] = ACTIONS(3318), - [anon_sym_LT_EQ] = ACTIONS(3318), - [anon_sym_GT_EQ] = ACTIONS(3318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_mut] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_go] = ACTIONS(3318), - [anon_sym_spawn] = ACTIONS(3318), - [anon_sym_json_DOTdecode] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_LBRACK2] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3318), - [anon_sym_LT_LT] = ACTIONS(3318), - [anon_sym_GT_GT] = ACTIONS(3318), - [anon_sym_GT_GT_GT] = ACTIONS(3318), - [anon_sym_AMP_CARET] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_or] = ACTIONS(3318), - [sym_none] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_nil] = ACTIONS(3318), - [anon_sym_QMARK_DOT] = ACTIONS(3318), - [anon_sym_POUND_LBRACK] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3318), - [anon_sym_is] = ACTIONS(3318), - [anon_sym_BANGis] = ACTIONS(3318), - [anon_sym_in] = ACTIONS(3318), - [anon_sym_BANGin] = ACTIONS(3318), - [anon_sym_match] = ACTIONS(3318), - [anon_sym_select] = ACTIONS(3318), - [anon_sym_lock] = ACTIONS(3318), - [anon_sym_rlock] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3318), - [sym_int_literal] = ACTIONS(3318), - [sym_float_literal] = ACTIONS(3318), - [sym_rune_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_c_SQUOTE] = ACTIONS(3318), - [anon_sym_c_DQUOTE] = ACTIONS(3318), - [anon_sym_r_SQUOTE] = ACTIONS(3318), - [anon_sym_r_DQUOTE] = ACTIONS(3318), - [sym_pseudo_compile_time_identifier] = ACTIONS(3318), - [anon_sym_shared] = ACTIONS(3318), - [anon_sym_map_LBRACK] = ACTIONS(3318), - [anon_sym_chan] = ACTIONS(3318), - [anon_sym_thread] = ACTIONS(3318), - [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4140), + [anon_sym_COMMA] = ACTIONS(4140), + [anon_sym_RBRACE] = ACTIONS(4140), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_fn] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_mut] = ACTIONS(4140), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4140), + [anon_sym_spawn] = ACTIONS(4140), + [anon_sym_json_DOTdecode] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(4140), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(4140), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [sym_nil] = ACTIONS(4140), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_DOLLARif] = ACTIONS(4140), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4140), + [anon_sym_select] = ACTIONS(4140), + [anon_sym_lock] = ACTIONS(4140), + [anon_sym_rlock] = ACTIONS(4140), + [anon_sym_unsafe] = ACTIONS(4140), + [anon_sym_sql] = ACTIONS(4140), + [sym_int_literal] = ACTIONS(4140), + [sym_float_literal] = ACTIONS(4140), + [sym_rune_literal] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [anon_sym_c_SQUOTE] = ACTIONS(4140), + [anon_sym_c_DQUOTE] = ACTIONS(4140), + [anon_sym_r_SQUOTE] = ACTIONS(4140), + [anon_sym_r_DQUOTE] = ACTIONS(4140), + [sym_pseudo_compile_time_identifier] = ACTIONS(4140), + [anon_sym_shared] = ACTIONS(4140), + [anon_sym_map_LBRACK] = ACTIONS(4140), + [anon_sym_chan] = ACTIONS(4140), + [anon_sym_thread] = ACTIONS(4140), + [anon_sym_atomic] = ACTIONS(4140), }, - [1474] = { - [sym_line_comment] = STATE(1474), - [sym_block_comment] = STATE(1474), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), + [1428] = { + [sym_line_comment] = STATE(1428), + [sym_block_comment] = STATE(1428), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), }, - [1475] = { - [sym_line_comment] = STATE(1475), - [sym_block_comment] = STATE(1475), - [sym_identifier] = ACTIONS(2827), - [anon_sym_LF] = ACTIONS(2827), - [anon_sym_CR] = ACTIONS(2827), - [anon_sym_CR_LF] = ACTIONS(2827), + [1429] = { + [sym_line_comment] = STATE(1429), + [sym_block_comment] = STATE(1429), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_CARET] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_AMP_CARET] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2827), - [anon_sym_POUND_LBRACK] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - [sym_rune_literal] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_c_SQUOTE] = ACTIONS(2827), - [anon_sym_c_DQUOTE] = ACTIONS(2827), - [anon_sym_r_SQUOTE] = ACTIONS(2827), - [anon_sym_r_DQUOTE] = ACTIONS(2827), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2827), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, - [1476] = { - [sym_line_comment] = STATE(1476), - [sym_block_comment] = STATE(1476), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LF] = ACTIONS(2823), - [anon_sym_CR] = ACTIONS(2823), - [anon_sym_CR_LF] = ACTIONS(2823), + [1430] = { + [sym_line_comment] = STATE(1430), + [sym_block_comment] = STATE(1430), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(2823), - [anon_sym_as] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_COMMA] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_RPAREN] = ACTIONS(2823), - [anon_sym_fn] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_EQ_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_LT_EQ] = ACTIONS(2823), - [anon_sym_GT_EQ] = ACTIONS(2823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_mut] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_go] = ACTIONS(2823), - [anon_sym_spawn] = ACTIONS(2823), - [anon_sym_json_DOTdecode] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK2] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2823), - [anon_sym_GT_GT] = ACTIONS(2823), - [anon_sym_GT_GT_GT] = ACTIONS(2823), - [anon_sym_AMP_CARET] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [sym_none] = ACTIONS(2823), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [sym_nil] = ACTIONS(2823), - [anon_sym_QMARK_DOT] = ACTIONS(2823), - [anon_sym_POUND_LBRACK] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2823), - [anon_sym_is] = ACTIONS(2823), - [anon_sym_BANGis] = ACTIONS(2823), - [anon_sym_in] = ACTIONS(2823), - [anon_sym_BANGin] = ACTIONS(2823), - [anon_sym_match] = ACTIONS(2823), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2823), - [anon_sym_rlock] = ACTIONS(2823), - [anon_sym_unsafe] = ACTIONS(2823), - [anon_sym_sql] = ACTIONS(2823), - [sym_int_literal] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), - [sym_rune_literal] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_c_SQUOTE] = ACTIONS(2823), - [anon_sym_c_DQUOTE] = ACTIONS(2823), - [anon_sym_r_SQUOTE] = ACTIONS(2823), - [anon_sym_r_DQUOTE] = ACTIONS(2823), - [sym_pseudo_compile_time_identifier] = ACTIONS(2823), - [anon_sym_shared] = ACTIONS(2823), - [anon_sym_map_LBRACK] = ACTIONS(2823), - [anon_sym_chan] = ACTIONS(2823), - [anon_sym_thread] = ACTIONS(2823), - [anon_sym_atomic] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, - [1477] = { - [sym_line_comment] = STATE(1477), - [sym_block_comment] = STATE(1477), + [1431] = { + [sym_line_comment] = STATE(1431), + [sym_block_comment] = STATE(1431), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1432] = { + [sym_line_comment] = STATE(1432), + [sym_block_comment] = STATE(1432), [sym_identifier] = ACTIONS(2093), [anon_sym_LF] = ACTIONS(2093), [anon_sym_CR] = ACTIONS(2093), @@ -186208,6 +182528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2093), [anon_sym_if] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(4144), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2093), [anon_sym_in] = ACTIONS(2093), @@ -186234,910 +182555,1086 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2093), [anon_sym_atomic] = ACTIONS(2093), }, - [1478] = { - [sym_line_comment] = STATE(1478), - [sym_block_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), + [1433] = { + [sym_line_comment] = STATE(1433), + [sym_block_comment] = STATE(1433), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_RPAREN] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_EQ_EQ] = ACTIONS(3328), - [anon_sym_BANG_EQ] = ACTIONS(3328), - [anon_sym_LT_EQ] = ACTIONS(3328), - [anon_sym_GT_EQ] = ACTIONS(3328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3328), - [anon_sym_AMP_CARET] = ACTIONS(3328), - [anon_sym_AMP_AMP] = ACTIONS(3328), - [anon_sym_PIPE_PIPE] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3328), - [anon_sym_r_SQUOTE] = ACTIONS(3328), - [anon_sym_r_DQUOTE] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, - [1479] = { - [sym_line_comment] = STATE(1479), - [sym_block_comment] = STATE(1479), - [sym_identifier] = ACTIONS(2659), - [anon_sym_LF] = ACTIONS(2659), - [anon_sym_CR] = ACTIONS(2659), - [anon_sym_CR_LF] = ACTIONS(2659), + [1434] = { + [sym_line_comment] = STATE(1434), + [sym_block_comment] = STATE(1434), + [sym_type_parameters] = STATE(4411), + [sym_argument_list] = STATE(1514), + [sym_or_block] = STATE(1516), + [sym_identifier] = ACTIONS(4146), + [anon_sym_LF] = ACTIONS(4148), + [anon_sym_CR] = ACTIONS(4148), + [anon_sym_CR_LF] = ACTIONS(4148), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_c_SQUOTE] = ACTIONS(2659), - [anon_sym_c_DQUOTE] = ACTIONS(2659), - [anon_sym_r_SQUOTE] = ACTIONS(2659), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_fn] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_mut] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4146), + [anon_sym_spawn] = ACTIONS(4146), + [anon_sym_json_DOTdecode] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4110), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_AMP_CARET] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4126), + [sym_none] = ACTIONS(4146), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [sym_nil] = ACTIONS(4146), + [anon_sym_QMARK_DOT] = ACTIONS(4096), + [anon_sym_POUND_LBRACK] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_DOLLARif] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_BANGis] = ACTIONS(4128), + [anon_sym_in] = ACTIONS(4114), + [anon_sym_BANGin] = ACTIONS(4114), + [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), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [anon_sym_c_SQUOTE] = ACTIONS(4146), + [anon_sym_c_DQUOTE] = ACTIONS(4146), + [anon_sym_r_SQUOTE] = ACTIONS(4146), + [anon_sym_r_DQUOTE] = 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), }, - [1480] = { - [sym_line_comment] = STATE(1480), - [sym_block_comment] = STATE(1480), - [sym_identifier] = ACTIONS(2655), - [anon_sym_LF] = ACTIONS(2655), - [anon_sym_CR] = ACTIONS(2655), - [anon_sym_CR_LF] = ACTIONS(2655), + [1435] = { + [sym_line_comment] = STATE(1435), + [sym_block_comment] = STATE(1435), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_c_SQUOTE] = ACTIONS(2655), - [anon_sym_c_DQUOTE] = ACTIONS(2655), - [anon_sym_r_SQUOTE] = ACTIONS(2655), - [anon_sym_r_DQUOTE] = ACTIONS(2655), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_QMARK] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_AMP_CARET] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2627), + [anon_sym_POUND_LBRACK] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2627), + [anon_sym_BANGis] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_BANGin] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), }, - [1481] = { - [sym_line_comment] = STATE(1481), - [sym_block_comment] = STATE(1481), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LF] = ACTIONS(2473), - [anon_sym_CR] = ACTIONS(2473), - [anon_sym_CR_LF] = ACTIONS(2473), + [1436] = { + [sym_line_comment] = STATE(1436), + [sym_block_comment] = STATE(1436), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(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_SEMI] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), }, - [1482] = { - [sym_line_comment] = STATE(1482), - [sym_block_comment] = STATE(1482), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LF] = ACTIONS(2419), - [anon_sym_CR] = ACTIONS(2419), - [anon_sym_CR_LF] = ACTIONS(2419), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2419), - [anon_sym_BANG_EQ] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(2419), - [anon_sym_GT_EQ] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2419), - [anon_sym_LT_LT] = ACTIONS(2419), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2419), - [anon_sym_AMP_CARET] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_PIPE_PIPE] = ACTIONS(2419), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2419), - [anon_sym_POUND_LBRACK] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_rune_literal] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_c_SQUOTE] = ACTIONS(2419), - [anon_sym_c_DQUOTE] = ACTIONS(2419), - [anon_sym_r_SQUOTE] = ACTIONS(2419), - [anon_sym_r_DQUOTE] = ACTIONS(2419), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2419), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), + [1437] = { + [sym_line_comment] = STATE(1437), + [sym_block_comment] = STATE(1437), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_as] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_LBRACK2] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_GT_GT_GT] = ACTIONS(851), + [anon_sym_AMP_CARET] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_or] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(849), + [anon_sym_POUND_LBRACK] = ACTIONS(849), + [anon_sym_is] = ACTIONS(851), + [anon_sym_BANGis] = ACTIONS(849), + [anon_sym_in] = ACTIONS(851), + [anon_sym_BANGin] = ACTIONS(849), + [anon_sym_STAR_EQ] = ACTIONS(849), + [anon_sym_SLASH_EQ] = ACTIONS(849), + [anon_sym_PERCENT_EQ] = ACTIONS(849), + [anon_sym_LT_LT_EQ] = ACTIONS(849), + [anon_sym_GT_GT_EQ] = ACTIONS(849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(849), + [anon_sym_AMP_EQ] = ACTIONS(849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(849), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_PIPE_EQ] = ACTIONS(849), + [anon_sym_CARET_EQ] = ACTIONS(849), + [anon_sym_COLON_EQ] = ACTIONS(849), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1483] = { - [sym_line_comment] = STATE(1483), - [sym_block_comment] = STATE(1483), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [1438] = { + [sym_line_comment] = STATE(1438), + [sym_block_comment] = STATE(1438), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_EQ_EQ] = ACTIONS(3336), - [anon_sym_BANG_EQ] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3336), - [anon_sym_AMP_CARET] = ACTIONS(3336), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_PIPE_PIPE] = ACTIONS(3336), - [anon_sym_or] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_c_SQUOTE] = ACTIONS(3336), - [anon_sym_c_DQUOTE] = ACTIONS(3336), - [anon_sym_r_SQUOTE] = ACTIONS(3336), - [anon_sym_r_DQUOTE] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), }, - [1484] = { - [sym_line_comment] = STATE(1484), - [sym_block_comment] = STATE(1484), - [sym_identifier] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2335), - [anon_sym_CR] = ACTIONS(2335), - [anon_sym_CR_LF] = ACTIONS(2335), + [1439] = { + [sym_line_comment] = STATE(1439), + [sym_block_comment] = STATE(1439), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_PERCENT] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), - [anon_sym_EQ_EQ] = ACTIONS(2335), - [anon_sym_BANG_EQ] = ACTIONS(2335), - [anon_sym_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_EQ] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_go] = ACTIONS(2335), - [anon_sym_spawn] = ACTIONS(2335), - [anon_sym_json_DOTdecode] = ACTIONS(2335), - [anon_sym_PIPE] = ACTIONS(2335), - [anon_sym_LBRACK2] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_CARET] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_LT_DASH] = ACTIONS(2335), - [anon_sym_LT_LT] = ACTIONS(2335), - [anon_sym_GT_GT] = ACTIONS(2335), - [anon_sym_GT_GT_GT] = ACTIONS(2335), - [anon_sym_AMP_CARET] = ACTIONS(2335), - [anon_sym_AMP_AMP] = ACTIONS(2335), - [anon_sym_PIPE_PIPE] = ACTIONS(2335), - [anon_sym_or] = ACTIONS(2335), - [sym_none] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_nil] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(2335), - [anon_sym_POUND_LBRACK] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_DOLLARif] = ACTIONS(2335), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_BANGis] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_BANGin] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_select] = ACTIONS(2335), - [anon_sym_lock] = ACTIONS(2335), - [anon_sym_rlock] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_sql] = ACTIONS(2335), - [sym_int_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_rune_literal] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [anon_sym_c_SQUOTE] = ACTIONS(2335), - [anon_sym_c_DQUOTE] = ACTIONS(2335), - [anon_sym_r_SQUOTE] = ACTIONS(2335), - [anon_sym_r_DQUOTE] = ACTIONS(2335), - [sym_pseudo_compile_time_identifier] = ACTIONS(2335), - [anon_sym_shared] = ACTIONS(2335), - [anon_sym_map_LBRACK] = ACTIONS(2335), - [anon_sym_chan] = ACTIONS(2335), - [anon_sym_thread] = ACTIONS(2335), - [anon_sym_atomic] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_c_SQUOTE] = ACTIONS(2873), + [anon_sym_c_DQUOTE] = ACTIONS(2873), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), }, - [1485] = { - [sym_line_comment] = STATE(1485), - [sym_block_comment] = STATE(1485), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [1440] = { + [sym_line_comment] = STATE(1440), + [sym_block_comment] = STATE(1440), + [sym_reference_expression] = STATE(4465), + [sym_type_reference_expression] = STATE(2019), + [sym_plain_type] = STATE(2063), + [sym__plain_type_without_special] = STATE(2052), + [sym_anon_struct_type] = STATE(2051), + [sym_multi_return_type] = STATE(2052), + [sym_result_type] = STATE(2052), + [sym_option_type] = STATE(2052), + [sym_qualified_type] = STATE(2019), + [sym_fixed_array_type] = STATE(2051), + [sym_array_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_wrong_pointer_type] = STATE(2051), + [sym_map_type] = STATE(2051), + [sym_channel_type] = STATE(2051), + [sym_shared_type] = STATE(2051), + [sym_thread_type] = STATE(2051), + [sym_atomic_type] = STATE(2051), + [sym_generic_type] = STATE(2051), + [sym_function_type] = STATE(2051), + [sym_identifier] = ACTIONS(4150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(853), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_or] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(853), + [anon_sym_POUND_LBRACK] = ACTIONS(853), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(853), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_PERCENT_EQ] = ACTIONS(853), + [anon_sym_LT_LT_EQ] = ACTIONS(853), + [anon_sym_GT_GT_EQ] = ACTIONS(853), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(853), + [anon_sym_AMP_EQ] = ACTIONS(853), + [anon_sym_AMP_CARET_EQ] = ACTIONS(853), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_PIPE_EQ] = ACTIONS(853), + [anon_sym_CARET_EQ] = ACTIONS(853), + [anon_sym_COLON_EQ] = ACTIONS(853), + [anon_sym_shared] = ACTIONS(4168), + [anon_sym_map_LBRACK] = ACTIONS(4170), + [anon_sym_chan] = ACTIONS(4172), + [anon_sym_thread] = ACTIONS(4174), + [anon_sym_atomic] = ACTIONS(4176), }, - [1486] = { - [sym_line_comment] = STATE(1486), - [sym_block_comment] = STATE(1486), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LF] = ACTIONS(2393), - [anon_sym_CR] = ACTIONS(2393), - [anon_sym_CR_LF] = ACTIONS(2393), + [1441] = { + [sym_line_comment] = STATE(1441), + [sym_block_comment] = STATE(1441), + [sym_identifier] = ACTIONS(4178), + [anon_sym_LF] = ACTIONS(4181), + [anon_sym_CR] = ACTIONS(4181), + [anon_sym_CR_LF] = ACTIONS(4181), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2393), - [anon_sym_BANG_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [anon_sym_CARET] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2393), - [anon_sym_AMP_CARET] = ACTIONS(2393), - [anon_sym_AMP_AMP] = ACTIONS(2393), - [anon_sym_PIPE_PIPE] = ACTIONS(2393), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2393), - [anon_sym_POUND_LBRACK] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_rune_literal] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [anon_sym_c_SQUOTE] = ACTIONS(2393), - [anon_sym_c_DQUOTE] = ACTIONS(2393), - [anon_sym_r_SQUOTE] = ACTIONS(2393), - [anon_sym_r_DQUOTE] = ACTIONS(2393), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2393), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, - [1487] = { - [sym_line_comment] = STATE(1487), - [sym_block_comment] = STATE(1487), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [1442] = { + [sym_line_comment] = STATE(1442), + [sym_block_comment] = STATE(1442), + [sym_identifier] = ACTIONS(2885), + [anon_sym_LF] = ACTIONS(2885), + [anon_sym_CR] = ACTIONS(2885), + [anon_sym_CR_LF] = ACTIONS(2885), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_DOT] = ACTIONS(2885), + [anon_sym_as] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_fn] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2885), + [anon_sym_mut] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2885), + [anon_sym_spawn] = ACTIONS(2885), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2885), + [sym_none] = ACTIONS(2885), + [sym_true] = ACTIONS(2885), + [sym_false] = ACTIONS(2885), + [sym_nil] = ACTIONS(2885), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_DOLLARif] = ACTIONS(2885), + [anon_sym_is] = ACTIONS(2885), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2885), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2885), + [anon_sym_select] = ACTIONS(2885), + [anon_sym_lock] = ACTIONS(2885), + [anon_sym_rlock] = ACTIONS(2885), + [anon_sym_unsafe] = ACTIONS(2885), + [anon_sym_sql] = ACTIONS(2885), + [sym_int_literal] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2885), + [anon_sym_shared] = ACTIONS(2885), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2885), + [anon_sym_thread] = ACTIONS(2885), + [anon_sym_atomic] = ACTIONS(2885), }, - [1488] = { - [sym_line_comment] = STATE(1488), - [sym_block_comment] = STATE(1488), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [1443] = { + [sym_line_comment] = STATE(1443), + [sym_block_comment] = STATE(1443), + [sym_reference_expression] = STATE(4465), + [sym_type_reference_expression] = STATE(2019), + [sym_plain_type] = STATE(2078), + [sym__plain_type_without_special] = STATE(2052), + [sym_anon_struct_type] = STATE(2051), + [sym_multi_return_type] = STATE(2052), + [sym_result_type] = STATE(2052), + [sym_option_type] = STATE(2052), + [sym_qualified_type] = STATE(2019), + [sym_fixed_array_type] = STATE(2051), + [sym_array_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_wrong_pointer_type] = STATE(2051), + [sym_map_type] = STATE(2051), + [sym_channel_type] = STATE(2051), + [sym_shared_type] = STATE(2051), + [sym_thread_type] = STATE(2051), + [sym_atomic_type] = STATE(2051), + [sym_generic_type] = STATE(2051), + [sym_function_type] = STATE(2051), + [sym_identifier] = ACTIONS(4150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(857), + [anon_sym_POUND_LBRACK] = ACTIONS(857), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(857), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_PERCENT_EQ] = ACTIONS(857), + [anon_sym_LT_LT_EQ] = ACTIONS(857), + [anon_sym_GT_GT_EQ] = ACTIONS(857), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(857), + [anon_sym_AMP_EQ] = ACTIONS(857), + [anon_sym_AMP_CARET_EQ] = ACTIONS(857), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_PIPE_EQ] = ACTIONS(857), + [anon_sym_CARET_EQ] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(857), + [anon_sym_shared] = ACTIONS(4168), + [anon_sym_map_LBRACK] = ACTIONS(4170), + [anon_sym_chan] = ACTIONS(4172), + [anon_sym_thread] = ACTIONS(4174), + [anon_sym_atomic] = ACTIONS(4176), + }, + [1444] = { + [sym_line_comment] = STATE(1444), + [sym_block_comment] = STATE(1444), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LF] = ACTIONS(2917), + [anon_sym_CR] = ACTIONS(2917), + [anon_sym_CR_LF] = ACTIONS(2917), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2917), + [anon_sym_BANG_EQ] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), + [anon_sym_spawn] = ACTIONS(2917), + [anon_sym_json_DOTdecode] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2917), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2917), + [anon_sym_AMP_CARET] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_PIPE_PIPE] = ACTIONS(2917), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2917), + [anon_sym_POUND_LBRACK] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), + [sym_rune_literal] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_c_SQUOTE] = ACTIONS(2917), + [anon_sym_c_DQUOTE] = ACTIONS(2917), + [anon_sym_r_SQUOTE] = ACTIONS(2917), + [anon_sym_r_DQUOTE] = ACTIONS(2917), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2917), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + }, + [1445] = { + [sym_line_comment] = STATE(1445), + [sym_block_comment] = STATE(1445), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(849), [anon_sym_DOT] = ACTIONS(849), [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(849), [anon_sym_COMMA] = ACTIONS(849), [anon_sym_LPAREN] = ACTIONS(849), [anon_sym_EQ] = ACTIONS(851), - [anon_sym_fn] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(869), [anon_sym_PLUS] = ACTIONS(851), [anon_sym_DASH] = ACTIONS(851), [anon_sym_STAR] = ACTIONS(851), @@ -187150,7 +183647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(849), [anon_sym_GT_EQ] = ACTIONS(849), [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(873), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_QMARK] = ACTIONS(851), @@ -187185,202 +183682,1334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(849), [anon_sym_CARET_EQ] = ACTIONS(849), [anon_sym_COLON_EQ] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1489] = { - [sym_line_comment] = STATE(1489), - [sym_block_comment] = STATE(1489), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_CR] = ACTIONS(2693), - [anon_sym_CR_LF] = ACTIONS(2693), + [1446] = { + [sym_line_comment] = STATE(1446), + [sym_block_comment] = STATE(1446), + [sym_identifier] = ACTIONS(2921), + [anon_sym_LF] = ACTIONS(2921), + [anon_sym_CR] = ACTIONS(2921), + [anon_sym_CR_LF] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_DOT] = ACTIONS(2921), + [anon_sym_as] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_PERCENT] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2921), + [anon_sym_BANG_EQ] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_mut] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_QMARK] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_go] = ACTIONS(2921), + [anon_sym_spawn] = ACTIONS(2921), + [anon_sym_json_DOTdecode] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LBRACK2] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_LT_DASH] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_GT_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_CARET] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_or] = ACTIONS(2921), + [sym_none] = ACTIONS(2921), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_nil] = ACTIONS(2921), + [anon_sym_QMARK_DOT] = ACTIONS(2921), + [anon_sym_POUND_LBRACK] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_DOLLARif] = ACTIONS(2921), + [anon_sym_is] = ACTIONS(2921), + [anon_sym_BANGis] = ACTIONS(2921), + [anon_sym_in] = ACTIONS(2921), + [anon_sym_BANGin] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_select] = ACTIONS(2921), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_sql] = ACTIONS(2921), + [sym_int_literal] = ACTIONS(2921), + [sym_float_literal] = ACTIONS(2921), + [sym_rune_literal] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_c_SQUOTE] = ACTIONS(2921), + [anon_sym_c_DQUOTE] = ACTIONS(2921), + [anon_sym_r_SQUOTE] = ACTIONS(2921), + [anon_sym_r_DQUOTE] = ACTIONS(2921), + [sym_pseudo_compile_time_identifier] = ACTIONS(2921), + [anon_sym_shared] = ACTIONS(2921), + [anon_sym_map_LBRACK] = ACTIONS(2921), + [anon_sym_chan] = ACTIONS(2921), + [anon_sym_thread] = ACTIONS(2921), + [anon_sym_atomic] = ACTIONS(2921), + }, + [1447] = { + [sym_line_comment] = STATE(1447), + [sym_block_comment] = STATE(1447), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_RPAREN] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + }, + [1448] = { + [sym_line_comment] = STATE(1448), + [sym_block_comment] = STATE(1448), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_RPAREN] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + }, + [1449] = { + [sym_line_comment] = STATE(1449), + [sym_block_comment] = STATE(1449), + [sym_reference_expression] = STATE(4465), + [sym_type_reference_expression] = STATE(2019), + [sym_plain_type] = STATE(2041), + [sym__plain_type_without_special] = STATE(2052), + [sym_anon_struct_type] = STATE(2051), + [sym_multi_return_type] = STATE(2052), + [sym_result_type] = STATE(2052), + [sym_option_type] = STATE(2052), + [sym_qualified_type] = STATE(2019), + [sym_fixed_array_type] = STATE(2051), + [sym_array_type] = STATE(2051), + [sym_pointer_type] = STATE(2051), + [sym_wrong_pointer_type] = STATE(2051), + [sym_map_type] = STATE(2051), + [sym_channel_type] = STATE(2051), + [sym_shared_type] = STATE(2051), + [sym_thread_type] = STATE(2051), + [sym_atomic_type] = STATE(2051), + [sym_generic_type] = STATE(2051), + [sym_function_type] = STATE(2051), + [sym_identifier] = ACTIONS(4150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(817), + [anon_sym_as] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(821), + [anon_sym_fn] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_QMARK] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_GT_GT_GT] = ACTIONS(821), + [anon_sym_AMP_CARET] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_or] = ACTIONS(821), + [anon_sym_QMARK_DOT] = ACTIONS(817), + [anon_sym_POUND_LBRACK] = ACTIONS(817), + [anon_sym_is] = ACTIONS(821), + [anon_sym_BANGis] = ACTIONS(817), + [anon_sym_in] = ACTIONS(821), + [anon_sym_BANGin] = ACTIONS(817), + [anon_sym_STAR_EQ] = ACTIONS(817), + [anon_sym_SLASH_EQ] = ACTIONS(817), + [anon_sym_PERCENT_EQ] = ACTIONS(817), + [anon_sym_LT_LT_EQ] = ACTIONS(817), + [anon_sym_GT_GT_EQ] = ACTIONS(817), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(817), + [anon_sym_AMP_EQ] = ACTIONS(817), + [anon_sym_AMP_CARET_EQ] = ACTIONS(817), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_PIPE_EQ] = ACTIONS(817), + [anon_sym_CARET_EQ] = ACTIONS(817), + [anon_sym_COLON_EQ] = ACTIONS(817), + [anon_sym_shared] = ACTIONS(4168), + [anon_sym_map_LBRACK] = ACTIONS(4170), + [anon_sym_chan] = ACTIONS(4172), + [anon_sym_thread] = ACTIONS(4174), + [anon_sym_atomic] = ACTIONS(4176), + }, + [1450] = { + [sym_line_comment] = STATE(1450), + [sym_block_comment] = STATE(1450), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + }, + [1451] = { + [sym_line_comment] = STATE(1451), + [sym_block_comment] = STATE(1451), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_c_SQUOTE] = ACTIONS(2993), + [anon_sym_c_DQUOTE] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(2993), + [anon_sym_r_DQUOTE] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + }, + [1452] = { + [sym_line_comment] = STATE(1452), + [sym_block_comment] = STATE(1452), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_c_SQUOTE] = ACTIONS(2997), + [anon_sym_c_DQUOTE] = ACTIONS(2997), + [anon_sym_r_SQUOTE] = ACTIONS(2997), + [anon_sym_r_DQUOTE] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + }, + [1453] = { + [sym_line_comment] = STATE(1453), + [sym_block_comment] = STATE(1453), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + }, + [1454] = { + [sym_line_comment] = STATE(1454), + [sym_block_comment] = STATE(1454), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [anon_sym_c_SQUOTE] = ACTIONS(3061), + [anon_sym_c_DQUOTE] = ACTIONS(3061), + [anon_sym_r_SQUOTE] = ACTIONS(3061), + [anon_sym_r_DQUOTE] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + }, + [1455] = { + [sym_line_comment] = STATE(1455), + [sym_block_comment] = STATE(1455), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_CR] = ACTIONS(3065), + [anon_sym_CR_LF] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3065), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_CARET] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3065), + [anon_sym_POUND_LBRACK] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), + [sym_rune_literal] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_c_SQUOTE] = ACTIONS(3065), + [anon_sym_c_DQUOTE] = ACTIONS(3065), + [anon_sym_r_SQUOTE] = ACTIONS(3065), + [anon_sym_r_DQUOTE] = ACTIONS(3065), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3065), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), + }, + [1456] = { + [sym_line_comment] = STATE(1456), + [sym_block_comment] = STATE(1456), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_CR] = ACTIONS(3073), + [anon_sym_CR_LF] = ACTIONS(3073), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3073), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3073), + [anon_sym_AMP_CARET] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3073), + [anon_sym_POUND_LBRACK] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3073), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), + [sym_rune_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_c_SQUOTE] = ACTIONS(3073), + [anon_sym_c_DQUOTE] = ACTIONS(3073), + [anon_sym_r_SQUOTE] = ACTIONS(3073), + [anon_sym_r_DQUOTE] = ACTIONS(3073), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3073), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), + }, + [1457] = { + [sym_line_comment] = STATE(1457), + [sym_block_comment] = STATE(1457), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1458] = { + [sym_line_comment] = STATE(1458), + [sym_block_comment] = STATE(1458), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2977), + [anon_sym_AMP_CARET] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_or] = ACTIONS(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), + }, + [1459] = { + [sym_line_comment] = STATE(1459), + [sym_block_comment] = STATE(1459), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_EQ_EQ] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_GT_GT_GT] = ACTIONS(2693), - [anon_sym_AMP_CARET] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_PIPE_PIPE] = ACTIONS(2693), - [anon_sym_or] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2693), - [anon_sym_POUND_LBRACK] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - [sym_rune_literal] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_c_SQUOTE] = ACTIONS(2693), - [anon_sym_c_DQUOTE] = ACTIONS(2693), - [anon_sym_r_SQUOTE] = ACTIONS(2693), - [anon_sym_r_DQUOTE] = ACTIONS(2693), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), }, - [1490] = { - [sym_line_comment] = STATE(1490), - [sym_block_comment] = STATE(1490), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), + [1460] = { + [sym_line_comment] = STATE(1460), + [sym_block_comment] = STATE(1460), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_RPAREN] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_c_SQUOTE] = ACTIONS(2869), - [anon_sym_c_DQUOTE] = ACTIONS(2869), - [anon_sym_r_SQUOTE] = ACTIONS(2869), - [anon_sym_r_DQUOTE] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_c_SQUOTE] = ACTIONS(3027), + [anon_sym_c_DQUOTE] = ACTIONS(3027), + [anon_sym_r_SQUOTE] = ACTIONS(3027), + [anon_sym_r_DQUOTE] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), }, - [1491] = { - [sym_line_comment] = STATE(1491), - [sym_block_comment] = STATE(1491), - [sym_identifier] = ACTIONS(4212), - [anon_sym_LF] = ACTIONS(4215), - [anon_sym_CR] = ACTIONS(4215), - [anon_sym_CR_LF] = ACTIONS(4215), + [1461] = { + [sym_line_comment] = STATE(1461), + [sym_block_comment] = STATE(1461), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), [anon_sym_as] = ACTIONS(3031), [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(4215), - [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3031), [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_RPAREN] = ACTIONS(3031), [anon_sym_fn] = ACTIONS(3031), [anon_sym_PLUS] = ACTIONS(3031), [anon_sym_DASH] = ACTIONS(3031), @@ -187393,11 +185022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3031), [anon_sym_LT_EQ] = ACTIONS(3031), [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), [anon_sym_LBRACK] = ACTIONS(3029), [anon_sym_struct] = ACTIONS(3031), [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(4220), [anon_sym_PLUS_PLUS] = ACTIONS(3031), [anon_sym_DASH_DASH] = ACTIONS(3031), [anon_sym_QMARK] = ACTIONS(3031), @@ -187452,1314 +185080,1140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3031), [anon_sym_atomic] = ACTIONS(3031), }, - [1492] = { - [sym_line_comment] = STATE(1492), - [sym_block_comment] = STATE(1492), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - }, - [1493] = { - [sym_line_comment] = STATE(1493), - [sym_block_comment] = STATE(1493), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_c_SQUOTE] = ACTIONS(2909), - [anon_sym_c_DQUOTE] = ACTIONS(2909), - [anon_sym_r_SQUOTE] = ACTIONS(2909), - [anon_sym_r_DQUOTE] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - }, - [1494] = { - [sym_line_comment] = STATE(1494), - [sym_block_comment] = STATE(1494), - [sym_identifier] = ACTIONS(2917), - [anon_sym_LF] = ACTIONS(2917), - [anon_sym_CR] = ACTIONS(2917), - [anon_sym_CR_LF] = ACTIONS(2917), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_c_SQUOTE] = ACTIONS(2917), - [anon_sym_c_DQUOTE] = ACTIONS(2917), - [anon_sym_r_SQUOTE] = ACTIONS(2917), - [anon_sym_r_DQUOTE] = ACTIONS(2917), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - }, - [1495] = { - [sym_line_comment] = STATE(1495), - [sym_block_comment] = STATE(1495), - [sym_identifier] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_CR] = ACTIONS(2921), - [anon_sym_CR_LF] = ACTIONS(2921), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_BANG_EQ] = ACTIONS(2921), - [anon_sym_LT_EQ] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_GT_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_CARET] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_or] = ACTIONS(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_c_SQUOTE] = ACTIONS(2921), - [anon_sym_c_DQUOTE] = ACTIONS(2921), - [anon_sym_r_SQUOTE] = ACTIONS(2921), - [anon_sym_r_DQUOTE] = ACTIONS(2921), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), + [1462] = { + [sym_line_comment] = STATE(1462), + [sym_block_comment] = STATE(1462), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_EQ] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_AMP_CARET_EQ] = ACTIONS(861), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1496] = { - [sym_line_comment] = STATE(1496), - [sym_block_comment] = STATE(1496), - [sym_identifier] = ACTIONS(4212), - [anon_sym_LF] = ACTIONS(4215), - [anon_sym_CR] = ACTIONS(4215), - [anon_sym_CR_LF] = ACTIONS(4215), + [1463] = { + [sym_line_comment] = STATE(1463), + [sym_block_comment] = STATE(1463), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(3007), + [anon_sym_CR] = ACTIONS(3007), + [anon_sym_CR_LF] = ACTIONS(3007), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4222), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(4215), - [anon_sym_RBRACE] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(4220), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [anon_sym_c_SQUOTE] = ACTIONS(3007), + [anon_sym_c_DQUOTE] = ACTIONS(3007), + [anon_sym_r_SQUOTE] = ACTIONS(3007), + [anon_sym_r_DQUOTE] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), }, - [1497] = { - [sym_line_comment] = STATE(1497), - [sym_block_comment] = STATE(1497), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), + [1464] = { + [sym_line_comment] = STATE(1464), + [sym_block_comment] = STATE(1464), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [anon_sym_c_SQUOTE] = ACTIONS(2981), - [anon_sym_c_DQUOTE] = ACTIONS(2981), - [anon_sym_r_SQUOTE] = ACTIONS(2981), - [anon_sym_r_DQUOTE] = ACTIONS(2981), - [sym_pseudo_compile_time_identifier] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3041), + [anon_sym_AMP_CARET] = ACTIONS(3041), + [anon_sym_AMP_AMP] = ACTIONS(3041), + [anon_sym_PIPE_PIPE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), }, - [1498] = { - [sym_line_comment] = STATE(1498), - [sym_block_comment] = STATE(1498), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), + [1465] = { + [sym_line_comment] = STATE(1465), + [sym_block_comment] = STATE(1465), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(2397), + [anon_sym_CR] = ACTIONS(2397), + [anon_sym_CR_LF] = ACTIONS(2397), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3350), - [anon_sym_GT_GT_GT] = ACTIONS(3350), - [anon_sym_AMP_CARET] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_or] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_QMARK_DOT] = ACTIONS(3350), - [anon_sym_POUND_LBRACK] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3350), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2397), + [anon_sym_BANG_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_CARET] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2397), + [anon_sym_AMP_CARET] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_PIPE_PIPE] = ACTIONS(2397), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2397), + [anon_sym_POUND_LBRACK] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_rune_literal] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_c_SQUOTE] = ACTIONS(2397), + [anon_sym_c_DQUOTE] = ACTIONS(2397), + [anon_sym_r_SQUOTE] = ACTIONS(2397), + [anon_sym_r_DQUOTE] = ACTIONS(2397), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), }, - [1499] = { - [sym_line_comment] = STATE(1499), - [sym_block_comment] = STATE(1499), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), + [1466] = { + [sym_line_comment] = STATE(1466), + [sym_block_comment] = STATE(1466), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_SQUOTE] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(2985), - [anon_sym_c_SQUOTE] = ACTIONS(2985), - [anon_sym_c_DQUOTE] = ACTIONS(2985), - [anon_sym_r_SQUOTE] = ACTIONS(2985), - [anon_sym_r_DQUOTE] = ACTIONS(2985), - [sym_pseudo_compile_time_identifier] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_c_SQUOTE] = ACTIONS(3084), + [anon_sym_c_DQUOTE] = ACTIONS(3084), + [anon_sym_r_SQUOTE] = ACTIONS(3084), + [anon_sym_r_DQUOTE] = ACTIONS(3084), + [sym_pseudo_compile_time_identifier] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), }, - [1500] = { - [sym_line_comment] = STATE(1500), - [sym_block_comment] = STATE(1500), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), + [1467] = { + [sym_line_comment] = STATE(1467), + [sym_block_comment] = STATE(1467), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [anon_sym_c_SQUOTE] = ACTIONS(2993), - [anon_sym_c_DQUOTE] = ACTIONS(2993), - [anon_sym_r_SQUOTE] = ACTIONS(2993), - [anon_sym_r_DQUOTE] = ACTIONS(2993), - [sym_pseudo_compile_time_identifier] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), }, - [1501] = { - [sym_line_comment] = STATE(1501), - [sym_block_comment] = STATE(1501), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LF] = ACTIONS(3060), - [anon_sym_CR] = ACTIONS(3060), - [anon_sym_CR_LF] = ACTIONS(3060), + [1468] = { + [sym_line_comment] = STATE(1468), + [sym_block_comment] = STATE(1468), + [sym_identifier] = ACTIONS(2335), + [anon_sym_LF] = ACTIONS(2335), + [anon_sym_CR] = ACTIONS(2335), + [anon_sym_CR_LF] = ACTIONS(2335), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_RPAREN] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_c_SQUOTE] = ACTIONS(3060), - [anon_sym_c_DQUOTE] = ACTIONS(3060), - [anon_sym_r_SQUOTE] = ACTIONS(3060), - [anon_sym_r_DQUOTE] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_DOT] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [anon_sym_EQ_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_go] = ACTIONS(2335), + [anon_sym_spawn] = ACTIONS(2335), + [anon_sym_json_DOTdecode] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_LT_DASH] = ACTIONS(2335), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2335), + [anon_sym_GT_GT_GT] = ACTIONS(2335), + [anon_sym_AMP_CARET] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_or] = ACTIONS(2335), + [sym_none] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_nil] = ACTIONS(2335), + [anon_sym_QMARK_DOT] = ACTIONS(2335), + [anon_sym_POUND_LBRACK] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_DOLLARif] = ACTIONS(2335), + [anon_sym_is] = ACTIONS(2335), + [anon_sym_BANGis] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_BANGin] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_select] = ACTIONS(2335), + [anon_sym_lock] = ACTIONS(2335), + [anon_sym_rlock] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_sql] = ACTIONS(2335), + [sym_int_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), + [sym_rune_literal] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_c_SQUOTE] = ACTIONS(2335), + [anon_sym_c_DQUOTE] = ACTIONS(2335), + [anon_sym_r_SQUOTE] = ACTIONS(2335), + [anon_sym_r_DQUOTE] = ACTIONS(2335), + [sym_pseudo_compile_time_identifier] = ACTIONS(2335), + [anon_sym_shared] = ACTIONS(2335), + [anon_sym_map_LBRACK] = ACTIONS(2335), + [anon_sym_chan] = ACTIONS(2335), + [anon_sym_thread] = ACTIONS(2335), + [anon_sym_atomic] = ACTIONS(2335), }, - [1502] = { - [sym_line_comment] = STATE(1502), - [sym_block_comment] = STATE(1502), - [sym_identifier] = ACTIONS(3064), - [anon_sym_LF] = ACTIONS(3064), - [anon_sym_CR] = ACTIONS(3064), - [anon_sym_CR_LF] = ACTIONS(3064), + [1469] = { + [sym_line_comment] = STATE(1469), + [sym_block_comment] = STATE(1469), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_RPAREN] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_c_SQUOTE] = ACTIONS(3064), - [anon_sym_c_DQUOTE] = ACTIONS(3064), - [anon_sym_r_SQUOTE] = ACTIONS(3064), - [anon_sym_r_DQUOTE] = ACTIONS(3064), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), }, - [1503] = { - [sym_line_comment] = STATE(1503), - [sym_block_comment] = STATE(1503), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), + [1470] = { + [sym_line_comment] = STATE(1470), + [sym_block_comment] = STATE(1470), + [sym_identifier] = ACTIONS(2435), + [anon_sym_LF] = ACTIONS(2435), + [anon_sym_CR] = ACTIONS(2435), + [anon_sym_CR_LF] = ACTIONS(2435), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_c_SQUOTE] = ACTIONS(3070), - [anon_sym_c_DQUOTE] = ACTIONS(3070), - [anon_sym_r_SQUOTE] = ACTIONS(3070), - [anon_sym_r_DQUOTE] = ACTIONS(3070), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2435), + [anon_sym_LT_LT] = ACTIONS(2435), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2435), + [anon_sym_AMP_CARET] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2435), + [anon_sym_POUND_LBRACK] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2435), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_rune_literal] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [anon_sym_c_SQUOTE] = ACTIONS(2435), + [anon_sym_c_DQUOTE] = ACTIONS(2435), + [anon_sym_r_SQUOTE] = ACTIONS(2435), + [anon_sym_r_DQUOTE] = ACTIONS(2435), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2435), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), }, - [1504] = { - [sym_line_comment] = STATE(1504), - [sym_block_comment] = STATE(1504), - [sym_identifier] = ACTIONS(3027), - [anon_sym_LF] = ACTIONS(3027), - [anon_sym_CR] = ACTIONS(3027), - [anon_sym_CR_LF] = ACTIONS(3027), + [1471] = { + [sym_line_comment] = STATE(1471), + [sym_block_comment] = STATE(1471), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_fn] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_mut] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3027), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_nil] = ACTIONS(3027), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3027), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [anon_sym_lock] = ACTIONS(3027), - [anon_sym_rlock] = ACTIONS(3027), - [anon_sym_unsafe] = ACTIONS(3027), - [anon_sym_sql] = ACTIONS(3027), - [sym_int_literal] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_c_SQUOTE] = ACTIONS(3027), - [anon_sym_c_DQUOTE] = ACTIONS(3027), - [anon_sym_r_SQUOTE] = ACTIONS(3027), - [anon_sym_r_DQUOTE] = ACTIONS(3027), - [sym_pseudo_compile_time_identifier] = ACTIONS(3027), - [anon_sym_shared] = ACTIONS(3027), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3027), - [anon_sym_thread] = ACTIONS(3027), - [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_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_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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_CARET] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2471), + [anon_sym_POUND_LBRACK] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), + [sym_rune_literal] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [anon_sym_c_SQUOTE] = ACTIONS(2471), + [anon_sym_c_DQUOTE] = ACTIONS(2471), + [anon_sym_r_SQUOTE] = ACTIONS(2471), + [anon_sym_r_DQUOTE] = ACTIONS(2471), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2471), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), }, - [1505] = { - [sym_line_comment] = STATE(1505), - [sym_block_comment] = STATE(1505), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), + [1472] = { + [sym_line_comment] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_identifier] = ACTIONS(2889), + [anon_sym_LF] = ACTIONS(2889), + [anon_sym_CR] = ACTIONS(2889), + [anon_sym_CR_LF] = ACTIONS(2889), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [anon_sym_c_SQUOTE] = ACTIONS(2931), - [anon_sym_c_DQUOTE] = ACTIONS(2931), - [anon_sym_r_SQUOTE] = ACTIONS(2931), - [anon_sym_r_DQUOTE] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_RPAREN] = ACTIONS(2889), + [anon_sym_fn] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), }, - [1506] = { - [sym_line_comment] = STATE(1506), - [sym_block_comment] = STATE(1506), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), + [1473] = { + [sym_line_comment] = STATE(1473), + [sym_block_comment] = STATE(1473), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_c_SQUOTE] = ACTIONS(2913), - [anon_sym_c_DQUOTE] = ACTIONS(2913), - [anon_sym_r_SQUOTE] = ACTIONS(2913), - [anon_sym_r_DQUOTE] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_c_SQUOTE] = ACTIONS(3262), + [anon_sym_c_DQUOTE] = ACTIONS(3262), + [anon_sym_r_SQUOTE] = ACTIONS(3262), + [anon_sym_r_DQUOTE] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), }, - [1507] = { - [sym_line_comment] = STATE(1507), - [sym_block_comment] = STATE(1507), + [1474] = { + [sym_line_comment] = STATE(1474), + [sym_block_comment] = STATE(1474), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LF] = ACTIONS(2877), + [anon_sym_CR] = ACTIONS(2877), + [anon_sym_CR_LF] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + }, + [1475] = { + [sym_line_comment] = STATE(1475), + [sym_block_comment] = STATE(1475), [sym_identifier] = ACTIONS(2865), [anon_sym_LF] = ACTIONS(2865), [anon_sym_CR] = ACTIONS(2865), @@ -188844,9 +186298,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2865), [anon_sym_atomic] = ACTIONS(2865), }, - [1508] = { - [sym_line_comment] = STATE(1508), - [sym_block_comment] = STATE(1508), + [1476] = { + [sym_line_comment] = STATE(1476), + [sym_block_comment] = STATE(1476), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + }, + [1477] = { + [sym_line_comment] = STATE(1477), + [sym_block_comment] = STATE(1477), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + }, + [1478] = { + [sym_line_comment] = STATE(1478), + [sym_block_comment] = STATE(1478), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(2017), + [sym_plain_type] = STATE(2147), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2111), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(2017), + [sym_fixed_array_type] = STATE(2111), + [sym_array_type] = STATE(2111), + [sym_pointer_type] = STATE(2111), + [sym_wrong_pointer_type] = STATE(2111), + [sym_map_type] = STATE(2111), + [sym_channel_type] = STATE(2111), + [sym_shared_type] = STATE(2111), + [sym_thread_type] = STATE(2111), + [sym_atomic_type] = STATE(2111), + [sym_generic_type] = STATE(2111), + [sym_function_type] = STATE(2111), + [sym_identifier] = ACTIONS(4190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(853), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4204), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_LT_DASH] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_or] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(853), + [anon_sym_POUND_LBRACK] = ACTIONS(853), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(853), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_PERCENT_EQ] = ACTIONS(853), + [anon_sym_LT_LT_EQ] = ACTIONS(853), + [anon_sym_GT_GT_EQ] = ACTIONS(853), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(853), + [anon_sym_AMP_EQ] = ACTIONS(853), + [anon_sym_AMP_CARET_EQ] = ACTIONS(853), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_PIPE_EQ] = ACTIONS(853), + [anon_sym_CARET_EQ] = ACTIONS(853), + [anon_sym_shared] = ACTIONS(4208), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4212), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4216), + }, + [1479] = { + [sym_line_comment] = STATE(1479), + [sym_block_comment] = STATE(1479), + [sym_identifier] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2849), + [anon_sym_CR] = ACTIONS(2849), + [anon_sym_CR_LF] = ACTIONS(2849), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), + }, + [1480] = { + [sym_line_comment] = STATE(1480), + [sym_block_comment] = STATE(1480), [sym_identifier] = ACTIONS(2845), [anon_sym_LF] = ACTIONS(2845), [anon_sym_CR] = ACTIONS(2845), @@ -188931,444 +186733,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2845), [anon_sym_atomic] = ACTIONS(2845), }, - [1509] = { - [sym_line_comment] = STATE(1509), - [sym_block_comment] = STATE(1509), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [anon_sym_CR] = ACTIONS(2459), - [anon_sym_CR_LF] = ACTIONS(2459), + [1481] = { + [sym_line_comment] = STATE(1481), + [sym_block_comment] = STATE(1481), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LF] = ACTIONS(2947), + [anon_sym_CR] = ACTIONS(2947), + [anon_sym_CR_LF] = ACTIONS(2947), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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_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_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_c_SQUOTE] = ACTIONS(2459), - [anon_sym_c_DQUOTE] = ACTIONS(2459), - [anon_sym_r_SQUOTE] = ACTIONS(2459), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_as] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_RPAREN] = ACTIONS(2947), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_mut] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_QMARK] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2947), + [anon_sym_spawn] = ACTIONS(2947), + [anon_sym_json_DOTdecode] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2947), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2947), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_or] = ACTIONS(2947), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_QMARK_DOT] = ACTIONS(2947), + [anon_sym_POUND_LBRACK] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_DOLLARif] = ACTIONS(2947), + [anon_sym_is] = ACTIONS(2947), + [anon_sym_BANGis] = ACTIONS(2947), + [anon_sym_in] = ACTIONS(2947), + [anon_sym_BANGin] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_select] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2947), + [anon_sym_rlock] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_sql] = ACTIONS(2947), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2947), + [sym_rune_literal] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_c_SQUOTE] = ACTIONS(2947), + [anon_sym_c_DQUOTE] = ACTIONS(2947), + [anon_sym_r_SQUOTE] = ACTIONS(2947), + [anon_sym_r_DQUOTE] = ACTIONS(2947), + [sym_pseudo_compile_time_identifier] = ACTIONS(2947), + [anon_sym_shared] = ACTIONS(2947), + [anon_sym_map_LBRACK] = ACTIONS(2947), + [anon_sym_chan] = ACTIONS(2947), + [anon_sym_thread] = ACTIONS(2947), + [anon_sym_atomic] = ACTIONS(2947), }, - [1510] = { - [sym_line_comment] = STATE(1510), - [sym_block_comment] = STATE(1510), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), + [1482] = { + [sym_line_comment] = STATE(1482), + [sym_block_comment] = STATE(1482), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_c_SQUOTE] = ACTIONS(3074), - [anon_sym_c_DQUOTE] = ACTIONS(3074), - [anon_sym_r_SQUOTE] = ACTIONS(3074), - [anon_sym_r_DQUOTE] = ACTIONS(3074), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), }, - [1511] = { - [sym_line_comment] = STATE(1511), - [sym_block_comment] = STATE(1511), - [sym_identifier] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_CR] = ACTIONS(2633), - [anon_sym_CR_LF] = ACTIONS(2633), + [1483] = { + [sym_line_comment] = STATE(1483), + [sym_block_comment] = STATE(1483), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_c_SQUOTE] = ACTIONS(2633), - [anon_sym_c_DQUOTE] = ACTIONS(2633), - [anon_sym_r_SQUOTE] = ACTIONS(2633), - [anon_sym_r_DQUOTE] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [anon_sym_c_SQUOTE] = ACTIONS(3080), + [anon_sym_c_DQUOTE] = ACTIONS(3080), + [anon_sym_r_SQUOTE] = ACTIONS(3080), + [anon_sym_r_DQUOTE] = ACTIONS(3080), + [sym_pseudo_compile_time_identifier] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + }, + [1484] = { + [sym_line_comment] = STATE(1484), + [sym_block_comment] = STATE(1484), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2373), + [anon_sym_LT_EQ] = ACTIONS(2373), + [anon_sym_GT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2373), + [anon_sym_AMP_CARET] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2373), + [anon_sym_POUND_LBRACK] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + }, + [1485] = { + [sym_line_comment] = STATE(1485), + [sym_block_comment] = STATE(1485), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_c_SQUOTE] = ACTIONS(3340), + [anon_sym_c_DQUOTE] = ACTIONS(3340), + [anon_sym_r_SQUOTE] = ACTIONS(3340), + [anon_sym_r_DQUOTE] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), }, - [1512] = { - [sym_line_comment] = STATE(1512), - [sym_block_comment] = STATE(1512), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [1486] = { + [sym_line_comment] = STATE(1486), + [sym_block_comment] = STATE(1486), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_RPAREN] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3354), - [anon_sym_BANG_EQ] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3354), - [anon_sym_AMP_CARET] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3354), - [anon_sym_PIPE_PIPE] = ACTIONS(3354), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - }, - [1513] = { - [sym_line_comment] = STATE(1513), - [sym_block_comment] = STATE(1513), - [sym_reference_expression] = STATE(4526), - [sym_type_reference_expression] = STATE(2019), - [sym_plain_type] = STATE(2108), - [sym__plain_type_without_special] = STATE(2090), - [sym_anon_struct_type] = STATE(2091), - [sym_multi_return_type] = STATE(2090), - [sym_result_type] = STATE(2090), - [sym_option_type] = STATE(2090), - [sym_qualified_type] = STATE(2019), - [sym_fixed_array_type] = STATE(2091), - [sym_array_type] = STATE(2091), - [sym_pointer_type] = STATE(2091), - [sym_wrong_pointer_type] = STATE(2091), - [sym_map_type] = STATE(2091), - [sym_channel_type] = STATE(2091), - [sym_shared_type] = STATE(2091), - [sym_thread_type] = STATE(2091), - [sym_atomic_type] = STATE(2091), - [sym_generic_type] = STATE(2091), - [sym_function_type] = STATE(2091), - [sym_identifier] = ACTIONS(4180), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4192), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_LT_DASH] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(875), - [anon_sym_POUND_LBRACK] = ACTIONS(875), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(875), - [anon_sym_STAR_EQ] = ACTIONS(875), - [anon_sym_SLASH_EQ] = ACTIONS(875), - [anon_sym_PERCENT_EQ] = ACTIONS(875), - [anon_sym_LT_LT_EQ] = ACTIONS(875), - [anon_sym_GT_GT_EQ] = ACTIONS(875), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(875), - [anon_sym_AMP_EQ] = ACTIONS(875), - [anon_sym_AMP_CARET_EQ] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(875), - [anon_sym_DASH_EQ] = ACTIONS(875), - [anon_sym_PIPE_EQ] = ACTIONS(875), - [anon_sym_CARET_EQ] = ACTIONS(875), - [anon_sym_shared] = ACTIONS(4198), - [anon_sym_map_LBRACK] = ACTIONS(4200), - [anon_sym_chan] = ACTIONS(4202), - [anon_sym_thread] = ACTIONS(4204), - [anon_sym_atomic] = ACTIONS(4206), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_c_SQUOTE] = ACTIONS(3336), + [anon_sym_c_DQUOTE] = ACTIONS(3336), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), }, - [1514] = { - [sym_line_comment] = STATE(1514), - [sym_block_comment] = STATE(1514), + [1487] = { + [sym_line_comment] = STATE(1487), + [sym_block_comment] = STATE(1487), [sym_identifier] = ACTIONS(3332), [anon_sym_LF] = ACTIONS(3332), [anon_sym_CR] = ACTIONS(3332), @@ -189453,270 +187342,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3332), [anon_sym_atomic] = ACTIONS(3332), }, - [1515] = { - [sym_line_comment] = STATE(1515), - [sym_block_comment] = STATE(1515), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LF] = ACTIONS(3278), - [anon_sym_CR] = ACTIONS(3278), - [anon_sym_CR_LF] = ACTIONS(3278), + [1488] = { + [sym_line_comment] = STATE(1488), + [sym_block_comment] = STATE(1488), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(2017), + [sym_plain_type] = STATE(2136), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2111), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(2017), + [sym_fixed_array_type] = STATE(2111), + [sym_array_type] = STATE(2111), + [sym_pointer_type] = STATE(2111), + [sym_wrong_pointer_type] = STATE(2111), + [sym_map_type] = STATE(2111), + [sym_channel_type] = STATE(2111), + [sym_shared_type] = STATE(2111), + [sym_thread_type] = STATE(2111), + [sym_atomic_type] = STATE(2111), + [sym_generic_type] = STATE(2111), + [sym_function_type] = STATE(2111), + [sym_identifier] = ACTIONS(4190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4204), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_LT_DASH] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(857), + [anon_sym_POUND_LBRACK] = ACTIONS(857), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(857), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_PERCENT_EQ] = ACTIONS(857), + [anon_sym_LT_LT_EQ] = ACTIONS(857), + [anon_sym_GT_GT_EQ] = ACTIONS(857), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(857), + [anon_sym_AMP_EQ] = ACTIONS(857), + [anon_sym_AMP_CARET_EQ] = ACTIONS(857), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_PIPE_EQ] = ACTIONS(857), + [anon_sym_CARET_EQ] = ACTIONS(857), + [anon_sym_shared] = ACTIONS(4208), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4212), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4216), + }, + [1489] = { + [sym_line_comment] = STATE(1489), + [sym_block_comment] = STATE(1489), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LF] = ACTIONS(3015), + [anon_sym_CR] = ACTIONS(3015), + [anon_sym_CR_LF] = ACTIONS(3015), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3278), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3278), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3278), - [anon_sym_POUND_LBRACK] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3278), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3278), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3278), - [sym_rune_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_c_SQUOTE] = ACTIONS(3278), - [anon_sym_c_DQUOTE] = ACTIONS(3278), - [anon_sym_r_SQUOTE] = ACTIONS(3278), - [anon_sym_r_DQUOTE] = ACTIONS(3278), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3278), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_c_SQUOTE] = ACTIONS(3015), + [anon_sym_c_DQUOTE] = ACTIONS(3015), + [anon_sym_r_SQUOTE] = ACTIONS(3015), + [anon_sym_r_DQUOTE] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), }, - [1516] = { - [sym_line_comment] = STATE(1516), - [sym_block_comment] = STATE(1516), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LF] = ACTIONS(3262), - [anon_sym_CR] = ACTIONS(3262), - [anon_sym_CR_LF] = ACTIONS(3262), + [1490] = { + [sym_line_comment] = STATE(1490), + [sym_block_comment] = STATE(1490), + [sym_identifier] = ACTIONS(3274), + [anon_sym_LF] = ACTIONS(3274), + [anon_sym_CR] = ACTIONS(3274), + [anon_sym_CR_LF] = ACTIONS(3274), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_fn] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_mut] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_go] = ACTIONS(3262), - [anon_sym_spawn] = ACTIONS(3262), - [anon_sym_json_DOTdecode] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_LBRACK2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_GT_GT_GT] = ACTIONS(3262), - [anon_sym_AMP_CARET] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_or] = ACTIONS(3262), - [sym_none] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_nil] = ACTIONS(3262), - [anon_sym_QMARK_DOT] = ACTIONS(3262), - [anon_sym_POUND_LBRACK] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_DOLLARif] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_BANGis] = ACTIONS(3262), - [anon_sym_in] = ACTIONS(3262), - [anon_sym_BANGin] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_select] = ACTIONS(3262), - [anon_sym_lock] = ACTIONS(3262), - [anon_sym_rlock] = ACTIONS(3262), - [anon_sym_unsafe] = ACTIONS(3262), - [anon_sym_sql] = ACTIONS(3262), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(3262), - [sym_rune_literal] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_c_SQUOTE] = ACTIONS(3262), - [anon_sym_c_DQUOTE] = ACTIONS(3262), - [anon_sym_r_SQUOTE] = ACTIONS(3262), - [anon_sym_r_DQUOTE] = ACTIONS(3262), - [sym_pseudo_compile_time_identifier] = ACTIONS(3262), - [anon_sym_shared] = ACTIONS(3262), - [anon_sym_map_LBRACK] = ACTIONS(3262), - [anon_sym_chan] = ACTIONS(3262), - [anon_sym_thread] = ACTIONS(3262), - [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_fn] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_mut] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_go] = ACTIONS(3274), + [anon_sym_spawn] = ACTIONS(3274), + [anon_sym_json_DOTdecode] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3274), + [anon_sym_LBRACK2] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_CARET] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_LT_LT] = ACTIONS(3274), + [anon_sym_GT_GT] = ACTIONS(3274), + [anon_sym_GT_GT_GT] = ACTIONS(3274), + [anon_sym_AMP_CARET] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3274), + [sym_none] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_nil] = ACTIONS(3274), + [anon_sym_QMARK_DOT] = ACTIONS(3274), + [anon_sym_POUND_LBRACK] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_DOLLARif] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3274), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_select] = ACTIONS(3274), + [anon_sym_lock] = ACTIONS(3274), + [anon_sym_rlock] = ACTIONS(3274), + [anon_sym_unsafe] = ACTIONS(3274), + [anon_sym_sql] = ACTIONS(3274), + [sym_int_literal] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(3274), + [sym_rune_literal] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_c_SQUOTE] = ACTIONS(3274), + [anon_sym_c_DQUOTE] = ACTIONS(3274), + [anon_sym_r_SQUOTE] = ACTIONS(3274), + [anon_sym_r_DQUOTE] = ACTIONS(3274), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), + [anon_sym_shared] = ACTIONS(3274), + [anon_sym_map_LBRACK] = ACTIONS(3274), + [anon_sym_chan] = ACTIONS(3274), + [anon_sym_thread] = ACTIONS(3274), + [anon_sym_atomic] = ACTIONS(3274), }, - [1517] = { - [sym_line_comment] = STATE(1517), - [sym_block_comment] = STATE(1517), - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), + [1491] = { + [sym_line_comment] = STATE(1491), + [sym_block_comment] = STATE(1491), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LF] = ACTIONS(3256), + [anon_sym_CR] = ACTIONS(3256), + [anon_sym_CR_LF] = ACTIONS(3256), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_c_SQUOTE] = ACTIONS(2977), - [anon_sym_c_DQUOTE] = ACTIONS(2977), - [anon_sym_r_SQUOTE] = ACTIONS(2977), - [anon_sym_r_DQUOTE] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_c_SQUOTE] = ACTIONS(3256), + [anon_sym_c_DQUOTE] = ACTIONS(3256), + [anon_sym_r_SQUOTE] = ACTIONS(3256), + [anon_sym_r_DQUOTE] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), }, - [1518] = { - [sym_line_comment] = STATE(1518), - [sym_block_comment] = STATE(1518), + [1492] = { + [sym_line_comment] = STATE(1492), + [sym_block_comment] = STATE(1492), [sym_identifier] = ACTIONS(2957), [anon_sym_LF] = ACTIONS(2957), [anon_sym_CR] = ACTIONS(2957), @@ -189801,9 +187777,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2957), [anon_sym_atomic] = ACTIONS(2957), }, - [1519] = { - [sym_line_comment] = STATE(1519), - [sym_block_comment] = STATE(1519), + [1493] = { + [sym_line_comment] = STATE(1493), + [sym_block_comment] = STATE(1493), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_c_SQUOTE] = ACTIONS(3035), + [anon_sym_c_DQUOTE] = ACTIONS(3035), + [anon_sym_r_SQUOTE] = ACTIONS(3035), + [anon_sym_r_DQUOTE] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + }, + [1494] = { + [sym_line_comment] = STATE(1494), + [sym_block_comment] = STATE(1494), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + }, + [1495] = { + [sym_line_comment] = STATE(1495), + [sym_block_comment] = STATE(1495), + [sym_identifier] = ACTIONS(3019), + [anon_sym_LF] = ACTIONS(3019), + [anon_sym_CR] = ACTIONS(3019), + [anon_sym_CR_LF] = ACTIONS(3019), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_DOT] = ACTIONS(3019), + [anon_sym_as] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_fn] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_mut] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_go] = ACTIONS(3019), + [anon_sym_spawn] = ACTIONS(3019), + [anon_sym_json_DOTdecode] = ACTIONS(3019), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_LBRACK2] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_LT_DASH] = ACTIONS(3019), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_or] = ACTIONS(3019), + [sym_none] = ACTIONS(3019), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_nil] = ACTIONS(3019), + [anon_sym_QMARK_DOT] = ACTIONS(3019), + [anon_sym_POUND_LBRACK] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_DOLLARif] = ACTIONS(3019), + [anon_sym_is] = ACTIONS(3019), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_in] = ACTIONS(3019), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_select] = ACTIONS(3019), + [anon_sym_lock] = ACTIONS(3019), + [anon_sym_rlock] = ACTIONS(3019), + [anon_sym_unsafe] = ACTIONS(3019), + [anon_sym_sql] = ACTIONS(3019), + [sym_int_literal] = ACTIONS(3019), + [sym_float_literal] = ACTIONS(3019), + [sym_rune_literal] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [anon_sym_c_SQUOTE] = ACTIONS(3019), + [anon_sym_c_DQUOTE] = ACTIONS(3019), + [anon_sym_r_SQUOTE] = ACTIONS(3019), + [anon_sym_r_DQUOTE] = ACTIONS(3019), + [sym_pseudo_compile_time_identifier] = ACTIONS(3019), + [anon_sym_shared] = ACTIONS(3019), + [anon_sym_map_LBRACK] = ACTIONS(3019), + [anon_sym_chan] = ACTIONS(3019), + [anon_sym_thread] = ACTIONS(3019), + [anon_sym_atomic] = ACTIONS(3019), + }, + [1496] = { + [sym_line_comment] = STATE(1496), + [sym_block_comment] = STATE(1496), + [sym_identifier] = ACTIONS(3069), + [anon_sym_LF] = ACTIONS(3069), + [anon_sym_CR] = ACTIONS(3069), + [anon_sym_CR_LF] = ACTIONS(3069), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3069), + [anon_sym_DASH_DASH] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3069), + [anon_sym_AMP_CARET] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3069), + [anon_sym_POUND_LBRACK] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3069), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), + [sym_rune_literal] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_c_SQUOTE] = ACTIONS(3069), + [anon_sym_c_DQUOTE] = ACTIONS(3069), + [anon_sym_r_SQUOTE] = ACTIONS(3069), + [anon_sym_r_DQUOTE] = ACTIONS(3069), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3069), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), + }, + [1497] = { + [sym_line_comment] = STATE(1497), + [sym_block_comment] = STATE(1497), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_CARET] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + }, + [1498] = { + [sym_line_comment] = STATE(1498), + [sym_block_comment] = STATE(1498), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + }, + [1499] = { + [sym_line_comment] = STATE(1499), + [sym_block_comment] = STATE(1499), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_c_SQUOTE] = ACTIONS(3023), + [anon_sym_c_DQUOTE] = ACTIONS(3023), + [anon_sym_r_SQUOTE] = ACTIONS(3023), + [anon_sym_r_DQUOTE] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + }, + [1500] = { + [sym_line_comment] = STATE(1500), + [sym_block_comment] = STATE(1500), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + }, + [1501] = { + [sym_line_comment] = STATE(1501), + [sym_block_comment] = STATE(1501), + [sym_identifier] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2819), + [anon_sym_CR] = ACTIONS(2819), + [anon_sym_CR_LF] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_as] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_mut] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_QMARK] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2819), + [anon_sym_json_DOTdecode] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_LBRACK2] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [sym_none] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_nil] = ACTIONS(2819), + [anon_sym_QMARK_DOT] = ACTIONS(2819), + [anon_sym_POUND_LBRACK] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_BANGis] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_BANGin] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_select] = ACTIONS(2819), + [anon_sym_lock] = ACTIONS(2819), + [anon_sym_rlock] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_sql] = ACTIONS(2819), + [sym_int_literal] = ACTIONS(2819), + [sym_float_literal] = ACTIONS(2819), + [sym_rune_literal] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_c_SQUOTE] = ACTIONS(2819), + [anon_sym_c_DQUOTE] = ACTIONS(2819), + [anon_sym_r_SQUOTE] = ACTIONS(2819), + [anon_sym_r_DQUOTE] = ACTIONS(2819), + [sym_pseudo_compile_time_identifier] = ACTIONS(2819), + [anon_sym_shared] = ACTIONS(2819), + [anon_sym_map_LBRACK] = ACTIONS(2819), + [anon_sym_chan] = ACTIONS(2819), + [anon_sym_thread] = ACTIONS(2819), + [anon_sym_atomic] = ACTIONS(2819), + }, + [1502] = { + [sym_line_comment] = STATE(1502), + [sym_block_comment] = STATE(1502), [sym_identifier] = ACTIONS(2935), [anon_sym_LF] = ACTIONS(2935), [anon_sym_CR] = ACTIONS(2935), @@ -189888,9 +188647,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2935), [anon_sym_atomic] = ACTIONS(2935), }, - [1520] = { - [sym_line_comment] = STATE(1520), - [sym_block_comment] = STATE(1520), + [1503] = { + [sym_line_comment] = STATE(1503), + [sym_block_comment] = STATE(1503), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1504] = { + [sym_line_comment] = STATE(1504), + [sym_block_comment] = STATE(1504), + [sym_identifier] = ACTIONS(3300), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_CR] = ACTIONS(3300), + [anon_sym_CR_LF] = ACTIONS(3300), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_mut] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_go] = ACTIONS(3300), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3300), + [anon_sym_GT_GT_GT] = ACTIONS(3300), + [anon_sym_AMP_CARET] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_or] = ACTIONS(3300), + [sym_none] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_nil] = ACTIONS(3300), + [anon_sym_QMARK_DOT] = ACTIONS(3300), + [anon_sym_POUND_LBRACK] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_DOLLARif] = ACTIONS(3300), + [anon_sym_is] = ACTIONS(3300), + [anon_sym_BANGis] = ACTIONS(3300), + [anon_sym_in] = ACTIONS(3300), + [anon_sym_BANGin] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_select] = ACTIONS(3300), + [anon_sym_lock] = ACTIONS(3300), + [anon_sym_rlock] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_sql] = ACTIONS(3300), + [sym_int_literal] = ACTIONS(3300), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_c_SQUOTE] = ACTIONS(3300), + [anon_sym_c_DQUOTE] = ACTIONS(3300), + [anon_sym_r_SQUOTE] = ACTIONS(3300), + [anon_sym_r_DQUOTE] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3300), + [anon_sym_shared] = ACTIONS(3300), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3300), + [anon_sym_thread] = ACTIONS(3300), + [anon_sym_atomic] = ACTIONS(3300), + }, + [1505] = { + [sym_line_comment] = STATE(1505), + [sym_block_comment] = STATE(1505), [sym_identifier] = ACTIONS(2647), [anon_sym_LF] = ACTIONS(2647), [anon_sym_CR] = ACTIONS(2647), @@ -189975,30 +188908,1509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2647), [anon_sym_atomic] = ACTIONS(2647), }, + [1506] = { + [sym_line_comment] = STATE(1506), + [sym_block_comment] = STATE(1506), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_RPAREN] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3328), + [anon_sym_r_SQUOTE] = ACTIONS(3328), + [anon_sym_r_DQUOTE] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + }, + [1507] = { + [sym_line_comment] = STATE(1507), + [sym_block_comment] = STATE(1507), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + }, + [1508] = { + [sym_line_comment] = STATE(1508), + [sym_block_comment] = STATE(1508), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LF] = ACTIONS(2429), + [anon_sym_CR] = ACTIONS(2429), + [anon_sym_CR_LF] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + }, + [1509] = { + [sym_line_comment] = STATE(1509), + [sym_block_comment] = STATE(1509), + [sym_identifier] = ACTIONS(2631), + [anon_sym_LF] = ACTIONS(2631), + [anon_sym_CR] = ACTIONS(2631), + [anon_sym_CR_LF] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_AMP_CARET] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2631), + [anon_sym_POUND_LBRACK] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), + [sym_rune_literal] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_c_SQUOTE] = ACTIONS(2631), + [anon_sym_c_DQUOTE] = ACTIONS(2631), + [anon_sym_r_SQUOTE] = ACTIONS(2631), + [anon_sym_r_DQUOTE] = ACTIONS(2631), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2631), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + }, + [1510] = { + [sym_line_comment] = STATE(1510), + [sym_block_comment] = STATE(1510), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + }, + [1511] = { + [sym_line_comment] = STATE(1511), + [sym_block_comment] = STATE(1511), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LF] = ACTIONS(3286), + [anon_sym_CR] = ACTIONS(3286), + [anon_sym_CR_LF] = ACTIONS(3286), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_QMARK] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_go] = ACTIONS(3286), + [anon_sym_spawn] = ACTIONS(3286), + [anon_sym_json_DOTdecode] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LBRACK2] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_LT_DASH] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_or] = ACTIONS(3286), + [sym_none] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_nil] = ACTIONS(3286), + [anon_sym_QMARK_DOT] = ACTIONS(3286), + [anon_sym_POUND_LBRACK] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_DOLLARif] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_select] = ACTIONS(3286), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3286), + [anon_sym_sql] = ACTIONS(3286), + [sym_int_literal] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3286), + [sym_rune_literal] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3286), + [anon_sym_DQUOTE] = ACTIONS(3286), + [anon_sym_c_SQUOTE] = ACTIONS(3286), + [anon_sym_c_DQUOTE] = ACTIONS(3286), + [anon_sym_r_SQUOTE] = ACTIONS(3286), + [anon_sym_r_DQUOTE] = ACTIONS(3286), + [sym_pseudo_compile_time_identifier] = ACTIONS(3286), + [anon_sym_shared] = ACTIONS(3286), + [anon_sym_map_LBRACK] = ACTIONS(3286), + [anon_sym_chan] = ACTIONS(3286), + [anon_sym_thread] = ACTIONS(3286), + [anon_sym_atomic] = ACTIONS(3286), + }, + [1512] = { + [sym_line_comment] = STATE(1512), + [sym_block_comment] = STATE(1512), + [sym_identifier] = ACTIONS(3304), + [anon_sym_LF] = ACTIONS(3304), + [anon_sym_CR] = ACTIONS(3304), + [anon_sym_CR_LF] = ACTIONS(3304), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_as] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_RPAREN] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_GT] = ACTIONS(3304), + [anon_sym_EQ_EQ] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_LT_EQ] = ACTIONS(3304), + [anon_sym_GT_EQ] = ACTIONS(3304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_mut] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_go] = ACTIONS(3304), + [anon_sym_spawn] = ACTIONS(3304), + [anon_sym_json_DOTdecode] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3304), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_LT_LT] = ACTIONS(3304), + [anon_sym_GT_GT] = ACTIONS(3304), + [anon_sym_GT_GT_GT] = ACTIONS(3304), + [anon_sym_AMP_CARET] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_or] = ACTIONS(3304), + [sym_none] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_nil] = ACTIONS(3304), + [anon_sym_QMARK_DOT] = ACTIONS(3304), + [anon_sym_POUND_LBRACK] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_DOLLARif] = ACTIONS(3304), + [anon_sym_is] = ACTIONS(3304), + [anon_sym_BANGis] = ACTIONS(3304), + [anon_sym_in] = ACTIONS(3304), + [anon_sym_BANGin] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_select] = ACTIONS(3304), + [anon_sym_lock] = ACTIONS(3304), + [anon_sym_rlock] = ACTIONS(3304), + [anon_sym_unsafe] = ACTIONS(3304), + [anon_sym_sql] = ACTIONS(3304), + [sym_int_literal] = ACTIONS(3304), + [sym_float_literal] = ACTIONS(3304), + [sym_rune_literal] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_c_SQUOTE] = ACTIONS(3304), + [anon_sym_c_DQUOTE] = ACTIONS(3304), + [anon_sym_r_SQUOTE] = ACTIONS(3304), + [anon_sym_r_DQUOTE] = ACTIONS(3304), + [sym_pseudo_compile_time_identifier] = ACTIONS(3304), + [anon_sym_shared] = ACTIONS(3304), + [anon_sym_map_LBRACK] = ACTIONS(3304), + [anon_sym_chan] = ACTIONS(3304), + [anon_sym_thread] = ACTIONS(3304), + [anon_sym_atomic] = ACTIONS(3304), + }, + [1513] = { + [sym_line_comment] = STATE(1513), + [sym_block_comment] = STATE(1513), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + }, + [1514] = { + [sym_line_comment] = STATE(1514), + [sym_block_comment] = STATE(1514), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_c_SQUOTE] = ACTIONS(2659), + [anon_sym_c_DQUOTE] = ACTIONS(2659), + [anon_sym_r_SQUOTE] = ACTIONS(2659), + [anon_sym_r_DQUOTE] = 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), + }, + [1515] = { + [sym_line_comment] = STATE(1515), + [sym_block_comment] = STATE(1515), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LF] = ACTIONS(2951), + [anon_sym_CR] = ACTIONS(2951), + [anon_sym_CR_LF] = ACTIONS(2951), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_c_SQUOTE] = ACTIONS(2951), + [anon_sym_c_DQUOTE] = ACTIONS(2951), + [anon_sym_r_SQUOTE] = ACTIONS(2951), + [anon_sym_r_DQUOTE] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), + }, + [1516] = { + [sym_line_comment] = STATE(1516), + [sym_block_comment] = STATE(1516), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_c_SQUOTE] = ACTIONS(2655), + [anon_sym_c_DQUOTE] = ACTIONS(2655), + [anon_sym_r_SQUOTE] = ACTIONS(2655), + [anon_sym_r_DQUOTE] = ACTIONS(2655), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), + }, + [1517] = { + [sym_line_comment] = STATE(1517), + [sym_block_comment] = STATE(1517), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(2017), + [sym_plain_type] = STATE(2123), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2111), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(2017), + [sym_fixed_array_type] = STATE(2111), + [sym_array_type] = STATE(2111), + [sym_pointer_type] = STATE(2111), + [sym_wrong_pointer_type] = STATE(2111), + [sym_map_type] = STATE(2111), + [sym_channel_type] = STATE(2111), + [sym_shared_type] = STATE(2111), + [sym_thread_type] = STATE(2111), + [sym_atomic_type] = STATE(2111), + [sym_generic_type] = STATE(2111), + [sym_function_type] = STATE(2111), + [sym_identifier] = ACTIONS(4190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(817), + [anon_sym_as] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(821), + [anon_sym_fn] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(4204), + [anon_sym_CARET] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_GT_GT_GT] = ACTIONS(821), + [anon_sym_AMP_CARET] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_or] = ACTIONS(821), + [anon_sym_QMARK_DOT] = ACTIONS(817), + [anon_sym_POUND_LBRACK] = ACTIONS(817), + [anon_sym_is] = ACTIONS(821), + [anon_sym_BANGis] = ACTIONS(817), + [anon_sym_in] = ACTIONS(821), + [anon_sym_BANGin] = ACTIONS(817), + [anon_sym_STAR_EQ] = ACTIONS(817), + [anon_sym_SLASH_EQ] = ACTIONS(817), + [anon_sym_PERCENT_EQ] = ACTIONS(817), + [anon_sym_LT_LT_EQ] = ACTIONS(817), + [anon_sym_GT_GT_EQ] = ACTIONS(817), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(817), + [anon_sym_AMP_EQ] = ACTIONS(817), + [anon_sym_AMP_CARET_EQ] = ACTIONS(817), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_PIPE_EQ] = ACTIONS(817), + [anon_sym_CARET_EQ] = ACTIONS(817), + [anon_sym_shared] = ACTIONS(4208), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4212), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4216), + }, + [1518] = { + [sym_line_comment] = STATE(1518), + [sym_block_comment] = STATE(1518), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LF] = ACTIONS(3308), + [anon_sym_CR] = ACTIONS(3308), + [anon_sym_CR_LF] = ACTIONS(3308), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_as] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_RPAREN] = ACTIONS(3308), + [anon_sym_fn] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_GT] = ACTIONS(3308), + [anon_sym_EQ_EQ] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_LT_EQ] = ACTIONS(3308), + [anon_sym_GT_EQ] = ACTIONS(3308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_mut] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3308), + [anon_sym_spawn] = ACTIONS(3308), + [anon_sym_json_DOTdecode] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(3308), + [anon_sym_LBRACK2] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_CARET] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_LT_LT] = ACTIONS(3308), + [anon_sym_GT_GT] = ACTIONS(3308), + [anon_sym_GT_GT_GT] = ACTIONS(3308), + [anon_sym_AMP_CARET] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_or] = ACTIONS(3308), + [sym_none] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_nil] = ACTIONS(3308), + [anon_sym_QMARK_DOT] = ACTIONS(3308), + [anon_sym_POUND_LBRACK] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3308), + [anon_sym_is] = ACTIONS(3308), + [anon_sym_BANGis] = ACTIONS(3308), + [anon_sym_in] = ACTIONS(3308), + [anon_sym_BANGin] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_select] = ACTIONS(3308), + [anon_sym_lock] = ACTIONS(3308), + [anon_sym_rlock] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_sql] = ACTIONS(3308), + [sym_int_literal] = ACTIONS(3308), + [sym_float_literal] = ACTIONS(3308), + [sym_rune_literal] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_c_SQUOTE] = ACTIONS(3308), + [anon_sym_c_DQUOTE] = ACTIONS(3308), + [anon_sym_r_SQUOTE] = ACTIONS(3308), + [anon_sym_r_DQUOTE] = ACTIONS(3308), + [sym_pseudo_compile_time_identifier] = ACTIONS(3308), + [anon_sym_shared] = ACTIONS(3308), + [anon_sym_map_LBRACK] = ACTIONS(3308), + [anon_sym_chan] = ACTIONS(3308), + [anon_sym_thread] = ACTIONS(3308), + [anon_sym_atomic] = ACTIONS(3308), + }, + [1519] = { + [sym_line_comment] = STATE(1519), + [sym_block_comment] = STATE(1519), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + }, + [1520] = { + [sym_line_comment] = STATE(1520), + [sym_block_comment] = STATE(1520), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + }, [1521] = { [sym_line_comment] = STATE(1521), [sym_block_comment] = STATE(1521), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3280), + [anon_sym_CR] = ACTIONS(3280), + [anon_sym_CR_LF] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3280), + [anon_sym_BANG_EQ] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3280), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3280), + [anon_sym_AMP_CARET] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_PIPE_PIPE] = ACTIONS(3280), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3280), + [anon_sym_POUND_LBRACK] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3280), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3280), + [sym_rune_literal] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_c_SQUOTE] = ACTIONS(3280), + [anon_sym_c_DQUOTE] = ACTIONS(3280), + [anon_sym_r_SQUOTE] = ACTIONS(3280), + [anon_sym_r_DQUOTE] = ACTIONS(3280), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3280), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), + }, + [1522] = { + [sym_line_comment] = STATE(1522), + [sym_block_comment] = STATE(1522), + [sym_identifier] = ACTIONS(2881), + [anon_sym_LF] = ACTIONS(2881), + [anon_sym_CR] = ACTIONS(2881), + [anon_sym_CR_LF] = ACTIONS(2881), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_DOT] = ACTIONS(2881), + [anon_sym_as] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_fn] = ACTIONS(2881), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_GT] = ACTIONS(2881), + [anon_sym_EQ_EQ] = ACTIONS(2881), + [anon_sym_BANG_EQ] = ACTIONS(2881), + [anon_sym_LT_EQ] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2881), + [anon_sym_mut] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_go] = ACTIONS(2881), + [anon_sym_spawn] = ACTIONS(2881), + [anon_sym_json_DOTdecode] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_LBRACK2] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_LT_DASH] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2881), + [anon_sym_GT_GT] = ACTIONS(2881), + [anon_sym_GT_GT_GT] = ACTIONS(2881), + [anon_sym_AMP_CARET] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_PIPE_PIPE] = ACTIONS(2881), + [anon_sym_or] = ACTIONS(2881), + [sym_none] = ACTIONS(2881), + [sym_true] = ACTIONS(2881), + [sym_false] = ACTIONS(2881), + [sym_nil] = ACTIONS(2881), + [anon_sym_QMARK_DOT] = ACTIONS(2881), + [anon_sym_POUND_LBRACK] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_DOLLARif] = ACTIONS(2881), + [anon_sym_is] = ACTIONS(2881), + [anon_sym_BANGis] = ACTIONS(2881), + [anon_sym_in] = ACTIONS(2881), + [anon_sym_BANGin] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(2881), + [anon_sym_select] = ACTIONS(2881), + [anon_sym_lock] = ACTIONS(2881), + [anon_sym_rlock] = ACTIONS(2881), + [anon_sym_unsafe] = ACTIONS(2881), + [anon_sym_sql] = ACTIONS(2881), + [sym_int_literal] = ACTIONS(2881), + [sym_float_literal] = ACTIONS(2881), + [sym_rune_literal] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [anon_sym_c_SQUOTE] = ACTIONS(2881), + [anon_sym_c_DQUOTE] = ACTIONS(2881), + [anon_sym_r_SQUOTE] = ACTIONS(2881), + [anon_sym_r_DQUOTE] = ACTIONS(2881), + [sym_pseudo_compile_time_identifier] = ACTIONS(2881), + [anon_sym_shared] = ACTIONS(2881), + [anon_sym_map_LBRACK] = ACTIONS(2881), + [anon_sym_chan] = ACTIONS(2881), + [anon_sym_thread] = ACTIONS(2881), + [anon_sym_atomic] = ACTIONS(2881), + }, + [1523] = { + [sym_line_comment] = STATE(1523), + [sym_block_comment] = STATE(1523), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(849), @@ -190007,7 +190419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(849), [anon_sym_LPAREN] = ACTIONS(849), [anon_sym_EQ] = ACTIONS(851), - [anon_sym_fn] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(869), [anon_sym_PLUS] = ACTIONS(851), [anon_sym_DASH] = ACTIONS(851), [anon_sym_STAR] = ACTIONS(851), @@ -190020,7 +190432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(849), [anon_sym_GT_EQ] = ACTIONS(849), [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(873), [anon_sym_COLON] = ACTIONS(849), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), @@ -190056,885 +190468,972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(849), [anon_sym_PIPE_EQ] = ACTIONS(849), [anon_sym_CARET_EQ] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1522] = { - [sym_line_comment] = STATE(1522), - [sym_block_comment] = STATE(1522), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_CR] = ACTIONS(3346), - [anon_sym_CR_LF] = ACTIONS(3346), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_fn] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_mut] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_go] = ACTIONS(3346), - [anon_sym_spawn] = ACTIONS(3346), - [anon_sym_json_DOTdecode] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3346), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_or] = ACTIONS(3346), - [sym_none] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_nil] = ACTIONS(3346), - [anon_sym_QMARK_DOT] = ACTIONS(3346), - [anon_sym_POUND_LBRACK] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3346), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_select] = ACTIONS(3346), - [anon_sym_lock] = ACTIONS(3346), - [anon_sym_rlock] = ACTIONS(3346), - [anon_sym_unsafe] = ACTIONS(3346), - [anon_sym_sql] = ACTIONS(3346), - [sym_int_literal] = ACTIONS(3346), - [sym_float_literal] = ACTIONS(3346), - [sym_rune_literal] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_c_SQUOTE] = ACTIONS(3346), - [anon_sym_c_DQUOTE] = ACTIONS(3346), - [anon_sym_r_SQUOTE] = ACTIONS(3346), - [anon_sym_r_DQUOTE] = ACTIONS(3346), - [sym_pseudo_compile_time_identifier] = ACTIONS(3346), - [anon_sym_shared] = ACTIONS(3346), - [anon_sym_map_LBRACK] = ACTIONS(3346), - [anon_sym_chan] = ACTIONS(3346), - [anon_sym_thread] = ACTIONS(3346), - [anon_sym_atomic] = ACTIONS(3346), - }, - [1523] = { - [sym_line_comment] = STATE(1523), - [sym_block_comment] = STATE(1523), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [anon_sym_c_SQUOTE] = ACTIONS(2643), - [anon_sym_c_DQUOTE] = ACTIONS(2643), - [anon_sym_r_SQUOTE] = ACTIONS(2643), - [anon_sym_r_DQUOTE] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - }, [1524] = { [sym_line_comment] = STATE(1524), [sym_block_comment] = STATE(1524), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LF] = ACTIONS(2373), - [anon_sym_CR] = ACTIONS(2373), - [anon_sym_CR_LF] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_CR] = ACTIONS(2377), + [anon_sym_CR_LF] = ACTIONS(2377), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_PERCENT] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2373), - [anon_sym_BANG_EQ] = ACTIONS(2373), - [anon_sym_LT_EQ] = ACTIONS(2373), - [anon_sym_GT_EQ] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_QMARK] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_go] = ACTIONS(2373), - [anon_sym_spawn] = ACTIONS(2373), - [anon_sym_json_DOTdecode] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_LBRACK2] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_DASH] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_GT_GT] = ACTIONS(2373), - [anon_sym_GT_GT_GT] = ACTIONS(2373), - [anon_sym_AMP_CARET] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_PIPE_PIPE] = ACTIONS(2373), - [anon_sym_or] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_nil] = ACTIONS(2373), - [anon_sym_QMARK_DOT] = ACTIONS(2373), - [anon_sym_POUND_LBRACK] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2373), - [anon_sym_is] = ACTIONS(2373), - [anon_sym_BANGis] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_BANGin] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_select] = ACTIONS(2373), - [anon_sym_lock] = ACTIONS(2373), - [anon_sym_rlock] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_sql] = ACTIONS(2373), - [sym_int_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_rune_literal] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [anon_sym_c_SQUOTE] = ACTIONS(2373), - [anon_sym_c_DQUOTE] = ACTIONS(2373), - [anon_sym_r_SQUOTE] = ACTIONS(2373), - [anon_sym_r_DQUOTE] = ACTIONS(2373), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2373), - [anon_sym_map_LBRACK] = ACTIONS(2373), - [anon_sym_chan] = ACTIONS(2373), - [anon_sym_thread] = ACTIONS(2373), - [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), }, [1525] = { [sym_line_comment] = STATE(1525), [sym_block_comment] = STATE(1525), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_CR] = ACTIONS(2627), - [anon_sym_CR_LF] = ACTIONS(2627), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_DOT] = ACTIONS(2627), - [anon_sym_as] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_COMMA] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_SLASH] = ACTIONS(2627), - [anon_sym_PERCENT] = ACTIONS(2627), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_GT] = ACTIONS(2627), - [anon_sym_EQ_EQ] = ACTIONS(2627), - [anon_sym_BANG_EQ] = ACTIONS(2627), - [anon_sym_LT_EQ] = ACTIONS(2627), - [anon_sym_GT_EQ] = ACTIONS(2627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_mut] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_go] = ACTIONS(2627), - [anon_sym_spawn] = ACTIONS(2627), - [anon_sym_json_DOTdecode] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_CARET] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_LT_DASH] = ACTIONS(2627), - [anon_sym_LT_LT] = ACTIONS(2627), - [anon_sym_GT_GT] = ACTIONS(2627), - [anon_sym_GT_GT_GT] = ACTIONS(2627), - [anon_sym_AMP_CARET] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_PIPE_PIPE] = ACTIONS(2627), - [anon_sym_or] = ACTIONS(2627), - [sym_none] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_nil] = ACTIONS(2627), - [anon_sym_QMARK_DOT] = ACTIONS(2627), - [anon_sym_POUND_LBRACK] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_DOLLARif] = ACTIONS(2627), - [anon_sym_is] = ACTIONS(2627), - [anon_sym_BANGis] = ACTIONS(2627), - [anon_sym_in] = ACTIONS(2627), - [anon_sym_BANGin] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_select] = ACTIONS(2627), - [anon_sym_lock] = ACTIONS(2627), - [anon_sym_rlock] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_sql] = ACTIONS(2627), - [sym_int_literal] = ACTIONS(2627), - [sym_float_literal] = ACTIONS(2627), - [sym_rune_literal] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_c_SQUOTE] = ACTIONS(2627), - [anon_sym_c_DQUOTE] = ACTIONS(2627), - [anon_sym_r_SQUOTE] = ACTIONS(2627), - [anon_sym_r_DQUOTE] = ACTIONS(2627), - [sym_pseudo_compile_time_identifier] = ACTIONS(2627), - [anon_sym_shared] = ACTIONS(2627), - [anon_sym_map_LBRACK] = ACTIONS(2627), - [anon_sym_chan] = ACTIONS(2627), - [anon_sym_thread] = ACTIONS(2627), - [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_c_SQUOTE] = ACTIONS(2829), + [anon_sym_c_DQUOTE] = ACTIONS(2829), + [anon_sym_r_SQUOTE] = ACTIONS(2829), + [anon_sym_r_DQUOTE] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), }, [1526] = { [sym_line_comment] = STATE(1526), [sym_block_comment] = STATE(1526), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LF] = ACTIONS(3324), - [anon_sym_CR] = ACTIONS(3324), - [anon_sym_CR_LF] = ACTIONS(3324), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_as] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_RPAREN] = ACTIONS(3324), - [anon_sym_fn] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_EQ_EQ] = ACTIONS(3324), - [anon_sym_BANG_EQ] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_mut] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_go] = ACTIONS(3324), - [anon_sym_spawn] = ACTIONS(3324), - [anon_sym_json_DOTdecode] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_LBRACK2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_LT_DASH] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3324), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3324), - [anon_sym_AMP_CARET] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_PIPE_PIPE] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(3324), - [sym_none] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_nil] = ACTIONS(3324), - [anon_sym_QMARK_DOT] = ACTIONS(3324), - [anon_sym_POUND_LBRACK] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3324), - [anon_sym_is] = ACTIONS(3324), - [anon_sym_BANGis] = ACTIONS(3324), - [anon_sym_in] = ACTIONS(3324), - [anon_sym_BANGin] = ACTIONS(3324), - [anon_sym_match] = ACTIONS(3324), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3324), - [anon_sym_rlock] = ACTIONS(3324), - [anon_sym_unsafe] = ACTIONS(3324), - [anon_sym_sql] = ACTIONS(3324), - [sym_int_literal] = ACTIONS(3324), - [sym_float_literal] = ACTIONS(3324), - [sym_rune_literal] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_c_SQUOTE] = ACTIONS(3324), - [anon_sym_c_DQUOTE] = ACTIONS(3324), - [anon_sym_r_SQUOTE] = ACTIONS(3324), - [anon_sym_r_DQUOTE] = ACTIONS(3324), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(3324), - [anon_sym_map_LBRACK] = ACTIONS(3324), - [anon_sym_chan] = ACTIONS(3324), - [anon_sym_thread] = ACTIONS(3324), - [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), }, [1527] = { [sym_line_comment] = STATE(1527), [sym_block_comment] = STATE(1527), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LF] = ACTIONS(2637), - [anon_sym_CR] = ACTIONS(2637), - [anon_sym_CR_LF] = ACTIONS(2637), + [sym_identifier] = ACTIONS(3045), + [anon_sym_LF] = ACTIONS(3045), + [anon_sym_CR] = ACTIONS(3045), + [anon_sym_CR_LF] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_RPAREN] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_AMP_CARET] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2637), - [anon_sym_POUND_LBRACK] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_rune_literal] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_c_SQUOTE] = ACTIONS(2637), - [anon_sym_c_DQUOTE] = ACTIONS(2637), - [anon_sym_r_SQUOTE] = ACTIONS(2637), - [anon_sym_r_DQUOTE] = ACTIONS(2637), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2637), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, [1528] = { [sym_line_comment] = STATE(1528), [sym_block_comment] = STATE(1528), - [sym_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_CR] = ACTIONS(2387), - [anon_sym_CR_LF] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2387), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2387), - [anon_sym_POUND_LBRACK] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_rune_literal] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [anon_sym_c_SQUOTE] = ACTIONS(2387), - [anon_sym_c_DQUOTE] = ACTIONS(2387), - [anon_sym_r_SQUOTE] = ACTIONS(2387), - [anon_sym_r_DQUOTE] = ACTIONS(2387), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2387), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_RPAREN] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), }, [1529] = { [sym_line_comment] = STATE(1529), [sym_block_comment] = STATE(1529), - [sym_identifier] = ACTIONS(2881), - [anon_sym_LF] = ACTIONS(2881), - [anon_sym_CR] = ACTIONS(2881), - [anon_sym_CR_LF] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_as] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_fn] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2881), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_GT] = ACTIONS(2881), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_mut] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_QMARK] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_go] = ACTIONS(2881), - [anon_sym_spawn] = ACTIONS(2881), - [anon_sym_json_DOTdecode] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_LBRACK2] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_GT_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_CARET] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_or] = ACTIONS(2881), - [sym_none] = ACTIONS(2881), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [sym_nil] = ACTIONS(2881), - [anon_sym_QMARK_DOT] = ACTIONS(2881), - [anon_sym_POUND_LBRACK] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_DOLLARif] = ACTIONS(2881), - [anon_sym_is] = ACTIONS(2881), - [anon_sym_BANGis] = ACTIONS(2881), - [anon_sym_in] = ACTIONS(2881), - [anon_sym_BANGin] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2881), - [anon_sym_select] = ACTIONS(2881), - [anon_sym_lock] = ACTIONS(2881), - [anon_sym_rlock] = ACTIONS(2881), - [anon_sym_unsafe] = ACTIONS(2881), - [anon_sym_sql] = ACTIONS(2881), - [sym_int_literal] = ACTIONS(2881), - [sym_float_literal] = ACTIONS(2881), - [sym_rune_literal] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_c_SQUOTE] = ACTIONS(2881), - [anon_sym_c_DQUOTE] = ACTIONS(2881), - [anon_sym_r_SQUOTE] = ACTIONS(2881), - [anon_sym_r_DQUOTE] = ACTIONS(2881), - [sym_pseudo_compile_time_identifier] = ACTIONS(2881), - [anon_sym_shared] = ACTIONS(2881), - [anon_sym_map_LBRACK] = ACTIONS(2881), - [anon_sym_chan] = ACTIONS(2881), - [anon_sym_thread] = ACTIONS(2881), - [anon_sym_atomic] = ACTIONS(2881), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), }, [1530] = { [sym_line_comment] = STATE(1530), [sym_block_comment] = STATE(1530), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LF] = ACTIONS(2925), - [anon_sym_CR] = ACTIONS(2925), - [anon_sym_CR_LF] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LF] = ACTIONS(2823), + [anon_sym_CR] = ACTIONS(2823), + [anon_sym_CR_LF] = ACTIONS(2823), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_as] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_mut] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2925), - [anon_sym_spawn] = ACTIONS(2925), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2925), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_nil] = ACTIONS(2925), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_DOLLARif] = ACTIONS(2925), - [anon_sym_is] = ACTIONS(2925), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_select] = ACTIONS(2925), - [anon_sym_lock] = ACTIONS(2925), - [anon_sym_rlock] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_sql] = ACTIONS(2925), - [sym_int_literal] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_c_SQUOTE] = ACTIONS(2925), - [anon_sym_c_DQUOTE] = ACTIONS(2925), - [anon_sym_r_SQUOTE] = ACTIONS(2925), - [anon_sym_r_DQUOTE] = ACTIONS(2925), - [sym_pseudo_compile_time_identifier] = ACTIONS(2925), - [anon_sym_shared] = ACTIONS(2925), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2925), - [anon_sym_thread] = ACTIONS(2925), - [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_as] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_COMMA] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_RPAREN] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2823), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_mut] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_QMARK] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_go] = ACTIONS(2823), + [anon_sym_spawn] = ACTIONS(2823), + [anon_sym_json_DOTdecode] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2823), + [anon_sym_LBRACK2] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_CARET] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2823), + [anon_sym_LT_LT] = ACTIONS(2823), + [anon_sym_GT_GT] = ACTIONS(2823), + [anon_sym_GT_GT_GT] = ACTIONS(2823), + [anon_sym_AMP_CARET] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_or] = ACTIONS(2823), + [sym_none] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_nil] = ACTIONS(2823), + [anon_sym_QMARK_DOT] = ACTIONS(2823), + [anon_sym_POUND_LBRACK] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_DOLLARif] = ACTIONS(2823), + [anon_sym_is] = ACTIONS(2823), + [anon_sym_BANGis] = ACTIONS(2823), + [anon_sym_in] = ACTIONS(2823), + [anon_sym_BANGin] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2823), + [anon_sym_rlock] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_sql] = ACTIONS(2823), + [sym_int_literal] = ACTIONS(2823), + [sym_float_literal] = ACTIONS(2823), + [sym_rune_literal] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [anon_sym_c_SQUOTE] = ACTIONS(2823), + [anon_sym_c_DQUOTE] = ACTIONS(2823), + [anon_sym_r_SQUOTE] = ACTIONS(2823), + [anon_sym_r_DQUOTE] = ACTIONS(2823), + [sym_pseudo_compile_time_identifier] = ACTIONS(2823), + [anon_sym_shared] = ACTIONS(2823), + [anon_sym_map_LBRACK] = ACTIONS(2823), + [anon_sym_chan] = ACTIONS(2823), + [anon_sym_thread] = ACTIONS(2823), + [anon_sym_atomic] = ACTIONS(2823), }, [1531] = { [sym_line_comment] = STATE(1531), [sym_block_comment] = STATE(1531), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [anon_sym_c_SQUOTE] = ACTIONS(2947), - [anon_sym_c_DQUOTE] = ACTIONS(2947), - [anon_sym_r_SQUOTE] = ACTIONS(2947), - [anon_sym_r_DQUOTE] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_RPAREN] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + }, + [1532] = { + [sym_line_comment] = STATE(1532), + [sym_block_comment] = STATE(1532), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + }, + [1533] = { + [sym_line_comment] = STATE(1533), + [sym_block_comment] = STATE(1533), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_EQ] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_AMP_CARET_EQ] = ACTIONS(861), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1534] = { + [sym_line_comment] = STATE(1534), + [sym_block_comment] = STATE(1534), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), }, - [1532] = { - [sym_line_comment] = STATE(1532), - [sym_block_comment] = STATE(1532), + [1535] = { + [sym_line_comment] = STATE(1535), + [sym_block_comment] = STATE(1535), [sym_identifier] = ACTIONS(3270), [anon_sym_LF] = ACTIONS(3270), [anon_sym_CR] = ACTIONS(3270), @@ -191019,1911 +191518,1650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3270), [anon_sym_atomic] = ACTIONS(3270), }, - [1533] = { - [sym_line_comment] = STATE(1533), - [sym_block_comment] = STATE(1533), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_c_SQUOTE] = ACTIONS(2989), - [anon_sym_c_DQUOTE] = ACTIONS(2989), - [anon_sym_r_SQUOTE] = ACTIONS(2989), - [anon_sym_r_DQUOTE] = ACTIONS(2989), - [sym_pseudo_compile_time_identifier] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - }, - [1534] = { - [sym_line_comment] = STATE(1534), - [sym_block_comment] = STATE(1534), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LF] = ACTIONS(3294), - [anon_sym_CR] = ACTIONS(3294), - [anon_sym_CR_LF] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COMMA] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_RPAREN] = ACTIONS(3294), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_LT_EQ] = ACTIONS(3294), - [anon_sym_GT_EQ] = ACTIONS(3294), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_CARET] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3294), - [anon_sym_LT_LT] = ACTIONS(3294), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3294), - [anon_sym_AMP_CARET] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3294), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3294), - [anon_sym_POUND_LBRACK] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3294), - [sym_rune_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_c_SQUOTE] = ACTIONS(3294), - [anon_sym_c_DQUOTE] = ACTIONS(3294), - [anon_sym_r_SQUOTE] = ACTIONS(3294), - [anon_sym_r_DQUOTE] = ACTIONS(3294), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3294), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - }, - [1535] = { - [sym_line_comment] = STATE(1535), - [sym_block_comment] = STATE(1535), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_or] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3080), - [anon_sym_POUND_LBRACK] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - }, [1536] = { [sym_line_comment] = STATE(1536), [sym_block_comment] = STATE(1536), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_c_SQUOTE] = ACTIONS(3318), + [anon_sym_c_DQUOTE] = ACTIONS(3318), + [anon_sym_r_SQUOTE] = ACTIONS(3318), + [anon_sym_r_DQUOTE] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), }, [1537] = { [sym_line_comment] = STATE(1537), [sym_block_comment] = STATE(1537), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [sym_identifier] = ACTIONS(4178), + [anon_sym_LF] = ACTIONS(4181), + [anon_sym_CR] = ACTIONS(4181), + [anon_sym_CR_LF] = ACTIONS(4181), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_DOT] = ACTIONS(4220), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3045), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3045), + [anon_sym_AMP_CARET] = ACTIONS(3045), + [anon_sym_AMP_AMP] = ACTIONS(3045), + [anon_sym_PIPE_PIPE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3045), + [anon_sym_c_SQUOTE] = ACTIONS(3045), + [anon_sym_c_DQUOTE] = ACTIONS(3045), + [anon_sym_r_SQUOTE] = ACTIONS(3045), + [anon_sym_r_DQUOTE] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, [1538] = { [sym_line_comment] = STATE(1538), [sym_block_comment] = STATE(1538), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LF] = ACTIONS(2437), - [anon_sym_CR] = ACTIONS(2437), - [anon_sym_CR_LF] = ACTIONS(2437), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_RBRACE] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), }, [1539] = { [sym_line_comment] = STATE(1539), [sym_block_comment] = STATE(1539), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_COMMA] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_RPAREN] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3254), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3254), - [anon_sym_AMP_CARET] = ACTIONS(3254), - [anon_sym_AMP_AMP] = ACTIONS(3254), - [anon_sym_PIPE_PIPE] = ACTIONS(3254), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3254), - [anon_sym_POUND_LBRACK] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3254), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), }, [1540] = { [sym_line_comment] = STATE(1540), [sym_block_comment] = STATE(1540), - [sym_identifier] = ACTIONS(3031), - [anon_sym_LF] = ACTIONS(3031), - [anon_sym_CR] = ACTIONS(3031), - [anon_sym_CR_LF] = ACTIONS(3031), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE] = ACTIONS(3031), - [anon_sym_c_SQUOTE] = ACTIONS(3031), - [anon_sym_c_DQUOTE] = ACTIONS(3031), - [anon_sym_r_SQUOTE] = ACTIONS(3031), - [anon_sym_r_DQUOTE] = ACTIONS(3031), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [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), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1541] = { [sym_line_comment] = STATE(1541), [sym_block_comment] = STATE(1541), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_as] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2885), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2885), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_RPAREN] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), }, [1542] = { [sym_line_comment] = STATE(1542), [sym_block_comment] = STATE(1542), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_RPAREN] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_QMARK_DOT] = ACTIONS(3286), - [anon_sym_POUND_LBRACK] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_is] = ACTIONS(3286), - [anon_sym_BANGis] = ACTIONS(3286), - [anon_sym_in] = ACTIONS(3286), - [anon_sym_BANGin] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), }, [1543] = { [sym_line_comment] = STATE(1543), [sym_block_comment] = STATE(1543), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_CR] = ACTIONS(3240), + [anon_sym_CR_LF] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3240), + [anon_sym_c_DQUOTE] = ACTIONS(3240), + [anon_sym_r_SQUOTE] = ACTIONS(3240), + [anon_sym_r_DQUOTE] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), }, [1544] = { [sym_line_comment] = STATE(1544), [sym_block_comment] = STATE(1544), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_c_SQUOTE] = ACTIONS(2997), - [anon_sym_c_DQUOTE] = ACTIONS(2997), - [anon_sym_r_SQUOTE] = ACTIONS(2997), - [anon_sym_r_DQUOTE] = ACTIONS(2997), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_as] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_PERCENT] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_BANG_EQ] = ACTIONS(2841), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_mut] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_QMARK] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_go] = ACTIONS(2841), + [anon_sym_spawn] = ACTIONS(2841), + [anon_sym_json_DOTdecode] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_LT_DASH] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_GT_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_CARET] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_or] = ACTIONS(2841), + [sym_none] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_nil] = ACTIONS(2841), + [anon_sym_QMARK_DOT] = ACTIONS(2841), + [anon_sym_POUND_LBRACK] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_DOLLARif] = ACTIONS(2841), + [anon_sym_is] = ACTIONS(2841), + [anon_sym_BANGis] = ACTIONS(2841), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_BANGin] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_select] = ACTIONS(2841), + [anon_sym_lock] = ACTIONS(2841), + [anon_sym_rlock] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_sql] = ACTIONS(2841), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), + [sym_rune_literal] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_c_SQUOTE] = ACTIONS(2841), + [anon_sym_c_DQUOTE] = ACTIONS(2841), + [anon_sym_r_SQUOTE] = ACTIONS(2841), + [anon_sym_r_DQUOTE] = ACTIONS(2841), + [sym_pseudo_compile_time_identifier] = ACTIONS(2841), + [anon_sym_shared] = ACTIONS(2841), + [anon_sym_map_LBRACK] = ACTIONS(2841), + [anon_sym_chan] = ACTIONS(2841), + [anon_sym_thread] = ACTIONS(2841), + [anon_sym_atomic] = ACTIONS(2841), }, [1545] = { [sym_line_comment] = STATE(1545), [sym_block_comment] = STATE(1545), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_RPAREN] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_EQ_EQ] = ACTIONS(3324), + [anon_sym_BANG_EQ] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3324), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3324), + [anon_sym_AMP_CARET] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_QMARK_DOT] = ACTIONS(3324), + [anon_sym_POUND_LBRACK] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_is] = ACTIONS(3324), + [anon_sym_BANGis] = ACTIONS(3324), + [anon_sym_in] = ACTIONS(3324), + [anon_sym_BANGin] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), }, [1546] = { [sym_line_comment] = STATE(1546), [sym_block_comment] = STATE(1546), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LF] = ACTIONS(3084), - [anon_sym_CR] = ACTIONS(3084), - [anon_sym_CR_LF] = ACTIONS(3084), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_fn] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_mut] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_go] = ACTIONS(3084), - [anon_sym_spawn] = ACTIONS(3084), - [anon_sym_json_DOTdecode] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_LT_DASH] = ACTIONS(3084), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3084), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_true] = ACTIONS(3084), - [sym_false] = ACTIONS(3084), - [sym_nil] = ACTIONS(3084), - [anon_sym_QMARK_DOT] = ACTIONS(3084), - [anon_sym_POUND_LBRACK] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_DOLLARif] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3084), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3084), - [anon_sym_rlock] = ACTIONS(3084), - [anon_sym_unsafe] = ACTIONS(3084), - [anon_sym_sql] = ACTIONS(3084), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(3084), - [sym_rune_literal] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [anon_sym_c_SQUOTE] = ACTIONS(3084), - [anon_sym_c_DQUOTE] = ACTIONS(3084), - [anon_sym_r_SQUOTE] = ACTIONS(3084), - [anon_sym_r_DQUOTE] = ACTIONS(3084), - [sym_pseudo_compile_time_identifier] = ACTIONS(3084), - [anon_sym_shared] = ACTIONS(3084), - [anon_sym_map_LBRACK] = ACTIONS(3084), - [anon_sym_chan] = ACTIONS(3084), - [anon_sym_thread] = ACTIONS(3084), - [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), }, [1547] = { [sym_line_comment] = STATE(1547), [sym_block_comment] = STATE(1547), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_DASH] = ACTIONS(853), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_STAR_EQ] = ACTIONS(853), - [anon_sym_SLASH_EQ] = ACTIONS(853), - [anon_sym_PERCENT_EQ] = ACTIONS(853), - [anon_sym_LT_LT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(853), - [anon_sym_AMP_EQ] = ACTIONS(853), - [anon_sym_AMP_CARET_EQ] = ACTIONS(853), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_PIPE_EQ] = ACTIONS(853), - [anon_sym_CARET_EQ] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_RPAREN] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), }, [1548] = { [sym_line_comment] = STATE(1548), [sym_block_comment] = STATE(1548), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LF] = ACTIONS(3274), - [anon_sym_CR] = ACTIONS(3274), - [anon_sym_CR_LF] = ACTIONS(3274), + [sym_identifier] = ACTIONS(2697), + [anon_sym_LF] = ACTIONS(2697), + [anon_sym_CR] = ACTIONS(2697), + [anon_sym_CR_LF] = ACTIONS(2697), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_PERCENT] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_GT] = ACTIONS(3274), - [anon_sym_EQ_EQ] = ACTIONS(3274), - [anon_sym_BANG_EQ] = ACTIONS(3274), - [anon_sym_LT_EQ] = ACTIONS(3274), - [anon_sym_GT_EQ] = ACTIONS(3274), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3274), - [anon_sym_PIPE] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_CARET] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3274), - [anon_sym_LT_LT] = ACTIONS(3274), - [anon_sym_GT_GT] = ACTIONS(3274), - [anon_sym_GT_GT_GT] = ACTIONS(3274), - [anon_sym_AMP_CARET] = ACTIONS(3274), - [anon_sym_AMP_AMP] = ACTIONS(3274), - [anon_sym_PIPE_PIPE] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_QMARK_DOT] = ACTIONS(3274), - [anon_sym_POUND_LBRACK] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_is] = ACTIONS(3274), - [anon_sym_BANGis] = ACTIONS(3274), - [anon_sym_in] = ACTIONS(3274), - [anon_sym_BANGin] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3274), - [sym_rune_literal] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_c_SQUOTE] = ACTIONS(3274), - [anon_sym_c_DQUOTE] = ACTIONS(3274), - [anon_sym_r_SQUOTE] = ACTIONS(3274), - [anon_sym_r_DQUOTE] = ACTIONS(3274), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [anon_sym_map_LBRACK] = ACTIONS(3274), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2697), + [anon_sym_BANG_EQ] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2697), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2697), + [anon_sym_AMP_CARET] = ACTIONS(2697), + [anon_sym_AMP_AMP] = ACTIONS(2697), + [anon_sym_PIPE_PIPE] = ACTIONS(2697), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2697), + [anon_sym_POUND_LBRACK] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), + [sym_rune_literal] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_c_SQUOTE] = ACTIONS(2697), + [anon_sym_c_DQUOTE] = ACTIONS(2697), + [anon_sym_r_SQUOTE] = ACTIONS(2697), + [anon_sym_r_DQUOTE] = ACTIONS(2697), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2697), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), }, [1549] = { [sym_line_comment] = STATE(1549), [sym_block_comment] = STATE(1549), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), }, [1550] = { [sym_line_comment] = STATE(1550), [sym_block_comment] = STATE(1550), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_COMMA] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3258), - [anon_sym_BANG_EQ] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3258), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3258), - [anon_sym_AMP_CARET] = ACTIONS(3258), - [anon_sym_AMP_AMP] = ACTIONS(3258), - [anon_sym_PIPE_PIPE] = ACTIONS(3258), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3258), - [anon_sym_POUND_LBRACK] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3258), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), }, [1551] = { [sym_line_comment] = STATE(1551), [sym_block_comment] = STATE(1551), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2065), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_COMMA] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_SLASH] = ACTIONS(2065), - [anon_sym_PERCENT] = ACTIONS(2063), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_GT] = ACTIONS(2065), - [anon_sym_EQ_EQ] = ACTIONS(2063), - [anon_sym_BANG_EQ] = ACTIONS(2063), - [anon_sym_LT_EQ] = ACTIONS(2063), - [anon_sym_GT_EQ] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_COLON] = ACTIONS(2063), - [anon_sym_PLUS_PLUS] = ACTIONS(2063), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2065), - [anon_sym_spawn] = ACTIONS(2065), - [anon_sym_json_DOTdecode] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2063), - [anon_sym_CARET] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_LT_DASH] = ACTIONS(2063), - [anon_sym_LT_LT] = ACTIONS(2063), - [anon_sym_GT_GT] = ACTIONS(2065), - [anon_sym_GT_GT_GT] = ACTIONS(2063), - [anon_sym_AMP_CARET] = ACTIONS(2063), - [anon_sym_AMP_AMP] = ACTIONS(2063), - [anon_sym_PIPE_PIPE] = ACTIONS(2063), - [anon_sym_or] = ACTIONS(2065), - [sym_none] = ACTIONS(2065), - [sym_true] = ACTIONS(2065), - [sym_false] = ACTIONS(2065), - [sym_nil] = ACTIONS(2065), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_DOLLARif] = ACTIONS(2065), - [anon_sym_is] = ACTIONS(2065), - [anon_sym_BANGis] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_BANGin] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_select] = ACTIONS(2065), - [anon_sym_lock] = ACTIONS(2065), - [anon_sym_rlock] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_sql] = ACTIONS(2065), - [sym_int_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2063), - [sym_rune_literal] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2063), - [anon_sym_c_SQUOTE] = ACTIONS(2063), - [anon_sym_c_DQUOTE] = ACTIONS(2063), - [anon_sym_r_SQUOTE] = ACTIONS(2063), - [anon_sym_r_DQUOTE] = ACTIONS(2063), - [sym_pseudo_compile_time_identifier] = ACTIONS(2065), - [anon_sym_shared] = ACTIONS(2065), - [anon_sym_map_LBRACK] = ACTIONS(2063), - [anon_sym_chan] = ACTIONS(2065), - [anon_sym_thread] = ACTIONS(2065), - [anon_sym_atomic] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), }, [1552] = { [sym_line_comment] = STATE(1552), [sym_block_comment] = STATE(1552), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2061), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2061), - [anon_sym_BANG_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(2061), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2061), - [anon_sym_AMP_CARET] = ACTIONS(2061), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(2051), + [anon_sym_GT_GT] = ACTIONS(2053), + [anon_sym_GT_GT_GT] = ACTIONS(2051), + [anon_sym_AMP_CARET] = ACTIONS(2051), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1553] = { [sym_line_comment] = STATE(1553), [sym_block_comment] = STATE(1553), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2057), + [anon_sym_spawn] = ACTIONS(2057), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2057), + [sym_none] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_nil] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_DOLLARif] = ACTIONS(2057), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_select] = ACTIONS(2057), + [anon_sym_lock] = ACTIONS(2057), + [anon_sym_rlock] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_sql] = ACTIONS(2057), + [sym_int_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2057), + [anon_sym_shared] = ACTIONS(2057), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2057), + [anon_sym_thread] = ACTIONS(2057), + [anon_sym_atomic] = ACTIONS(2057), }, [1554] = { [sym_line_comment] = STATE(1554), [sym_block_comment] = STATE(1554), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_as] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_as] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_EQ] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4243), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_STAR_EQ] = ACTIONS(853), - [anon_sym_SLASH_EQ] = ACTIONS(853), - [anon_sym_PERCENT_EQ] = ACTIONS(853), - [anon_sym_LT_LT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_EQ] = ACTIONS(853), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(853), - [anon_sym_AMP_EQ] = ACTIONS(853), - [anon_sym_AMP_CARET_EQ] = ACTIONS(853), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_PIPE_EQ] = ACTIONS(853), - [anon_sym_CARET_EQ] = ACTIONS(853), - [anon_sym_COLON_EQ] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_AMP_CARET_EQ] = ACTIONS(861), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -192932,93 +193170,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1555] = { [sym_line_comment] = STATE(1555), [sym_block_comment] = STATE(1555), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2049), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2061), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_COMMA] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_GT] = ACTIONS(2049), - [anon_sym_EQ_EQ] = ACTIONS(2047), - [anon_sym_BANG_EQ] = ACTIONS(2047), - [anon_sym_LT_EQ] = ACTIONS(2047), - [anon_sym_GT_EQ] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_COLON] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2049), - [anon_sym_spawn] = ACTIONS(2049), - [anon_sym_json_DOTdecode] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_LT_DASH] = ACTIONS(2047), - [anon_sym_LT_LT] = ACTIONS(2047), - [anon_sym_GT_GT] = ACTIONS(2049), - [anon_sym_GT_GT_GT] = ACTIONS(2047), - [anon_sym_AMP_CARET] = ACTIONS(2047), - [anon_sym_AMP_AMP] = ACTIONS(2047), - [anon_sym_PIPE_PIPE] = ACTIONS(2047), - [anon_sym_or] = ACTIONS(2049), - [sym_none] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_nil] = ACTIONS(2049), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_DOLLARif] = ACTIONS(2049), - [anon_sym_is] = ACTIONS(2049), - [anon_sym_BANGis] = ACTIONS(2047), - [anon_sym_in] = ACTIONS(2049), - [anon_sym_BANGin] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_select] = ACTIONS(2049), - [anon_sym_lock] = ACTIONS(2049), - [anon_sym_rlock] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_sql] = ACTIONS(2049), - [sym_int_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2047), - [sym_rune_literal] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_c_SQUOTE] = ACTIONS(2047), - [anon_sym_c_DQUOTE] = ACTIONS(2047), - [anon_sym_r_SQUOTE] = ACTIONS(2047), - [anon_sym_r_DQUOTE] = ACTIONS(2047), - [sym_pseudo_compile_time_identifier] = ACTIONS(2049), - [anon_sym_shared] = ACTIONS(2049), - [anon_sym_map_LBRACK] = ACTIONS(2047), - [anon_sym_chan] = ACTIONS(2049), - [anon_sym_thread] = ACTIONS(2049), - [anon_sym_atomic] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_mut] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2061), + [anon_sym_spawn] = ACTIONS(2061), + [anon_sym_json_DOTdecode] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_AMP_CARET] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_or] = ACTIONS(2061), + [sym_none] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_nil] = ACTIONS(2061), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_DOLLARif] = ACTIONS(2061), + [anon_sym_is] = ACTIONS(2061), + [anon_sym_BANGis] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_BANGin] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_select] = ACTIONS(2061), + [anon_sym_lock] = ACTIONS(2061), + [anon_sym_rlock] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_sql] = ACTIONS(2061), + [sym_int_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2059), + [sym_rune_literal] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [anon_sym_c_SQUOTE] = ACTIONS(2059), + [anon_sym_c_DQUOTE] = ACTIONS(2059), + [anon_sym_r_SQUOTE] = ACTIONS(2059), + [anon_sym_r_DQUOTE] = ACTIONS(2059), + [sym_pseudo_compile_time_identifier] = ACTIONS(2061), + [anon_sym_shared] = ACTIONS(2061), + [anon_sym_map_LBRACK] = ACTIONS(2059), + [anon_sym_chan] = ACTIONS(2061), + [anon_sym_thread] = ACTIONS(2061), + [anon_sym_atomic] = ACTIONS(2061), }, [1556] = { [sym_line_comment] = STATE(1556), [sym_block_comment] = STATE(1556), - [sym_else_branch] = STATE(1628), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_format_specifier] = STATE(4682), + [sym_identifier] = ACTIONS(4243), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(4243), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(4243), + [anon_sym_spawn] = ACTIONS(4243), + [anon_sym_json_DOTdecode] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(4247), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(4243), + [sym_true] = ACTIONS(4243), + [sym_false] = ACTIONS(4243), + [sym_nil] = ACTIONS(4243), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4243), + [anon_sym_DOLLARif] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [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(4247), + [sym_rune_literal] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_c_SQUOTE] = ACTIONS(4247), + [anon_sym_c_DQUOTE] = ACTIONS(4247), + [anon_sym_r_SQUOTE] = ACTIONS(4247), + [anon_sym_r_DQUOTE] = ACTIONS(4247), + [sym_pseudo_compile_time_identifier] = ACTIONS(4243), + [anon_sym_shared] = ACTIONS(4243), + [anon_sym_map_LBRACK] = ACTIONS(4247), + [anon_sym_chan] = ACTIONS(4243), + [anon_sym_thread] = ACTIONS(4243), + [anon_sym_atomic] = ACTIONS(4243), + }, + [1557] = { + [sym_line_comment] = STATE(1557), + [sym_block_comment] = STATE(1557), + [sym_else_branch] = STATE(1624), [sym_identifier] = ACTIONS(2083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -193072,7 +193395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2081), [anon_sym_POUND_LBRACK] = ACTIONS(2081), [anon_sym_if] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(4245), + [anon_sym_else] = ACTIONS(4281), [anon_sym_DOLLARif] = ACTIONS(2083), [anon_sym_is] = ACTIONS(2083), [anon_sym_BANGis] = ACTIONS(2081), @@ -193100,10 +193423,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2083), [anon_sym_atomic] = ACTIONS(2083), }, - [1557] = { - [sym_line_comment] = STATE(1557), - [sym_block_comment] = STATE(1557), - [sym_else_branch] = STATE(1629), + [1558] = { + [sym_line_comment] = STATE(1558), + [sym_block_comment] = STATE(1558), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_format_specifier] = STATE(4590), + [sym_identifier] = ACTIONS(4243), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(4243), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(4243), + [anon_sym_spawn] = ACTIONS(4243), + [anon_sym_json_DOTdecode] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(4247), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(4243), + [sym_true] = ACTIONS(4243), + [sym_false] = ACTIONS(4243), + [sym_nil] = ACTIONS(4243), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4243), + [anon_sym_DOLLARif] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [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(4247), + [sym_rune_literal] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_c_SQUOTE] = ACTIONS(4247), + [anon_sym_c_DQUOTE] = ACTIONS(4247), + [anon_sym_r_SQUOTE] = ACTIONS(4247), + [anon_sym_r_DQUOTE] = ACTIONS(4247), + [sym_pseudo_compile_time_identifier] = ACTIONS(4243), + [anon_sym_shared] = ACTIONS(4243), + [anon_sym_map_LBRACK] = ACTIONS(4247), + [anon_sym_chan] = ACTIONS(4243), + [anon_sym_thread] = ACTIONS(4243), + [anon_sym_atomic] = ACTIONS(4243), + }, + [1559] = { + [sym_line_comment] = STATE(1559), + [sym_block_comment] = STATE(1559), + [sym_else_branch] = STATE(1627), [sym_identifier] = ACTIONS(2089), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -193157,7 +193565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2087), [anon_sym_POUND_LBRACK] = ACTIONS(2087), [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(4245), + [anon_sym_else] = ACTIONS(4281), [anon_sym_DOLLARif] = ACTIONS(2089), [anon_sym_is] = ACTIONS(2089), [anon_sym_BANGis] = ACTIONS(2087), @@ -193185,1607 +193593,1101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2089), [anon_sym_atomic] = ACTIONS(2089), }, - [1558] = { - [sym_line_comment] = STATE(1558), - [sym_block_comment] = STATE(1558), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_format_specifier] = STATE(4666), - [sym_identifier] = ACTIONS(4247), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(4247), - [anon_sym_mut] = ACTIONS(4247), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(4247), - [anon_sym_spawn] = ACTIONS(4247), - [anon_sym_json_DOTdecode] = ACTIONS(4251), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(4251), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(4247), - [sym_true] = ACTIONS(4247), - [sym_false] = ACTIONS(4247), - [sym_nil] = ACTIONS(4247), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(4247), - [anon_sym_DOLLARif] = ACTIONS(4247), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [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(4251), - [sym_rune_literal] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4251), - [anon_sym_DQUOTE] = ACTIONS(4251), - [anon_sym_c_SQUOTE] = ACTIONS(4251), - [anon_sym_c_DQUOTE] = ACTIONS(4251), - [anon_sym_r_SQUOTE] = ACTIONS(4251), - [anon_sym_r_DQUOTE] = ACTIONS(4251), - [sym_pseudo_compile_time_identifier] = ACTIONS(4247), - [anon_sym_shared] = ACTIONS(4247), - [anon_sym_map_LBRACK] = ACTIONS(4251), - [anon_sym_chan] = ACTIONS(4247), - [anon_sym_thread] = ACTIONS(4247), - [anon_sym_atomic] = ACTIONS(4247), - }, - [1559] = { - [sym_line_comment] = STATE(1559), - [sym_block_comment] = STATE(1559), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_format_specifier] = STATE(4588), - [sym_identifier] = ACTIONS(4247), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(4247), - [anon_sym_mut] = ACTIONS(4247), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(4247), - [anon_sym_spawn] = ACTIONS(4247), - [anon_sym_json_DOTdecode] = ACTIONS(4251), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(4251), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(4247), - [sym_true] = ACTIONS(4247), - [sym_false] = ACTIONS(4247), - [sym_nil] = ACTIONS(4247), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(4247), - [anon_sym_DOLLARif] = ACTIONS(4247), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [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(4251), - [sym_rune_literal] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4251), - [anon_sym_DQUOTE] = ACTIONS(4251), - [anon_sym_c_SQUOTE] = ACTIONS(4251), - [anon_sym_c_DQUOTE] = ACTIONS(4251), - [anon_sym_r_SQUOTE] = ACTIONS(4251), - [anon_sym_r_DQUOTE] = ACTIONS(4251), - [sym_pseudo_compile_time_identifier] = ACTIONS(4247), - [anon_sym_shared] = ACTIONS(4247), - [anon_sym_map_LBRACK] = ACTIONS(4251), - [anon_sym_chan] = ACTIONS(4247), - [anon_sym_thread] = ACTIONS(4247), - [anon_sym_atomic] = ACTIONS(4247), - }, [1560] = { [sym_line_comment] = STATE(1560), - [sym_block_comment] = STATE(1560), - [sym_identifier] = ACTIONS(3001), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(2999), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(2999), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(2999), - [anon_sym_AMP_CARET] = ACTIONS(2999), - [anon_sym_AMP_AMP] = ACTIONS(2999), - [anon_sym_PIPE_PIPE] = ACTIONS(2999), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(2999), - [anon_sym_POUND_LBRACK] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(2999), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(2999), - [sym_rune_literal] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [anon_sym_c_SQUOTE] = ACTIONS(2999), - [anon_sym_c_DQUOTE] = ACTIONS(2999), - [anon_sym_r_SQUOTE] = ACTIONS(2999), - [anon_sym_r_DQUOTE] = ACTIONS(2999), - [sym_pseudo_compile_time_identifier] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(2999), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - }, - [1561] = { - [sym_line_comment] = STATE(1561), - [sym_block_comment] = STATE(1561), - [sym_identifier] = ACTIONS(2973), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2971), - [anon_sym_BANG_EQ] = ACTIONS(2971), - [anon_sym_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_EQ] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_CARET] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2971), - [anon_sym_POUND_LBRACK] = ACTIONS(2971), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2971), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_c_SQUOTE] = ACTIONS(2971), - [anon_sym_c_DQUOTE] = ACTIONS(2971), - [anon_sym_r_SQUOTE] = ACTIONS(2971), - [anon_sym_r_DQUOTE] = ACTIONS(2971), - [sym_pseudo_compile_time_identifier] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - }, - [1562] = { - [sym_line_comment] = STATE(1562), - [sym_block_comment] = STATE(1562), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2059), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2057), - [sym_rune_literal] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_c_SQUOTE] = ACTIONS(2057), - [anon_sym_c_DQUOTE] = ACTIONS(2057), - [anon_sym_r_SQUOTE] = ACTIONS(2057), - [anon_sym_r_DQUOTE] = ACTIONS(2057), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2057), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - }, - [1563] = { - [sym_line_comment] = STATE(1563), - [sym_block_comment] = STATE(1563), - [sym_identifier] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_as] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_PERCENT] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_EQ_EQ] = ACTIONS(2839), - [anon_sym_BANG_EQ] = ACTIONS(2839), - [anon_sym_LT_EQ] = ACTIONS(2839), - [anon_sym_GT_EQ] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_RBRACK] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_mut] = ACTIONS(2841), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_go] = ACTIONS(2841), - [anon_sym_spawn] = ACTIONS(2841), - [anon_sym_json_DOTdecode] = ACTIONS(2839), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK2] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_CARET] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_LT_DASH] = ACTIONS(2839), - [anon_sym_LT_LT] = ACTIONS(2839), - [anon_sym_GT_GT] = ACTIONS(2841), - [anon_sym_GT_GT_GT] = ACTIONS(2839), - [anon_sym_AMP_CARET] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_PIPE_PIPE] = ACTIONS(2839), - [anon_sym_or] = ACTIONS(2841), - [sym_none] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_nil] = ACTIONS(2841), - [anon_sym_QMARK_DOT] = ACTIONS(2839), - [anon_sym_POUND_LBRACK] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_DOLLARif] = ACTIONS(2841), - [anon_sym_is] = ACTIONS(2841), - [anon_sym_BANGis] = ACTIONS(2839), - [anon_sym_in] = ACTIONS(2841), - [anon_sym_BANGin] = ACTIONS(2839), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_select] = ACTIONS(2841), - [anon_sym_lock] = ACTIONS(2841), - [anon_sym_rlock] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_sql] = ACTIONS(2841), - [sym_int_literal] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(2839), - [sym_rune_literal] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_c_SQUOTE] = ACTIONS(2839), - [anon_sym_c_DQUOTE] = ACTIONS(2839), - [anon_sym_r_SQUOTE] = ACTIONS(2839), - [anon_sym_r_DQUOTE] = ACTIONS(2839), - [sym_pseudo_compile_time_identifier] = ACTIONS(2841), - [anon_sym_shared] = ACTIONS(2841), - [anon_sym_map_LBRACK] = ACTIONS(2839), - [anon_sym_chan] = ACTIONS(2841), - [anon_sym_thread] = ACTIONS(2841), - [anon_sym_atomic] = ACTIONS(2841), - }, - [1564] = { - [sym_line_comment] = STATE(1564), - [sym_block_comment] = STATE(1564), - [sym_identifier] = ACTIONS(2173), + [sym_block_comment] = STATE(1560), + [sym_identifier] = ACTIONS(2169), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [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(2178), - [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_PIPE] = ACTIONS(2173), - [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), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [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_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_PIPE] = ACTIONS(2169), + [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_else] = 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), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, - [1565] = { - [sym_line_comment] = STATE(1565), - [sym_block_comment] = STATE(1565), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2079), + [1561] = { + [sym_line_comment] = STATE(1561), + [sym_block_comment] = STATE(1561), + [sym_identifier] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4289), - [anon_sym_GT_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2077), - [sym_rune_literal] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_c_SQUOTE] = ACTIONS(2077), - [anon_sym_c_DQUOTE] = ACTIONS(2077), - [anon_sym_r_SQUOTE] = ACTIONS(2077), - [anon_sym_r_DQUOTE] = ACTIONS(2077), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2077), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_COLON] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2103), + [anon_sym_LT_LT] = ACTIONS(2103), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2103), + [anon_sym_AMP_CARET] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2103), + [anon_sym_PIPE_PIPE] = ACTIONS(2103), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2103), + [anon_sym_POUND_LBRACK] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_DOLLARelse] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2103), + [sym_rune_literal] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_c_SQUOTE] = ACTIONS(2103), + [anon_sym_c_DQUOTE] = ACTIONS(2103), + [anon_sym_r_SQUOTE] = ACTIONS(2103), + [anon_sym_r_DQUOTE] = ACTIONS(2103), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2103), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, - [1566] = { - [sym_line_comment] = STATE(1566), - [sym_block_comment] = STATE(1566), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2059), + [1562] = { + [sym_line_comment] = STATE(1562), + [sym_block_comment] = STATE(1562), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2065), [anon_sym_PLUS] = ACTIONS(4285), [anon_sym_DASH] = ACTIONS(4285), [anon_sym_STAR] = ACTIONS(4287), [anon_sym_SLASH] = ACTIONS(4289), [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2063), [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(4295), [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2057), + [anon_sym_LT_DASH] = ACTIONS(2063), [anon_sym_LT_LT] = ACTIONS(4287), [anon_sym_GT_GT] = ACTIONS(4289), [anon_sym_GT_GT_GT] = ACTIONS(4287), [anon_sym_AMP_CARET] = ACTIONS(4287), [anon_sym_AMP_AMP] = ACTIONS(4297), [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), [anon_sym_in] = ACTIONS(4301), [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2057), - [sym_rune_literal] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [anon_sym_c_SQUOTE] = ACTIONS(2057), - [anon_sym_c_DQUOTE] = ACTIONS(2057), - [anon_sym_r_SQUOTE] = ACTIONS(2057), - [anon_sym_r_DQUOTE] = ACTIONS(2057), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2057), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2063), + [sym_rune_literal] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_c_SQUOTE] = ACTIONS(2063), + [anon_sym_c_DQUOTE] = ACTIONS(2063), + [anon_sym_r_SQUOTE] = ACTIONS(2063), + [anon_sym_r_DQUOTE] = ACTIONS(2063), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2063), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), + }, + [1563] = { + [sym_line_comment] = STATE(1563), + [sym_block_comment] = STATE(1563), + [sym_type_parameters] = STATE(1669), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2185), + [anon_sym_AMP_CARET] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2185), + [anon_sym_POUND_LBRACK] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + }, + [1564] = { + [sym_line_comment] = STATE(1564), + [sym_block_comment] = STATE(1564), + [sym_identifier] = ACTIONS(2865), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(2865), + [anon_sym_as] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_RBRACK] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_mut] = ACTIONS(2865), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_go] = ACTIONS(2865), + [anon_sym_spawn] = ACTIONS(2865), + [anon_sym_json_DOTdecode] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_LT_DASH] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_or] = ACTIONS(2865), + [sym_none] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_nil] = ACTIONS(2865), + [anon_sym_QMARK_DOT] = ACTIONS(2863), + [anon_sym_POUND_LBRACK] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_DOLLARif] = ACTIONS(2865), + [anon_sym_is] = ACTIONS(2865), + [anon_sym_BANGis] = ACTIONS(2863), + [anon_sym_in] = ACTIONS(2865), + [anon_sym_BANGin] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_select] = ACTIONS(2865), + [anon_sym_lock] = ACTIONS(2865), + [anon_sym_rlock] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_sql] = ACTIONS(2865), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2863), + [sym_rune_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_c_SQUOTE] = ACTIONS(2863), + [anon_sym_c_DQUOTE] = ACTIONS(2863), + [anon_sym_r_SQUOTE] = ACTIONS(2863), + [anon_sym_r_DQUOTE] = ACTIONS(2863), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), + [anon_sym_shared] = ACTIONS(2865), + [anon_sym_map_LBRACK] = ACTIONS(2863), + [anon_sym_chan] = ACTIONS(2865), + [anon_sym_thread] = ACTIONS(2865), + [anon_sym_atomic] = ACTIONS(2865), + }, + [1565] = { + [sym_line_comment] = STATE(1565), + [sym_block_comment] = STATE(1565), + [sym_identifier] = ACTIONS(3007), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_as] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_RBRACK] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_mut] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_go] = ACTIONS(3007), + [anon_sym_spawn] = ACTIONS(3007), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3007), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3007), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3007), + [sym_none] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_nil] = ACTIONS(3007), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_DOLLARif] = ACTIONS(3007), + [anon_sym_is] = ACTIONS(3007), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3007), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_select] = ACTIONS(3007), + [anon_sym_lock] = ACTIONS(3007), + [anon_sym_rlock] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_sql] = ACTIONS(3007), + [sym_int_literal] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_c_SQUOTE] = ACTIONS(3005), + [anon_sym_c_DQUOTE] = ACTIONS(3005), + [anon_sym_r_SQUOTE] = ACTIONS(3005), + [anon_sym_r_DQUOTE] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3007), + [anon_sym_shared] = ACTIONS(3007), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3007), + [anon_sym_thread] = ACTIONS(3007), + [anon_sym_atomic] = ACTIONS(3007), + }, + [1566] = { + [sym_line_comment] = STATE(1566), + [sym_block_comment] = STATE(1566), + [sym_identifier] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_AMP_CARET] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2979), + [anon_sym_POUND_LBRACK] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2979), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2979), + [sym_rune_literal] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_c_SQUOTE] = ACTIONS(2979), + [anon_sym_c_DQUOTE] = ACTIONS(2979), + [anon_sym_r_SQUOTE] = ACTIONS(2979), + [anon_sym_r_DQUOTE] = ACTIONS(2979), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2979), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), }, [1567] = { [sym_line_comment] = STATE(1567), [sym_block_comment] = STATE(1567), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2069), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2065), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4289), - [anon_sym_GT_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_c_SQUOTE] = ACTIONS(2067), - [anon_sym_c_DQUOTE] = ACTIONS(2067), - [anon_sym_r_SQUOTE] = ACTIONS(2067), - [anon_sym_r_DQUOTE] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_mut] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2065), + [anon_sym_spawn] = ACTIONS(2065), + [anon_sym_json_DOTdecode] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_nil] = ACTIONS(2065), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_DOLLARif] = ACTIONS(2065), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_lock] = ACTIONS(2065), + [anon_sym_rlock] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_sql] = ACTIONS(2065), + [sym_int_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2063), + [sym_rune_literal] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_c_SQUOTE] = ACTIONS(2063), + [anon_sym_c_DQUOTE] = ACTIONS(2063), + [anon_sym_r_SQUOTE] = ACTIONS(2063), + [anon_sym_r_DQUOTE] = ACTIONS(2063), + [sym_pseudo_compile_time_identifier] = ACTIONS(2065), + [anon_sym_shared] = ACTIONS(2065), + [anon_sym_map_LBRACK] = ACTIONS(2063), + [anon_sym_chan] = ACTIONS(2065), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2065), }, [1568] = { [sym_line_comment] = STATE(1568), [sym_block_comment] = STATE(1568), - [sym_type_parameters] = STATE(1669), - [sym_identifier] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_COLON] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_c_SQUOTE] = ACTIONS(2183), - [anon_sym_c_DQUOTE] = ACTIONS(2183), - [anon_sym_r_SQUOTE] = ACTIONS(2183), - [anon_sym_r_DQUOTE] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_RBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2975), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_or] = ACTIONS(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2975), + [anon_sym_POUND_LBRACK] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2975), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2975), + [sym_rune_literal] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [anon_sym_c_SQUOTE] = ACTIONS(2975), + [anon_sym_c_DQUOTE] = ACTIONS(2975), + [anon_sym_r_SQUOTE] = ACTIONS(2975), + [anon_sym_r_DQUOTE] = ACTIONS(2975), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2975), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), }, [1569] = { [sym_line_comment] = STATE(1569), [sym_block_comment] = STATE(1569), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2069), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_COLON] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2069), - [anon_sym_spawn] = ACTIONS(2069), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(2069), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_nil] = ACTIONS(2069), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_DOLLARif] = ACTIONS(2069), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_select] = ACTIONS(2069), - [anon_sym_lock] = ACTIONS(2069), - [anon_sym_rlock] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_sql] = ACTIONS(2069), - [sym_int_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_c_SQUOTE] = ACTIONS(2067), - [anon_sym_c_DQUOTE] = ACTIONS(2067), - [anon_sym_r_SQUOTE] = ACTIONS(2067), - [anon_sym_r_DQUOTE] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2069), - [anon_sym_shared] = ACTIONS(2069), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2069), - [anon_sym_thread] = ACTIONS(2069), - [anon_sym_atomic] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2073), + [sym_rune_literal] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2073), + [anon_sym_c_SQUOTE] = ACTIONS(2073), + [anon_sym_c_DQUOTE] = ACTIONS(2073), + [anon_sym_r_SQUOTE] = ACTIONS(2073), + [anon_sym_r_DQUOTE] = ACTIONS(2073), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2073), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), }, [1570] = { [sym_line_comment] = STATE(1570), [sym_block_comment] = STATE(1570), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4289), - [anon_sym_GT_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_AMP_CARET] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_POUND_LBRACK] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2145), + [sym_rune_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2145), + [anon_sym_r_SQUOTE] = ACTIONS(2145), + [anon_sym_r_DQUOTE] = ACTIONS(2145), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2145), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, [1571] = { [sym_line_comment] = STATE(1571), [sym_block_comment] = STATE(1571), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(4305), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(4305), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(4307), - [anon_sym_struct] = ACTIONS(4305), - [anon_sym_mut] = ACTIONS(4305), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(4305), - [anon_sym_spawn] = ACTIONS(4305), - [anon_sym_json_DOTdecode] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4289), - [anon_sym_GT_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [sym_nil] = ACTIONS(4305), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_DOLLARif] = ACTIONS(4305), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(4305), - [anon_sym_select] = ACTIONS(4305), - [anon_sym_lock] = ACTIONS(4305), - [anon_sym_rlock] = ACTIONS(4305), - [anon_sym_unsafe] = ACTIONS(4305), - [anon_sym_sql] = ACTIONS(4305), - [sym_int_literal] = ACTIONS(4305), - [sym_float_literal] = ACTIONS(4307), - [sym_rune_literal] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [anon_sym_DQUOTE] = ACTIONS(4307), - [anon_sym_c_SQUOTE] = ACTIONS(4307), - [anon_sym_c_DQUOTE] = ACTIONS(4307), - [anon_sym_r_SQUOTE] = ACTIONS(4307), - [anon_sym_r_DQUOTE] = ACTIONS(4307), - [sym_pseudo_compile_time_identifier] = ACTIONS(4305), - [anon_sym_shared] = ACTIONS(4305), - [anon_sym_map_LBRACK] = ACTIONS(4307), - [anon_sym_chan] = ACTIONS(4305), - [anon_sym_thread] = ACTIONS(4305), - [anon_sym_atomic] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2047), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_COLON] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(2047), + [anon_sym_PIPE_PIPE] = ACTIONS(2047), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2047), + [sym_rune_literal] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [anon_sym_c_SQUOTE] = ACTIONS(2047), + [anon_sym_c_DQUOTE] = ACTIONS(2047), + [anon_sym_r_SQUOTE] = ACTIONS(2047), + [anon_sym_r_DQUOTE] = ACTIONS(2047), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2047), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), }, [1572] = { [sym_line_comment] = STATE(1572), [sym_block_comment] = STATE(1572), - [sym_identifier] = ACTIONS(3015), + [sym_identifier] = ACTIONS(2169), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_c_SQUOTE] = ACTIONS(3013), - [anon_sym_c_DQUOTE] = ACTIONS(3013), - [anon_sym_r_SQUOTE] = ACTIONS(3013), - [anon_sym_r_DQUOTE] = ACTIONS(3013), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), + [anon_sym_DOT] = ACTIONS(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_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_PIPE] = ACTIONS(2169), + [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_DOLLARelse] = 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), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1573] = { [sym_line_comment] = STATE(1573), [sym_block_comment] = STATE(1573), - [sym_identifier] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2095), - [anon_sym_GT_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_AMP_CARET] = ACTIONS(2095), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2095), - [anon_sym_POUND_LBRACK] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2095), - [sym_rune_literal] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_c_SQUOTE] = ACTIONS(2095), - [anon_sym_c_DQUOTE] = ACTIONS(2095), - [anon_sym_r_SQUOTE] = ACTIONS(2095), - [anon_sym_r_DQUOTE] = ACTIONS(2095), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2095), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - }, - [1574] = { - [sym_line_comment] = STATE(1574), - [sym_block_comment] = STATE(1574), - [sym_identifier] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_as] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2329), - [anon_sym_SLASH] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2329), - [anon_sym_BANG_EQ] = ACTIONS(2329), - [anon_sym_LT_EQ] = ACTIONS(2329), - [anon_sym_GT_EQ] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_RBRACK] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_mut] = ACTIONS(2331), - [anon_sym_COLON] = ACTIONS(2329), - [anon_sym_PLUS_PLUS] = ACTIONS(2329), - [anon_sym_DASH_DASH] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_go] = ACTIONS(2331), - [anon_sym_spawn] = ACTIONS(2331), - [anon_sym_json_DOTdecode] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_LBRACK2] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_CARET] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_LT_DASH] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_GT_GT] = ACTIONS(2331), - [anon_sym_GT_GT_GT] = ACTIONS(2329), - [anon_sym_AMP_CARET] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_or] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_nil] = ACTIONS(2331), - [anon_sym_QMARK_DOT] = ACTIONS(2329), - [anon_sym_POUND_LBRACK] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2331), - [anon_sym_DOLLARelse] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(2331), - [anon_sym_BANGis] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2331), - [anon_sym_BANGin] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_select] = ACTIONS(2331), - [anon_sym_lock] = ACTIONS(2331), - [anon_sym_rlock] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_sql] = ACTIONS(2331), - [sym_int_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2329), - [sym_rune_literal] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [anon_sym_c_SQUOTE] = ACTIONS(2329), - [anon_sym_c_DQUOTE] = ACTIONS(2329), - [anon_sym_r_SQUOTE] = ACTIONS(2329), - [anon_sym_r_DQUOTE] = ACTIONS(2329), - [sym_pseudo_compile_time_identifier] = ACTIONS(2331), - [anon_sym_shared] = ACTIONS(2331), - [anon_sym_map_LBRACK] = ACTIONS(2329), - [anon_sym_chan] = ACTIONS(2331), - [anon_sym_thread] = ACTIONS(2331), - [anon_sym_atomic] = ACTIONS(2331), - }, - [1575] = { - [sym_line_comment] = STATE(1575), - [sym_block_comment] = STATE(1575), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2077), - [sym_rune_literal] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_c_SQUOTE] = ACTIONS(2077), - [anon_sym_c_DQUOTE] = ACTIONS(2077), - [anon_sym_r_SQUOTE] = ACTIONS(2077), - [anon_sym_r_DQUOTE] = ACTIONS(2077), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2077), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), - }, - [1576] = { - [sym_line_comment] = STATE(1576), - [sym_block_comment] = STATE(1576), - [sym_identifier] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2095), - [anon_sym_GT_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_AMP_CARET] = ACTIONS(2095), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2095), - [anon_sym_POUND_LBRACK] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_DOLLARelse] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2095), - [sym_rune_literal] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_c_SQUOTE] = ACTIONS(2095), - [anon_sym_c_DQUOTE] = ACTIONS(2095), - [anon_sym_r_SQUOTE] = ACTIONS(2095), - [anon_sym_r_DQUOTE] = ACTIONS(2095), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2095), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - }, - [1577] = { - [sym_line_comment] = STATE(1577), - [sym_block_comment] = STATE(1577), [sym_identifier] = ACTIONS(2093), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -194839,8 +194741,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2091), [anon_sym_POUND_LBRACK] = ACTIONS(2091), [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_DOLLARelse] = ACTIONS(4305), [anon_sym_is] = ACTIONS(2093), [anon_sym_BANGis] = ACTIONS(2091), [anon_sym_in] = ACTIONS(2093), @@ -194867,177 +194769,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2093), [anon_sym_atomic] = ACTIONS(2093), }, - [1578] = { - [sym_line_comment] = STATE(1578), - [sym_block_comment] = STATE(1578), - [sym_identifier] = ACTIONS(2139), + [1574] = { + [sym_line_comment] = STATE(1574), + [sym_block_comment] = STATE(1574), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(4307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [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(2137), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_COLON] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2139), - [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(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_POUND_LBRACK] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_DOLLARelse] = ACTIONS(4313), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_c_SQUOTE] = ACTIONS(2137), - [anon_sym_c_DQUOTE] = ACTIONS(2137), - [anon_sym_r_SQUOTE] = ACTIONS(2137), - [anon_sym_r_DQUOTE] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4311), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4307), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(4307), + [anon_sym_spawn] = ACTIONS(4307), + [anon_sym_json_DOTdecode] = ACTIONS(4309), + [anon_sym_PIPE] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4309), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(4309), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4289), + [anon_sym_GT_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_CARET] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4299), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(4307), + [sym_true] = ACTIONS(4307), + [sym_false] = ACTIONS(4307), + [sym_nil] = ACTIONS(4307), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_DOLLARif] = ACTIONS(4307), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4303), + [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(4309), + [sym_rune_literal] = ACTIONS(4309), + [anon_sym_SQUOTE] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(4309), + [anon_sym_c_SQUOTE] = ACTIONS(4309), + [anon_sym_c_DQUOTE] = ACTIONS(4309), + [anon_sym_r_SQUOTE] = ACTIONS(4309), + [anon_sym_r_DQUOTE] = ACTIONS(4309), + [sym_pseudo_compile_time_identifier] = ACTIONS(4307), + [anon_sym_shared] = ACTIONS(4307), + [anon_sym_map_LBRACK] = ACTIONS(4309), + [anon_sym_chan] = ACTIONS(4307), + [anon_sym_thread] = ACTIONS(4307), + [anon_sym_atomic] = ACTIONS(4307), }, - [1579] = { - [sym_line_comment] = STATE(1579), - [sym_block_comment] = STATE(1579), - [sym_identifier] = ACTIONS(2909), + [1575] = { + [sym_line_comment] = STATE(1575), + [sym_block_comment] = STATE(1575), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2075), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [anon_sym_c_SQUOTE] = ACTIONS(2907), - [anon_sym_c_DQUOTE] = ACTIONS(2907), - [anon_sym_r_SQUOTE] = ACTIONS(2907), - [anon_sym_r_DQUOTE] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2075), + [anon_sym_spawn] = ACTIONS(2075), + [anon_sym_json_DOTdecode] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4289), + [anon_sym_GT_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_CARET] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4299), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_nil] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_DOLLARif] = ACTIONS(2075), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_select] = ACTIONS(2075), + [anon_sym_lock] = ACTIONS(2075), + [anon_sym_rlock] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_sql] = ACTIONS(2075), + [sym_int_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2073), + [sym_rune_literal] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2073), + [anon_sym_c_SQUOTE] = ACTIONS(2073), + [anon_sym_c_DQUOTE] = ACTIONS(2073), + [anon_sym_r_SQUOTE] = ACTIONS(2073), + [anon_sym_r_DQUOTE] = ACTIONS(2073), + [sym_pseudo_compile_time_identifier] = ACTIONS(2075), + [anon_sym_shared] = ACTIONS(2075), + [anon_sym_map_LBRACK] = ACTIONS(2073), + [anon_sym_chan] = ACTIONS(2075), + [anon_sym_thread] = ACTIONS(2075), + [anon_sym_atomic] = ACTIONS(2075), }, - [1580] = { - [sym_line_comment] = STATE(1580), - [sym_block_comment] = STATE(1580), + [1576] = { + [sym_line_comment] = STATE(1576), + [sym_block_comment] = STATE(1576), [sym_identifier] = ACTIONS(2917), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -195119,1177 +195021,1513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2917), [anon_sym_atomic] = ACTIONS(2917), }, + [1577] = { + [sym_line_comment] = STATE(1577), + [sym_block_comment] = STATE(1577), + [sym_identifier] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_DOT] = ACTIONS(2921), + [anon_sym_as] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_RBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_mut] = ACTIONS(2921), + [anon_sym_COLON] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_QMARK] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_go] = ACTIONS(2921), + [anon_sym_spawn] = ACTIONS(2921), + [anon_sym_json_DOTdecode] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LBRACK2] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_CARET] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_LT_DASH] = ACTIONS(2919), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_GT_GT_GT] = ACTIONS(2919), + [anon_sym_AMP_CARET] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_or] = ACTIONS(2921), + [sym_none] = ACTIONS(2921), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_nil] = ACTIONS(2921), + [anon_sym_QMARK_DOT] = ACTIONS(2919), + [anon_sym_POUND_LBRACK] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_DOLLARif] = ACTIONS(2921), + [anon_sym_is] = ACTIONS(2921), + [anon_sym_BANGis] = ACTIONS(2919), + [anon_sym_in] = ACTIONS(2921), + [anon_sym_BANGin] = ACTIONS(2919), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_select] = ACTIONS(2921), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_sql] = ACTIONS(2921), + [sym_int_literal] = ACTIONS(2921), + [sym_float_literal] = ACTIONS(2919), + [sym_rune_literal] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_c_SQUOTE] = ACTIONS(2919), + [anon_sym_c_DQUOTE] = ACTIONS(2919), + [anon_sym_r_SQUOTE] = ACTIONS(2919), + [anon_sym_r_DQUOTE] = ACTIONS(2919), + [sym_pseudo_compile_time_identifier] = ACTIONS(2921), + [anon_sym_shared] = ACTIONS(2921), + [anon_sym_map_LBRACK] = ACTIONS(2919), + [anon_sym_chan] = ACTIONS(2921), + [anon_sym_thread] = ACTIONS(2921), + [anon_sym_atomic] = ACTIONS(2921), + }, + [1578] = { + [sym_line_comment] = STATE(1578), + [sym_block_comment] = STATE(1578), + [sym_identifier] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_COLON] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2923), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2923), + [anon_sym_POUND_LBRACK] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2923), + [sym_rune_literal] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [anon_sym_c_SQUOTE] = ACTIONS(2923), + [anon_sym_c_DQUOTE] = ACTIONS(2923), + [anon_sym_r_SQUOTE] = ACTIONS(2923), + [anon_sym_r_DQUOTE] = ACTIONS(2923), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2923), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + }, + [1579] = { + [sym_line_comment] = STATE(1579), + [sym_block_comment] = STATE(1579), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4289), + [anon_sym_GT_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_CARET] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), + }, + [1580] = { + [sym_line_comment] = STATE(1580), + [sym_block_comment] = STATE(1580), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2173), + [anon_sym_AMP_CARET] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2173), + [anon_sym_POUND_LBRACK] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2173), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2173), + [sym_rune_literal] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [anon_sym_c_SQUOTE] = ACTIONS(2173), + [anon_sym_c_DQUOTE] = ACTIONS(2173), + [anon_sym_r_SQUOTE] = ACTIONS(2173), + [anon_sym_r_DQUOTE] = ACTIONS(2173), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2173), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + }, [1581] = { [sym_line_comment] = STATE(1581), [sym_block_comment] = STATE(1581), - [aux_sym_strictly_expression_list_repeat1] = STATE(1924), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LF] = ACTIONS(2043), - [anon_sym_CR] = ACTIONS(2043), - [anon_sym_CR_LF] = ACTIONS(2043), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_QMARK] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_go] = ACTIONS(2043), - [anon_sym_spawn] = ACTIONS(2043), - [anon_sym_json_DOTdecode] = ACTIONS(2043), - [anon_sym_LBRACK2] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_LT_DASH] = ACTIONS(2043), - [sym_none] = ACTIONS(2043), - [sym_true] = ACTIONS(2043), - [sym_false] = ACTIONS(2043), - [sym_nil] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_DOLLARif] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_select] = ACTIONS(2043), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_PERCENT_EQ] = ACTIONS(2045), - [anon_sym_LT_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2045), - [anon_sym_AMP_EQ] = ACTIONS(2045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2045), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_PIPE_EQ] = ACTIONS(2045), - [anon_sym_CARET_EQ] = ACTIONS(2045), - [anon_sym_COLON_EQ] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2043), - [anon_sym_rlock] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_sql] = ACTIONS(2043), - [sym_int_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - [sym_rune_literal] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_c_SQUOTE] = ACTIONS(2043), - [anon_sym_c_DQUOTE] = ACTIONS(2043), - [anon_sym_r_SQUOTE] = ACTIONS(2043), - [anon_sym_r_DQUOTE] = ACTIONS(2043), - [sym_pseudo_compile_time_identifier] = ACTIONS(2043), - [anon_sym_shared] = ACTIONS(2043), - [anon_sym_map_LBRACK] = ACTIONS(2043), - [anon_sym_chan] = ACTIONS(2043), - [anon_sym_thread] = ACTIONS(2043), - [anon_sym_atomic] = ACTIONS(2043), - [anon_sym_assert] = ACTIONS(2043), - [anon_sym_defer] = ACTIONS(2043), - [anon_sym_goto] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_DOLLARfor] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_asm] = ACTIONS(2043), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4289), + [anon_sym_GT_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_CARET] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1582] = { [sym_line_comment] = STATE(1582), [sym_block_comment] = STATE(1582), - [sym_identifier] = ACTIONS(2921), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_COLON] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2921), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_c_SQUOTE] = ACTIONS(2919), - [anon_sym_c_DQUOTE] = ACTIONS(2919), - [anon_sym_r_SQUOTE] = ACTIONS(2919), - [anon_sym_r_DQUOTE] = ACTIONS(2919), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), + [aux_sym_strictly_expression_list_repeat1] = STATE(1924), + [sym_identifier] = ACTIONS(1995), + [anon_sym_LF] = ACTIONS(1995), + [anon_sym_CR] = ACTIONS(1995), + [anon_sym_CR_LF] = ACTIONS(1995), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_mut] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_go] = ACTIONS(1995), + [anon_sym_spawn] = ACTIONS(1995), + [anon_sym_json_DOTdecode] = ACTIONS(1995), + [anon_sym_LBRACK2] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_LT_DASH] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_nil] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_DOLLARif] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_select] = ACTIONS(1995), + [anon_sym_STAR_EQ] = ACTIONS(2001), + [anon_sym_SLASH_EQ] = ACTIONS(2001), + [anon_sym_PERCENT_EQ] = ACTIONS(2001), + [anon_sym_LT_LT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2001), + [anon_sym_AMP_EQ] = ACTIONS(2001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2001), + [anon_sym_PLUS_EQ] = ACTIONS(2001), + [anon_sym_DASH_EQ] = ACTIONS(2001), + [anon_sym_PIPE_EQ] = ACTIONS(2001), + [anon_sym_CARET_EQ] = ACTIONS(2001), + [anon_sym_COLON_EQ] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(1995), + [anon_sym_rlock] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_sql] = ACTIONS(1995), + [sym_int_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), + [sym_rune_literal] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_c_SQUOTE] = ACTIONS(1995), + [anon_sym_c_DQUOTE] = ACTIONS(1995), + [anon_sym_r_SQUOTE] = ACTIONS(1995), + [anon_sym_r_DQUOTE] = ACTIONS(1995), + [sym_pseudo_compile_time_identifier] = ACTIONS(1995), + [anon_sym_shared] = ACTIONS(1995), + [anon_sym_map_LBRACK] = ACTIONS(1995), + [anon_sym_chan] = ACTIONS(1995), + [anon_sym_thread] = ACTIONS(1995), + [anon_sym_atomic] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_defer] = ACTIONS(1995), + [anon_sym_goto] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_DOLLARfor] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_asm] = ACTIONS(1995), }, [1583] = { [sym_line_comment] = STATE(1583), [sym_block_comment] = STATE(1583), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), [anon_sym_STAR] = ACTIONS(4287), [anon_sym_SLASH] = ACTIONS(4289), [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2061), - [anon_sym_BANG_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4295), [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2051), [anon_sym_LT_LT] = ACTIONS(4287), [anon_sym_GT_GT] = ACTIONS(4289), [anon_sym_GT_GT_GT] = ACTIONS(4287), [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1584] = { [sym_line_comment] = STATE(1584), [sym_block_comment] = STATE(1584), - [sym_identifier] = ACTIONS(2093), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_RBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_AMP_CARET] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_POUND_LBRACK] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_DOLLARelse] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2091), - [sym_rune_literal] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_c_SQUOTE] = ACTIONS(2091), - [anon_sym_c_DQUOTE] = ACTIONS(2091), - [anon_sym_r_SQUOTE] = ACTIONS(2091), - [anon_sym_r_DQUOTE] = ACTIONS(2091), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2091), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_EQ_EQ] = ACTIONS(4293), + [anon_sym_BANG_EQ] = ACTIONS(4293), + [anon_sym_LT_EQ] = ACTIONS(4293), + [anon_sym_GT_EQ] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4287), + [anon_sym_GT_GT] = ACTIONS(4289), + [anon_sym_GT_GT_GT] = ACTIONS(4287), + [anon_sym_AMP_CARET] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1585] = { [sym_line_comment] = STATE(1585), [sym_block_comment] = STATE(1585), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2061), - [anon_sym_BANG_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_AMP_CARET] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_POUND_LBRACK] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_DOLLARelse] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2145), + [sym_rune_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2145), + [anon_sym_r_SQUOTE] = ACTIONS(2145), + [anon_sym_r_DQUOTE] = ACTIONS(2145), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2145), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, [1586] = { [sym_line_comment] = STATE(1586), [sym_block_comment] = STATE(1586), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2061), - [anon_sym_BANG_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1587] = { [sym_line_comment] = STATE(1587), [sym_block_comment] = STATE(1587), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_GT] = ACTIONS(2053), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2053), + [anon_sym_BANGin] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1588] = { [sym_line_comment] = STATE(1588), [sym_block_comment] = STATE(1588), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1589] = { [sym_line_comment] = STATE(1589), [sym_block_comment] = STATE(1589), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2053), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2061), - [anon_sym_BANG_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(4287), - [anon_sym_GT_GT] = ACTIONS(4289), - [anon_sym_GT_GT_GT] = ACTIONS(4287), - [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2053), + [anon_sym_spawn] = ACTIONS(2053), + [anon_sym_json_DOTdecode] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(2051), + [anon_sym_or] = ACTIONS(2053), + [sym_none] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_nil] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_DOLLARif] = ACTIONS(2053), + [anon_sym_is] = ACTIONS(2053), + [anon_sym_BANGis] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_select] = ACTIONS(2053), + [anon_sym_lock] = ACTIONS(2053), + [anon_sym_rlock] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_sql] = ACTIONS(2053), + [sym_int_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2051), + [sym_rune_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [anon_sym_c_SQUOTE] = ACTIONS(2051), + [anon_sym_c_DQUOTE] = ACTIONS(2051), + [anon_sym_r_SQUOTE] = ACTIONS(2051), + [anon_sym_r_DQUOTE] = ACTIONS(2051), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2053), + [anon_sym_map_LBRACK] = ACTIONS(2051), + [anon_sym_chan] = ACTIONS(2053), + [anon_sym_thread] = ACTIONS(2053), + [anon_sym_atomic] = ACTIONS(2053), }, [1590] = { [sym_line_comment] = STATE(1590), [sym_block_comment] = STATE(1590), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(2055), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(2049), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(2049), [anon_sym_PLUS] = ACTIONS(4285), [anon_sym_DASH] = ACTIONS(4285), [anon_sym_STAR] = ACTIONS(4287), [anon_sym_SLASH] = ACTIONS(4289), [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_LT_EQ] = ACTIONS(4295), - [anon_sym_GT_EQ] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2047), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(2047), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(2049), + [anon_sym_spawn] = ACTIONS(2049), + [anon_sym_json_DOTdecode] = ACTIONS(2047), [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(4295), [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(2061), + [anon_sym_LT_DASH] = ACTIONS(2047), [anon_sym_LT_LT] = ACTIONS(4287), [anon_sym_GT_GT] = ACTIONS(4289), [anon_sym_GT_GT_GT] = ACTIONS(4287), [anon_sym_AMP_CARET] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(2061), - [anon_sym_PIPE_PIPE] = ACTIONS(2061), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2061), - [sym_rune_literal] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [anon_sym_c_SQUOTE] = ACTIONS(2061), - [anon_sym_c_DQUOTE] = ACTIONS(2061), - [anon_sym_r_SQUOTE] = ACTIONS(2061), - [anon_sym_r_DQUOTE] = ACTIONS(2061), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2061), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2047), + [anon_sym_PIPE_PIPE] = ACTIONS(2047), + [anon_sym_or] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_nil] = ACTIONS(2049), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_DOLLARif] = ACTIONS(2049), + [anon_sym_is] = ACTIONS(2049), + [anon_sym_BANGis] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2049), + [anon_sym_BANGin] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_select] = ACTIONS(2049), + [anon_sym_lock] = ACTIONS(2049), + [anon_sym_rlock] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_sql] = ACTIONS(2049), + [sym_int_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2047), + [sym_rune_literal] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [anon_sym_c_SQUOTE] = ACTIONS(2047), + [anon_sym_c_DQUOTE] = ACTIONS(2047), + [anon_sym_r_SQUOTE] = ACTIONS(2047), + [anon_sym_r_DQUOTE] = ACTIONS(2047), + [sym_pseudo_compile_time_identifier] = ACTIONS(2049), + [anon_sym_shared] = ACTIONS(2049), + [anon_sym_map_LBRACK] = ACTIONS(2047), + [anon_sym_chan] = ACTIONS(2049), + [anon_sym_thread] = ACTIONS(2049), + [anon_sym_atomic] = ACTIONS(2049), }, [1591] = { [sym_line_comment] = STATE(1591), [sym_block_comment] = STATE(1591), - [sym_identifier] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2849), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_as] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_PERCENT] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_EQ_EQ] = ACTIONS(2843), - [anon_sym_BANG_EQ] = ACTIONS(2843), - [anon_sym_LT_EQ] = ACTIONS(2843), - [anon_sym_GT_EQ] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_mut] = ACTIONS(2845), - [anon_sym_COLON] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_go] = ACTIONS(2845), - [anon_sym_spawn] = ACTIONS(2845), - [anon_sym_json_DOTdecode] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK2] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_LT_DASH] = ACTIONS(2843), - [anon_sym_LT_LT] = ACTIONS(2843), - [anon_sym_GT_GT] = ACTIONS(2845), - [anon_sym_GT_GT_GT] = ACTIONS(2843), - [anon_sym_AMP_CARET] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_PIPE_PIPE] = ACTIONS(2843), - [anon_sym_or] = ACTIONS(2845), - [sym_none] = ACTIONS(2845), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_nil] = ACTIONS(2845), - [anon_sym_QMARK_DOT] = ACTIONS(2843), - [anon_sym_POUND_LBRACK] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_DOLLARif] = ACTIONS(2845), - [anon_sym_is] = ACTIONS(2845), - [anon_sym_BANGis] = ACTIONS(2843), - [anon_sym_in] = ACTIONS(2845), - [anon_sym_BANGin] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_select] = ACTIONS(2845), - [anon_sym_lock] = ACTIONS(2845), - [anon_sym_rlock] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_sql] = ACTIONS(2845), - [sym_int_literal] = ACTIONS(2845), - [sym_float_literal] = ACTIONS(2843), - [sym_rune_literal] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_c_SQUOTE] = ACTIONS(2843), - [anon_sym_c_DQUOTE] = ACTIONS(2843), - [anon_sym_r_SQUOTE] = ACTIONS(2843), - [anon_sym_r_DQUOTE] = ACTIONS(2843), - [sym_pseudo_compile_time_identifier] = ACTIONS(2845), - [anon_sym_shared] = ACTIONS(2845), - [anon_sym_map_LBRACK] = ACTIONS(2843), - [anon_sym_chan] = ACTIONS(2845), - [anon_sym_thread] = ACTIONS(2845), - [anon_sym_atomic] = ACTIONS(2845), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_as] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_RBRACK] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_mut] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_QMARK] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2849), + [anon_sym_json_DOTdecode] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_LT_DASH] = ACTIONS(2847), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_or] = ACTIONS(2849), + [sym_none] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_nil] = ACTIONS(2849), + [anon_sym_QMARK_DOT] = ACTIONS(2847), + [anon_sym_POUND_LBRACK] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_DOLLARif] = ACTIONS(2849), + [anon_sym_is] = ACTIONS(2849), + [anon_sym_BANGis] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2849), + [anon_sym_BANGin] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_select] = ACTIONS(2849), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_sql] = ACTIONS(2849), + [sym_int_literal] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2847), + [sym_rune_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_c_SQUOTE] = ACTIONS(2847), + [anon_sym_c_DQUOTE] = ACTIONS(2847), + [anon_sym_r_SQUOTE] = ACTIONS(2847), + [anon_sym_r_DQUOTE] = ACTIONS(2847), + [sym_pseudo_compile_time_identifier] = ACTIONS(2849), + [anon_sym_shared] = ACTIONS(2849), + [anon_sym_map_LBRACK] = ACTIONS(2847), + [anon_sym_chan] = ACTIONS(2849), + [anon_sym_thread] = ACTIONS(2849), + [anon_sym_atomic] = ACTIONS(2849), }, [1592] = { [sym_line_comment] = STATE(1592), [sym_block_comment] = STATE(1592), - [sym_identifier] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3332), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_COMMA] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_fn] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_LT_EQ] = ACTIONS(3260), - [anon_sym_GT_EQ] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_RBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_mut] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_go] = ACTIONS(3262), - [anon_sym_spawn] = ACTIONS(3262), - [anon_sym_json_DOTdecode] = ACTIONS(3260), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_LBRACK2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_GT_GT_GT] = ACTIONS(3260), - [anon_sym_AMP_CARET] = ACTIONS(3260), - [anon_sym_AMP_AMP] = ACTIONS(3260), - [anon_sym_PIPE_PIPE] = ACTIONS(3260), - [anon_sym_or] = ACTIONS(3262), - [sym_none] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_nil] = ACTIONS(3262), - [anon_sym_QMARK_DOT] = ACTIONS(3260), - [anon_sym_POUND_LBRACK] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_DOLLARif] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_BANGis] = ACTIONS(3260), - [anon_sym_in] = ACTIONS(3262), - [anon_sym_BANGin] = ACTIONS(3260), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_select] = ACTIONS(3262), - [anon_sym_lock] = ACTIONS(3262), - [anon_sym_rlock] = ACTIONS(3262), - [anon_sym_unsafe] = ACTIONS(3262), - [anon_sym_sql] = ACTIONS(3262), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(3260), - [sym_rune_literal] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_c_SQUOTE] = ACTIONS(3260), - [anon_sym_c_DQUOTE] = ACTIONS(3260), - [anon_sym_r_SQUOTE] = ACTIONS(3260), - [anon_sym_r_DQUOTE] = ACTIONS(3260), - [sym_pseudo_compile_time_identifier] = ACTIONS(3262), - [anon_sym_shared] = ACTIONS(3262), - [anon_sym_map_LBRACK] = ACTIONS(3260), - [anon_sym_chan] = ACTIONS(3262), - [anon_sym_thread] = ACTIONS(3262), - [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_RBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_COLON] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3330), + [anon_sym_POUND_LBRACK] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3330), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3330), + [sym_rune_literal] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3330), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3330), + [anon_sym_r_DQUOTE] = ACTIONS(3330), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3330), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), }, [1593] = { [sym_line_comment] = STATE(1593), [sym_block_comment] = STATE(1593), - [sym_identifier] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_fn] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_EQ_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_mut] = ACTIONS(3294), - [anon_sym_COLON] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3294), - [anon_sym_json_DOTdecode] = ACTIONS(3292), - [anon_sym_PIPE] = ACTIONS(3294), - [anon_sym_LBRACK2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_CARET] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_LT_DASH] = ACTIONS(3292), - [anon_sym_LT_LT] = ACTIONS(3292), - [anon_sym_GT_GT] = ACTIONS(3294), - [anon_sym_GT_GT_GT] = ACTIONS(3292), - [anon_sym_AMP_CARET] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_or] = ACTIONS(3294), - [sym_none] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_nil] = ACTIONS(3294), - [anon_sym_QMARK_DOT] = ACTIONS(3292), - [anon_sym_POUND_LBRACK] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_DOLLARif] = ACTIONS(3294), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_select] = ACTIONS(3294), - [anon_sym_lock] = ACTIONS(3294), - [anon_sym_rlock] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_sql] = ACTIONS(3294), - [sym_int_literal] = ACTIONS(3294), - [sym_float_literal] = ACTIONS(3292), - [sym_rune_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_c_SQUOTE] = ACTIONS(3292), - [anon_sym_c_DQUOTE] = ACTIONS(3292), - [anon_sym_r_SQUOTE] = ACTIONS(3292), - [anon_sym_r_DQUOTE] = ACTIONS(3292), - [sym_pseudo_compile_time_identifier] = ACTIONS(3294), - [anon_sym_shared] = ACTIONS(3294), - [anon_sym_map_LBRACK] = ACTIONS(3292), - [anon_sym_chan] = ACTIONS(3294), - [anon_sym_thread] = ACTIONS(3294), - [anon_sym_atomic] = ACTIONS(3294), - }, - [1594] = { - [sym_line_comment] = STATE(1594), - [sym_block_comment] = STATE(1594), - [sym_identifier] = ACTIONS(2989), + [sym_identifier] = ACTIONS(3286), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2987), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_AMP_CARET] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2987), - [anon_sym_POUND_LBRACK] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2987), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2987), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2987), - [sym_rune_literal] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [anon_sym_c_SQUOTE] = ACTIONS(2987), - [anon_sym_c_DQUOTE] = ACTIONS(2987), - [anon_sym_r_SQUOTE] = ACTIONS(2987), - [anon_sym_r_DQUOTE] = ACTIONS(2987), - [sym_pseudo_compile_time_identifier] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2987), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(3286), + [anon_sym_as] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_COMMA] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_fn] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_LT_EQ] = ACTIONS(3284), + [anon_sym_GT_EQ] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_RBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_mut] = ACTIONS(3286), + [anon_sym_COLON] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_QMARK] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_go] = ACTIONS(3286), + [anon_sym_spawn] = ACTIONS(3286), + [anon_sym_json_DOTdecode] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LBRACK2] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_CARET] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_LT_DASH] = ACTIONS(3284), + [anon_sym_LT_LT] = ACTIONS(3284), + [anon_sym_GT_GT] = ACTIONS(3286), + [anon_sym_GT_GT_GT] = ACTIONS(3284), + [anon_sym_AMP_CARET] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_PIPE_PIPE] = ACTIONS(3284), + [anon_sym_or] = ACTIONS(3286), + [sym_none] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_nil] = ACTIONS(3286), + [anon_sym_QMARK_DOT] = ACTIONS(3284), + [anon_sym_POUND_LBRACK] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_DOLLARif] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3286), + [anon_sym_BANGis] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3284), + [anon_sym_match] = ACTIONS(3286), + [anon_sym_select] = ACTIONS(3286), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3286), + [anon_sym_sql] = ACTIONS(3286), + [sym_int_literal] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3284), + [sym_rune_literal] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_c_SQUOTE] = ACTIONS(3284), + [anon_sym_c_DQUOTE] = ACTIONS(3284), + [anon_sym_r_SQUOTE] = ACTIONS(3284), + [anon_sym_r_DQUOTE] = ACTIONS(3284), + [sym_pseudo_compile_time_identifier] = ACTIONS(3286), + [anon_sym_shared] = ACTIONS(3286), + [anon_sym_map_LBRACK] = ACTIONS(3284), + [anon_sym_chan] = ACTIONS(3286), + [anon_sym_thread] = ACTIONS(3286), + [anon_sym_atomic] = ACTIONS(3286), + }, + [1594] = { + [sym_line_comment] = STATE(1594), + [sym_block_comment] = STATE(1594), + [sym_identifier] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3280), + [anon_sym_as] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_COMMA] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_LT_EQ] = ACTIONS(3278), + [anon_sym_GT_EQ] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_RBRACK] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_mut] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [anon_sym_QMARK] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_go] = ACTIONS(3280), + [anon_sym_spawn] = ACTIONS(3280), + [anon_sym_json_DOTdecode] = ACTIONS(3278), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_LBRACK2] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_CARET] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_LT_DASH] = ACTIONS(3278), + [anon_sym_LT_LT] = ACTIONS(3278), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3278), + [anon_sym_AMP_CARET] = ACTIONS(3278), + [anon_sym_AMP_AMP] = ACTIONS(3278), + [anon_sym_PIPE_PIPE] = ACTIONS(3278), + [anon_sym_or] = ACTIONS(3280), + [sym_none] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_nil] = ACTIONS(3280), + [anon_sym_QMARK_DOT] = ACTIONS(3278), + [anon_sym_POUND_LBRACK] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_is] = ACTIONS(3280), + [anon_sym_BANGis] = ACTIONS(3278), + [anon_sym_in] = ACTIONS(3280), + [anon_sym_BANGin] = ACTIONS(3278), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_select] = ACTIONS(3280), + [anon_sym_lock] = ACTIONS(3280), + [anon_sym_rlock] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_sql] = ACTIONS(3280), + [sym_int_literal] = ACTIONS(3280), + [sym_float_literal] = ACTIONS(3278), + [sym_rune_literal] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_c_SQUOTE] = ACTIONS(3278), + [anon_sym_c_DQUOTE] = ACTIONS(3278), + [anon_sym_r_SQUOTE] = ACTIONS(3278), + [anon_sym_r_DQUOTE] = ACTIONS(3278), + [sym_pseudo_compile_time_identifier] = ACTIONS(3280), + [anon_sym_shared] = ACTIONS(3280), + [anon_sym_map_LBRACK] = ACTIONS(3278), + [anon_sym_chan] = ACTIONS(3280), + [anon_sym_thread] = ACTIONS(3280), + [anon_sym_atomic] = ACTIONS(3280), }, [1595] = { [sym_line_comment] = STATE(1595), @@ -196377,255 +196615,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1596] = { [sym_line_comment] = STATE(1596), [sym_block_comment] = STATE(1596), - [sym_identifier] = ACTIONS(3270), + [sym_identifier] = ACTIONS(2951), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_fn] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_mut] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_go] = ACTIONS(3270), - [anon_sym_spawn] = ACTIONS(3270), - [anon_sym_json_DOTdecode] = ACTIONS(3268), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_LBRACK2] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_CARET] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_LT_LT] = ACTIONS(3268), - [anon_sym_GT_GT] = ACTIONS(3270), - [anon_sym_GT_GT_GT] = ACTIONS(3268), - [anon_sym_AMP_CARET] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_or] = ACTIONS(3270), - [sym_none] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_nil] = ACTIONS(3270), - [anon_sym_QMARK_DOT] = ACTIONS(3268), - [anon_sym_POUND_LBRACK] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_DOLLARif] = ACTIONS(3270), - [anon_sym_is] = ACTIONS(3270), - [anon_sym_BANGis] = ACTIONS(3268), - [anon_sym_in] = ACTIONS(3270), - [anon_sym_BANGin] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_lock] = ACTIONS(3270), - [anon_sym_rlock] = ACTIONS(3270), - [anon_sym_unsafe] = ACTIONS(3270), - [anon_sym_sql] = ACTIONS(3270), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(3268), - [sym_rune_literal] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_c_SQUOTE] = ACTIONS(3268), - [anon_sym_c_DQUOTE] = ACTIONS(3268), - [anon_sym_r_SQUOTE] = ACTIONS(3268), - [anon_sym_r_DQUOTE] = ACTIONS(3268), - [sym_pseudo_compile_time_identifier] = ACTIONS(3270), - [anon_sym_shared] = ACTIONS(3270), - [anon_sym_map_LBRACK] = ACTIONS(3268), - [anon_sym_chan] = ACTIONS(3270), - [anon_sym_thread] = ACTIONS(3270), - [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_COMMA] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2949), + [anon_sym_BANG_EQ] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_RBRACK] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_mut] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_go] = ACTIONS(2951), + [anon_sym_spawn] = ACTIONS(2951), + [anon_sym_json_DOTdecode] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_LT_DASH] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2949), + [anon_sym_GT_GT] = ACTIONS(2951), + [anon_sym_GT_GT_GT] = ACTIONS(2949), + [anon_sym_AMP_CARET] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_PIPE_PIPE] = ACTIONS(2949), + [anon_sym_or] = ACTIONS(2951), + [sym_none] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_nil] = ACTIONS(2951), + [anon_sym_QMARK_DOT] = ACTIONS(2949), + [anon_sym_POUND_LBRACK] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_BANGis] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_BANGin] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_lock] = ACTIONS(2951), + [anon_sym_rlock] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_sql] = ACTIONS(2951), + [sym_int_literal] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2949), + [sym_rune_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_c_SQUOTE] = ACTIONS(2949), + [anon_sym_c_DQUOTE] = ACTIONS(2949), + [anon_sym_r_SQUOTE] = ACTIONS(2949), + [anon_sym_r_DQUOTE] = ACTIONS(2949), + [sym_pseudo_compile_time_identifier] = ACTIONS(2951), + [anon_sym_shared] = ACTIONS(2951), + [anon_sym_map_LBRACK] = ACTIONS(2949), + [anon_sym_chan] = ACTIONS(2951), + [anon_sym_thread] = ACTIONS(2951), + [anon_sym_atomic] = ACTIONS(2951), }, [1597] = { [sym_line_comment] = STATE(1597), [sym_block_comment] = STATE(1597), - [sym_identifier] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_LT_EQ] = ACTIONS(2945), - [anon_sym_GT_EQ] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_CARET] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_LT_LT] = ACTIONS(2945), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2945), - [anon_sym_AMP_CARET] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2945), - [anon_sym_POUND_LBRACK] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2945), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2945), - [sym_rune_literal] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_c_SQUOTE] = ACTIONS(2945), - [anon_sym_c_DQUOTE] = ACTIONS(2945), - [anon_sym_r_SQUOTE] = ACTIONS(2945), - [anon_sym_r_DQUOTE] = ACTIONS(2945), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2945), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_RBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_COLON] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2927), + [anon_sym_POUND_LBRACK] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2927), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2927), + [sym_rune_literal] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [anon_sym_c_SQUOTE] = ACTIONS(2927), + [anon_sym_c_DQUOTE] = ACTIONS(2927), + [anon_sym_r_SQUOTE] = ACTIONS(2927), + [anon_sym_r_DQUOTE] = ACTIONS(2927), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2927), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), }, [1598] = { [sym_line_comment] = STATE(1598), [sym_block_comment] = STATE(1598), - [sym_identifier] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_as] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_RBRACK] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_mut] = ACTIONS(2925), - [anon_sym_COLON] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2925), - [anon_sym_spawn] = ACTIONS(2925), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2925), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_nil] = ACTIONS(2925), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_DOLLARif] = ACTIONS(2925), - [anon_sym_is] = ACTIONS(2925), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_select] = ACTIONS(2925), - [anon_sym_lock] = ACTIONS(2925), - [anon_sym_rlock] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_sql] = ACTIONS(2925), - [sym_int_literal] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_c_SQUOTE] = ACTIONS(2923), - [anon_sym_c_DQUOTE] = ACTIONS(2923), - [anon_sym_r_SQUOTE] = ACTIONS(2923), - [anon_sym_r_DQUOTE] = ACTIONS(2923), - [sym_pseudo_compile_time_identifier] = ACTIONS(2925), - [anon_sym_shared] = ACTIONS(2925), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2925), - [anon_sym_thread] = ACTIONS(2925), - [anon_sym_atomic] = ACTIONS(2925), - }, - [1599] = { - [sym_line_comment] = STATE(1599), - [sym_block_comment] = STATE(1599), [sym_identifier] = ACTIONS(2881), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -196706,843 +196861,2171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2881), [anon_sym_atomic] = ACTIONS(2881), }, + [1599] = { + [sym_line_comment] = STATE(1599), + [sym_block_comment] = STATE(1599), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2381), + [anon_sym_BANG_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_CARET] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2381), + [anon_sym_AMP_CARET] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_PIPE_PIPE] = ACTIONS(2381), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2381), + [anon_sym_POUND_LBRACK] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2381), + [sym_rune_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [anon_sym_c_SQUOTE] = ACTIONS(2381), + [anon_sym_c_DQUOTE] = ACTIONS(2381), + [anon_sym_r_SQUOTE] = ACTIONS(2381), + [anon_sym_r_DQUOTE] = ACTIONS(2381), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2381), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + }, [1600] = { [sym_line_comment] = STATE(1600), [sym_block_comment] = STATE(1600), - [sym_identifier] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_COMMA] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2385), - [anon_sym_BANG_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2385), - [anon_sym_GT_EQ] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_RBRACK] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_COLON] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_QMARK] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_go] = ACTIONS(2387), - [anon_sym_spawn] = ACTIONS(2387), - [anon_sym_json_DOTdecode] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_LT_DASH] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_GT_GT] = ACTIONS(2387), - [anon_sym_GT_GT_GT] = ACTIONS(2385), - [anon_sym_AMP_CARET] = ACTIONS(2385), - [anon_sym_AMP_AMP] = ACTIONS(2385), - [anon_sym_PIPE_PIPE] = ACTIONS(2385), - [anon_sym_or] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_nil] = ACTIONS(2387), - [anon_sym_QMARK_DOT] = ACTIONS(2385), - [anon_sym_POUND_LBRACK] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_DOLLARif] = ACTIONS(2387), - [anon_sym_is] = ACTIONS(2387), - [anon_sym_BANGis] = ACTIONS(2385), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_BANGin] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_select] = ACTIONS(2387), - [anon_sym_lock] = ACTIONS(2387), - [anon_sym_rlock] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2385), - [sym_rune_literal] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [anon_sym_c_SQUOTE] = ACTIONS(2385), - [anon_sym_c_DQUOTE] = ACTIONS(2385), - [anon_sym_r_SQUOTE] = ACTIONS(2385), - [anon_sym_r_DQUOTE] = ACTIONS(2385), - [sym_pseudo_compile_time_identifier] = ACTIONS(2387), - [anon_sym_shared] = ACTIONS(2387), - [anon_sym_map_LBRACK] = ACTIONS(2385), - [anon_sym_chan] = ACTIONS(2387), - [anon_sym_thread] = ACTIONS(2387), - [anon_sym_atomic] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_AMP_CARET] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2637), + [anon_sym_POUND_LBRACK] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2637), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2637), + [sym_rune_literal] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_c_SQUOTE] = ACTIONS(2637), + [anon_sym_c_DQUOTE] = ACTIONS(2637), + [anon_sym_r_SQUOTE] = ACTIONS(2637), + [anon_sym_r_DQUOTE] = ACTIONS(2637), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2637), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), }, [1601] = { [sym_line_comment] = STATE(1601), [sym_block_comment] = STATE(1601), - [sym_identifier] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2631), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_as] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2635), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2635), - [anon_sym_BANG_EQ] = ACTIONS(2635), - [anon_sym_LT_EQ] = ACTIONS(2635), - [anon_sym_GT_EQ] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_mut] = ACTIONS(2637), - [anon_sym_COLON] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_go] = ACTIONS(2637), - [anon_sym_spawn] = ACTIONS(2637), - [anon_sym_json_DOTdecode] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LBRACK2] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2635), - [anon_sym_LT_LT] = ACTIONS(2635), - [anon_sym_GT_GT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2635), - [anon_sym_AMP_CARET] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_PIPE_PIPE] = ACTIONS(2635), - [anon_sym_or] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_nil] = ACTIONS(2637), - [anon_sym_QMARK_DOT] = ACTIONS(2635), - [anon_sym_POUND_LBRACK] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_DOLLARif] = ACTIONS(2637), - [anon_sym_is] = ACTIONS(2637), - [anon_sym_BANGis] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_BANGin] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_select] = ACTIONS(2637), - [anon_sym_lock] = ACTIONS(2637), - [anon_sym_rlock] = ACTIONS(2637), - [anon_sym_unsafe] = ACTIONS(2637), - [anon_sym_sql] = ACTIONS(2637), - [sym_int_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2635), - [sym_rune_literal] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_c_SQUOTE] = ACTIONS(2635), - [anon_sym_c_DQUOTE] = ACTIONS(2635), - [anon_sym_r_SQUOTE] = ACTIONS(2635), - [anon_sym_r_DQUOTE] = ACTIONS(2635), - [sym_pseudo_compile_time_identifier] = ACTIONS(2637), - [anon_sym_shared] = ACTIONS(2637), - [anon_sym_map_LBRACK] = ACTIONS(2635), - [anon_sym_chan] = ACTIONS(2637), - [anon_sym_thread] = ACTIONS(2637), - [anon_sym_atomic] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_COLON] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_go] = ACTIONS(2631), + [anon_sym_spawn] = ACTIONS(2631), + [anon_sym_json_DOTdecode] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2631), + [sym_none] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_nil] = ACTIONS(2631), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_DOLLARif] = ACTIONS(2631), + [anon_sym_is] = ACTIONS(2631), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_select] = ACTIONS(2631), + [anon_sym_lock] = ACTIONS(2631), + [anon_sym_rlock] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_sql] = ACTIONS(2631), + [sym_int_literal] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2629), + [sym_rune_literal] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_c_SQUOTE] = ACTIONS(2629), + [anon_sym_c_DQUOTE] = ACTIONS(2629), + [anon_sym_r_SQUOTE] = ACTIONS(2629), + [anon_sym_r_DQUOTE] = ACTIONS(2629), + [sym_pseudo_compile_time_identifier] = ACTIONS(2631), + [anon_sym_shared] = ACTIONS(2631), + [anon_sym_map_LBRACK] = ACTIONS(2629), + [anon_sym_chan] = ACTIONS(2631), + [anon_sym_thread] = ACTIONS(2631), + [anon_sym_atomic] = ACTIONS(2631), + }, + [1602] = { + [sym_line_comment] = STATE(1602), + [sym_block_comment] = STATE(1602), + [sym_identifier] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_RBRACK] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_COLON] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_QMARK] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_AMP_CARET] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_or] = ACTIONS(2627), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2625), + [anon_sym_POUND_LBRACK] = ACTIONS(2625), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2627), + [anon_sym_BANGis] = ACTIONS(2625), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_BANGin] = ACTIONS(2625), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2625), + [sym_rune_literal] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_c_SQUOTE] = ACTIONS(2625), + [anon_sym_c_DQUOTE] = ACTIONS(2625), + [anon_sym_r_SQUOTE] = ACTIONS(2625), + [anon_sym_r_DQUOTE] = ACTIONS(2625), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2625), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + }, + [1603] = { + [sym_line_comment] = STATE(1603), + [sym_block_comment] = STATE(1603), + [sym_identifier] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_c_SQUOTE] = ACTIONS(2463), + [anon_sym_c_DQUOTE] = ACTIONS(2463), + [anon_sym_r_SQUOTE] = ACTIONS(2463), + [anon_sym_r_DQUOTE] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + }, + [1604] = { + [sym_line_comment] = STATE(1604), + [sym_block_comment] = STATE(1604), + [sym_type_parameters] = STATE(4409), + [sym_argument_list] = STATE(1682), + [sym_or_block] = STATE(1683), + [sym_identifier] = ACTIONS(4243), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_as] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_fn] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4249), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(4243), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(4243), + [anon_sym_spawn] = ACTIONS(4243), + [anon_sym_json_DOTdecode] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_LBRACK2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(4247), + [anon_sym_LT_LT] = ACTIONS(4251), + [anon_sym_GT_GT] = ACTIONS(4253), + [anon_sym_GT_GT_GT] = ACTIONS(4251), + [anon_sym_AMP_CARET] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_or] = ACTIONS(4271), + [sym_none] = ACTIONS(4243), + [sym_true] = ACTIONS(4243), + [sym_false] = ACTIONS(4243), + [sym_nil] = ACTIONS(4243), + [anon_sym_QMARK_DOT] = ACTIONS(4237), + [anon_sym_POUND_LBRACK] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4243), + [anon_sym_DOLLARif] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4273), + [anon_sym_BANGis] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4277), + [anon_sym_BANGin] = ACTIONS(4279), + [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(4247), + [sym_rune_literal] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_c_SQUOTE] = ACTIONS(4247), + [anon_sym_c_DQUOTE] = ACTIONS(4247), + [anon_sym_r_SQUOTE] = ACTIONS(4247), + [anon_sym_r_DQUOTE] = ACTIONS(4247), + [sym_pseudo_compile_time_identifier] = ACTIONS(4243), + [anon_sym_shared] = ACTIONS(4243), + [anon_sym_map_LBRACK] = ACTIONS(4247), + [anon_sym_chan] = ACTIONS(4243), + [anon_sym_thread] = ACTIONS(4243), + [anon_sym_atomic] = ACTIONS(4243), + }, + [1605] = { + [sym_line_comment] = STATE(1605), + [sym_block_comment] = STATE(1605), + [sym_identifier] = ACTIONS(2647), + [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_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_mut] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_AMP_CARET] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2645), + [anon_sym_POUND_LBRACK] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2645), + [sym_rune_literal] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_c_SQUOTE] = ACTIONS(2645), + [anon_sym_c_DQUOTE] = ACTIONS(2645), + [anon_sym_r_SQUOTE] = ACTIONS(2645), + [anon_sym_r_DQUOTE] = ACTIONS(2645), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2645), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + }, + [1606] = { + [sym_line_comment] = STATE(1606), + [sym_block_comment] = STATE(1606), + [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_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_PIPE] = ACTIONS(2651), + [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), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_c_SQUOTE] = ACTIONS(2649), + [anon_sym_c_DQUOTE] = ACTIONS(2649), + [anon_sym_r_SQUOTE] = ACTIONS(2649), + [anon_sym_r_DQUOTE] = 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), + }, + [1607] = { + [sym_line_comment] = STATE(1607), + [sym_block_comment] = STATE(1607), + [sym_identifier] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_c_SQUOTE] = ACTIONS(3043), + [anon_sym_c_DQUOTE] = ACTIONS(3043), + [anon_sym_r_SQUOTE] = ACTIONS(3043), + [anon_sym_r_DQUOTE] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + }, + [1608] = { + [sym_line_comment] = STATE(1608), + [sym_block_comment] = STATE(1608), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2399), + [anon_sym_AMP_CARET] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2399), + [anon_sym_POUND_LBRACK] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2399), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2399), + [sym_rune_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_c_SQUOTE] = ACTIONS(2399), + [anon_sym_c_DQUOTE] = ACTIONS(2399), + [anon_sym_r_SQUOTE] = ACTIONS(2399), + [anon_sym_r_DQUOTE] = ACTIONS(2399), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2399), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + }, + [1609] = { + [sym_line_comment] = STATE(1609), + [sym_block_comment] = STATE(1609), + [sym_identifier] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_AMP_CARET] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [anon_sym_c_SQUOTE] = ACTIONS(2983), + [anon_sym_c_DQUOTE] = ACTIONS(2983), + [anon_sym_r_SQUOTE] = ACTIONS(2983), + [anon_sym_r_DQUOTE] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + }, + [1610] = { + [sym_line_comment] = STATE(1610), + [sym_block_comment] = STATE(1610), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_RBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_AMP_CARET] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2667), + [anon_sym_POUND_LBRACK] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2667), + [sym_rune_literal] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_c_SQUOTE] = ACTIONS(2667), + [anon_sym_c_DQUOTE] = ACTIONS(2667), + [anon_sym_r_SQUOTE] = ACTIONS(2667), + [anon_sym_r_DQUOTE] = ACTIONS(2667), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2667), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + }, + [1611] = { + [sym_line_comment] = STATE(1611), + [sym_block_comment] = STATE(1611), + [sym_identifier] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2933), + [anon_sym_BANG_EQ] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_RBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_COLON] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2933), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2933), + [anon_sym_AMP_CARET] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_PIPE_PIPE] = ACTIONS(2933), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2933), + [anon_sym_POUND_LBRACK] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2933), + [sym_rune_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_c_SQUOTE] = ACTIONS(2933), + [anon_sym_c_DQUOTE] = ACTIONS(2933), + [anon_sym_r_SQUOTE] = ACTIONS(2933), + [anon_sym_r_DQUOTE] = ACTIONS(2933), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2933), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + }, + [1612] = { + [sym_line_comment] = STATE(1612), + [sym_block_comment] = STATE(1612), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_COLON] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3059), + [anon_sym_POUND_LBRACK] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3059), + [sym_rune_literal] = ACTIONS(3059), + [anon_sym_SQUOTE] = ACTIONS(3059), + [anon_sym_DQUOTE] = ACTIONS(3059), + [anon_sym_c_SQUOTE] = ACTIONS(3059), + [anon_sym_c_DQUOTE] = ACTIONS(3059), + [anon_sym_r_SQUOTE] = ACTIONS(3059), + [anon_sym_r_DQUOTE] = ACTIONS(3059), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3059), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + }, + [1613] = { + [sym_line_comment] = STATE(1613), + [sym_block_comment] = STATE(1613), + [sym_identifier] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(2999), + [anon_sym_AMP_CARET] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [anon_sym_c_SQUOTE] = ACTIONS(2999), + [anon_sym_c_DQUOTE] = ACTIONS(2999), + [anon_sym_r_SQUOTE] = ACTIONS(2999), + [anon_sym_r_DQUOTE] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1614] = { + [sym_line_comment] = STATE(1614), + [sym_block_comment] = STATE(1614), + [sym_identifier] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_RBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3047), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3047), + [sym_rune_literal] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(3047), + [anon_sym_c_SQUOTE] = ACTIONS(3047), + [anon_sym_c_DQUOTE] = ACTIONS(3047), + [anon_sym_r_SQUOTE] = ACTIONS(3047), + [anon_sym_r_DQUOTE] = ACTIONS(3047), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + }, + [1615] = { + [sym_line_comment] = STATE(1615), + [sym_block_comment] = STATE(1615), + [sym_identifier] = ACTIONS(3055), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_RBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3053), + [anon_sym_AMP_CARET] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3053), + [sym_rune_literal] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [anon_sym_c_SQUOTE] = ACTIONS(3053), + [anon_sym_c_DQUOTE] = ACTIONS(3053), + [anon_sym_r_SQUOTE] = ACTIONS(3053), + [anon_sym_r_DQUOTE] = ACTIONS(3053), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + }, + [1616] = { + [sym_line_comment] = STATE(1616), + [sym_block_comment] = STATE(1616), + [sym_identifier] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_RBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2959), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_CARET] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2959), + [anon_sym_POUND_LBRACK] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2959), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2959), + [sym_rune_literal] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_c_SQUOTE] = ACTIONS(2959), + [anon_sym_c_DQUOTE] = ACTIONS(2959), + [anon_sym_r_SQUOTE] = ACTIONS(2959), + [anon_sym_r_DQUOTE] = ACTIONS(2959), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2959), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), }, - [1602] = { - [sym_line_comment] = STATE(1602), - [sym_block_comment] = STATE(1602), - [sym_identifier] = ACTIONS(2633), + [1617] = { + [sym_line_comment] = STATE(1617), + [sym_block_comment] = STATE(1617), + [sym_identifier] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_as] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_COMMA] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2631), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2631), - [anon_sym_BANG_EQ] = ACTIONS(2631), - [anon_sym_LT_EQ] = ACTIONS(2631), - [anon_sym_GT_EQ] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_RBRACK] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_mut] = ACTIONS(2633), - [anon_sym_COLON] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_QMARK] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_go] = ACTIONS(2633), - [anon_sym_spawn] = ACTIONS(2633), - [anon_sym_json_DOTdecode] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_CARET] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2631), - [anon_sym_LT_LT] = ACTIONS(2631), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2631), - [anon_sym_AMP_CARET] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_PIPE_PIPE] = ACTIONS(2631), - [anon_sym_or] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_nil] = ACTIONS(2633), - [anon_sym_QMARK_DOT] = ACTIONS(2631), - [anon_sym_POUND_LBRACK] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_DOLLARif] = ACTIONS(2633), - [anon_sym_is] = ACTIONS(2633), - [anon_sym_BANGis] = ACTIONS(2631), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_BANGin] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_select] = ACTIONS(2633), - [anon_sym_lock] = ACTIONS(2633), - [anon_sym_rlock] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_sql] = ACTIONS(2633), - [sym_int_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2631), - [sym_rune_literal] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [anon_sym_c_SQUOTE] = ACTIONS(2631), - [anon_sym_c_DQUOTE] = ACTIONS(2631), - [anon_sym_r_SQUOTE] = ACTIONS(2631), - [anon_sym_r_DQUOTE] = ACTIONS(2631), - [sym_pseudo_compile_time_identifier] = ACTIONS(2633), - [anon_sym_shared] = ACTIONS(2633), - [anon_sym_map_LBRACK] = ACTIONS(2631), - [anon_sym_chan] = ACTIONS(2633), - [anon_sym_thread] = ACTIONS(2633), - [anon_sym_atomic] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_RBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_c_SQUOTE] = ACTIONS(2971), + [anon_sym_c_DQUOTE] = ACTIONS(2971), + [anon_sym_r_SQUOTE] = ACTIONS(2971), + [anon_sym_r_DQUOTE] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), }, - [1603] = { - [sym_line_comment] = STATE(1603), - [sym_block_comment] = STATE(1603), - [sym_type_parameters] = STATE(4408), - [sym_argument_list] = STATE(1675), - [sym_or_block] = STATE(1679), - [sym_identifier] = ACTIONS(4247), + [1618] = { + [sym_line_comment] = STATE(1618), + [sym_block_comment] = STATE(1618), + [sym_identifier] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_as] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_fn] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4255), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4259), - [anon_sym_EQ_EQ] = ACTIONS(4261), - [anon_sym_BANG_EQ] = ACTIONS(4261), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_struct] = ACTIONS(4247), - [anon_sym_mut] = ACTIONS(4247), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4235), - [anon_sym_go] = ACTIONS(4247), - [anon_sym_spawn] = ACTIONS(4247), - [anon_sym_json_DOTdecode] = ACTIONS(4251), - [anon_sym_PIPE] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_LT_DASH] = ACTIONS(4251), - [anon_sym_LT_LT] = ACTIONS(4255), - [anon_sym_GT_GT] = ACTIONS(4257), - [anon_sym_GT_GT_GT] = ACTIONS(4255), - [anon_sym_AMP_CARET] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_or] = ACTIONS(4275), - [sym_none] = ACTIONS(4247), - [sym_true] = ACTIONS(4247), - [sym_false] = ACTIONS(4247), - [sym_nil] = ACTIONS(4247), - [anon_sym_QMARK_DOT] = ACTIONS(4239), - [anon_sym_POUND_LBRACK] = ACTIONS(4241), - [anon_sym_if] = ACTIONS(4247), - [anon_sym_DOLLARif] = ACTIONS(4247), - [anon_sym_is] = ACTIONS(4277), - [anon_sym_BANGis] = ACTIONS(4279), - [anon_sym_in] = ACTIONS(4281), - [anon_sym_BANGin] = ACTIONS(4283), - [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(4251), - [sym_rune_literal] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4251), - [anon_sym_DQUOTE] = ACTIONS(4251), - [anon_sym_c_SQUOTE] = ACTIONS(4251), - [anon_sym_c_DQUOTE] = ACTIONS(4251), - [anon_sym_r_SQUOTE] = ACTIONS(4251), - [anon_sym_r_DQUOTE] = ACTIONS(4251), - [sym_pseudo_compile_time_identifier] = ACTIONS(4247), - [anon_sym_shared] = ACTIONS(4247), - [anon_sym_map_LBRACK] = ACTIONS(4251), - [anon_sym_chan] = ACTIONS(4247), - [anon_sym_thread] = ACTIONS(4247), - [anon_sym_atomic] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2451), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2451), + [anon_sym_BANG_EQ] = ACTIONS(2451), + [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_GT_EQ] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_RBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_COLON] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_CARET] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2451), + [anon_sym_LT_LT] = ACTIONS(2451), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2451), + [anon_sym_AMP_CARET] = ACTIONS(2451), + [anon_sym_AMP_AMP] = ACTIONS(2451), + [anon_sym_PIPE_PIPE] = ACTIONS(2451), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2451), + [anon_sym_POUND_LBRACK] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2451), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2451), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2451), + [sym_rune_literal] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [anon_sym_c_SQUOTE] = ACTIONS(2451), + [anon_sym_c_DQUOTE] = ACTIONS(2451), + [anon_sym_r_SQUOTE] = ACTIONS(2451), + [anon_sym_r_DQUOTE] = ACTIONS(2451), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2451), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), }, - [1604] = { - [sym_line_comment] = STATE(1604), - [sym_block_comment] = STATE(1604), - [sym_identifier] = ACTIONS(2627), + [1619] = { + [sym_line_comment] = STATE(1619), + [sym_block_comment] = STATE(1619), + [sym_identifier] = ACTIONS(3027), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2627), - [anon_sym_as] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_PLUS] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2627), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_GT] = ACTIONS(2627), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_mut] = ACTIONS(2627), - [anon_sym_COLON] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_QMARK] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_go] = ACTIONS(2627), - [anon_sym_spawn] = ACTIONS(2627), - [anon_sym_json_DOTdecode] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT] = ACTIONS(2627), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_AMP_CARET] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2627), - [sym_none] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [sym_nil] = ACTIONS(2627), - [anon_sym_QMARK_DOT] = ACTIONS(2625), - [anon_sym_POUND_LBRACK] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_DOLLARif] = ACTIONS(2627), - [anon_sym_is] = ACTIONS(2627), - [anon_sym_BANGis] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2627), - [anon_sym_BANGin] = ACTIONS(2625), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_select] = ACTIONS(2627), - [anon_sym_lock] = ACTIONS(2627), - [anon_sym_rlock] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_sql] = ACTIONS(2627), - [sym_int_literal] = ACTIONS(2627), - [sym_float_literal] = ACTIONS(2625), - [sym_rune_literal] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_c_SQUOTE] = ACTIONS(2625), - [anon_sym_c_DQUOTE] = ACTIONS(2625), - [anon_sym_r_SQUOTE] = ACTIONS(2625), - [anon_sym_r_DQUOTE] = ACTIONS(2625), - [sym_pseudo_compile_time_identifier] = ACTIONS(2627), - [anon_sym_shared] = ACTIONS(2627), - [anon_sym_map_LBRACK] = ACTIONS(2625), - [anon_sym_chan] = ACTIONS(2627), - [anon_sym_thread] = ACTIONS(2627), - [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3025), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_COLON] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_DASH_DASH] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3025), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3025), + [anon_sym_AMP_CARET] = ACTIONS(3025), + [anon_sym_AMP_AMP] = ACTIONS(3025), + [anon_sym_PIPE_PIPE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3025), + [anon_sym_POUND_LBRACK] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3025), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3025), + [sym_rune_literal] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3025), + [anon_sym_c_SQUOTE] = ACTIONS(3025), + [anon_sym_c_DQUOTE] = ACTIONS(3025), + [anon_sym_r_SQUOTE] = ACTIONS(3025), + [anon_sym_r_DQUOTE] = ACTIONS(3025), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3025), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), }, - [1605] = { - [sym_line_comment] = STATE(1605), - [sym_block_comment] = STATE(1605), - [sym_identifier] = ACTIONS(2815), + [1620] = { + [sym_line_comment] = STATE(1620), + [sym_block_comment] = STATE(1620), + [sym_identifier] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_COLON] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2813), - [anon_sym_LT_LT] = ACTIONS(2813), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2813), - [anon_sym_AMP_CARET] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2813), - [sym_rune_literal] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [anon_sym_c_SQUOTE] = ACTIONS(2813), - [anon_sym_c_DQUOTE] = ACTIONS(2813), - [anon_sym_r_SQUOTE] = ACTIONS(2813), - [anon_sym_r_DQUOTE] = ACTIONS(2813), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3248), + [anon_sym_AMP_CARET] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3248), + [anon_sym_POUND_LBRACK] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3248), + [sym_rune_literal] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_c_SQUOTE] = ACTIONS(3248), + [anon_sym_c_DQUOTE] = ACTIONS(3248), + [anon_sym_r_SQUOTE] = ACTIONS(3248), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3248), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), }, - [1606] = { - [sym_line_comment] = STATE(1606), - [sym_block_comment] = STATE(1606), - [sym_identifier] = ACTIONS(2373), + [1621] = { + [sym_line_comment] = STATE(1621), + [sym_block_comment] = STATE(1621), + [sym_identifier] = ACTIONS(3256), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2373), - [anon_sym_PERCENT] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2371), - [anon_sym_BANG_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_COLON] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_go] = ACTIONS(2373), - [anon_sym_spawn] = ACTIONS(2373), - [anon_sym_json_DOTdecode] = ACTIONS(2371), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_LBRACK2] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_LT_DASH] = ACTIONS(2371), - [anon_sym_LT_LT] = ACTIONS(2371), - [anon_sym_GT_GT] = ACTIONS(2373), - [anon_sym_GT_GT_GT] = ACTIONS(2371), - [anon_sym_AMP_CARET] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2371), - [anon_sym_PIPE_PIPE] = ACTIONS(2371), - [anon_sym_or] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_nil] = ACTIONS(2373), - [anon_sym_QMARK_DOT] = ACTIONS(2371), - [anon_sym_POUND_LBRACK] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2373), - [anon_sym_is] = ACTIONS(2373), - [anon_sym_BANGis] = ACTIONS(2371), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_BANGin] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_select] = ACTIONS(2373), - [anon_sym_lock] = ACTIONS(2373), - [anon_sym_rlock] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_sql] = ACTIONS(2373), - [sym_int_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2371), - [sym_rune_literal] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [anon_sym_c_SQUOTE] = ACTIONS(2371), - [anon_sym_c_DQUOTE] = ACTIONS(2371), - [anon_sym_r_SQUOTE] = ACTIONS(2371), - [anon_sym_r_DQUOTE] = ACTIONS(2371), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2373), - [anon_sym_map_LBRACK] = ACTIONS(2371), - [anon_sym_chan] = ACTIONS(2373), - [anon_sym_thread] = ACTIONS(2373), - [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_as] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_mut] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_QMARK] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_go] = ACTIONS(3256), + [anon_sym_spawn] = ACTIONS(3256), + [anon_sym_json_DOTdecode] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3256), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_LT_DASH] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_GT_GT_GT] = ACTIONS(3254), + [anon_sym_AMP_CARET] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3256), + [sym_none] = ACTIONS(3256), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_nil] = ACTIONS(3256), + [anon_sym_QMARK_DOT] = ACTIONS(3254), + [anon_sym_POUND_LBRACK] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_DOLLARif] = ACTIONS(3256), + [anon_sym_is] = ACTIONS(3256), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3256), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_select] = ACTIONS(3256), + [anon_sym_lock] = ACTIONS(3256), + [anon_sym_rlock] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3256), + [sym_int_literal] = ACTIONS(3256), + [sym_float_literal] = ACTIONS(3254), + [sym_rune_literal] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_c_SQUOTE] = ACTIONS(3254), + [anon_sym_c_DQUOTE] = ACTIONS(3254), + [anon_sym_r_SQUOTE] = ACTIONS(3254), + [anon_sym_r_DQUOTE] = ACTIONS(3254), + [sym_pseudo_compile_time_identifier] = ACTIONS(3256), + [anon_sym_shared] = ACTIONS(3256), + [anon_sym_map_LBRACK] = ACTIONS(3254), + [anon_sym_chan] = ACTIONS(3256), + [anon_sym_thread] = ACTIONS(3256), + [anon_sym_atomic] = ACTIONS(3256), }, - [1607] = { - [sym_line_comment] = STATE(1607), - [sym_block_comment] = STATE(1607), - [sym_identifier] = ACTIONS(2643), + [1622] = { + [sym_line_comment] = STATE(1622), + [sym_block_comment] = STATE(1622), + [sym_identifier] = ACTIONS(3274), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_AMP_CARET] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2641), - [anon_sym_POUND_LBRACK] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2641), - [sym_rune_literal] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_c_SQUOTE] = ACTIONS(2641), - [anon_sym_c_DQUOTE] = ACTIONS(2641), - [anon_sym_r_SQUOTE] = ACTIONS(2641), - [anon_sym_r_DQUOTE] = ACTIONS(2641), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2641), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_fn] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_mut] = ACTIONS(3274), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_go] = ACTIONS(3274), + [anon_sym_spawn] = ACTIONS(3274), + [anon_sym_json_DOTdecode] = ACTIONS(3272), + [anon_sym_PIPE] = ACTIONS(3274), + [anon_sym_LBRACK2] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_CARET] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3272), + [anon_sym_LT_LT] = ACTIONS(3272), + [anon_sym_GT_GT] = ACTIONS(3274), + [anon_sym_GT_GT_GT] = ACTIONS(3272), + [anon_sym_AMP_CARET] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(3274), + [sym_none] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_nil] = ACTIONS(3274), + [anon_sym_QMARK_DOT] = ACTIONS(3272), + [anon_sym_POUND_LBRACK] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_DOLLARif] = ACTIONS(3274), + [anon_sym_is] = ACTIONS(3274), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3274), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_select] = ACTIONS(3274), + [anon_sym_lock] = ACTIONS(3274), + [anon_sym_rlock] = ACTIONS(3274), + [anon_sym_unsafe] = ACTIONS(3274), + [anon_sym_sql] = ACTIONS(3274), + [sym_int_literal] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(3272), + [sym_rune_literal] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_c_SQUOTE] = ACTIONS(3272), + [anon_sym_c_DQUOTE] = ACTIONS(3272), + [anon_sym_r_SQUOTE] = ACTIONS(3272), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), + [anon_sym_shared] = ACTIONS(3274), + [anon_sym_map_LBRACK] = ACTIONS(3272), + [anon_sym_chan] = ACTIONS(3274), + [anon_sym_thread] = ACTIONS(3274), + [anon_sym_atomic] = ACTIONS(3274), }, - [1608] = { - [sym_line_comment] = STATE(1608), - [sym_block_comment] = STATE(1608), - [sym_identifier] = ACTIONS(2997), + [1623] = { + [sym_line_comment] = STATE(1623), + [sym_block_comment] = STATE(1623), + [sym_identifier] = ACTIONS(2377), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_RBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2995), - [anon_sym_AMP_CARET] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_PIPE_PIPE] = ACTIONS(2995), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2995), - [anon_sym_POUND_LBRACK] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2995), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2995), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2995), - [sym_rune_literal] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_c_SQUOTE] = ACTIONS(2995), - [anon_sym_c_DQUOTE] = ACTIONS(2995), - [anon_sym_r_SQUOTE] = ACTIONS(2995), - [anon_sym_r_DQUOTE] = ACTIONS(2995), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2995), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_SLASH] = ACTIONS(2377), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2375), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_COLON] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_go] = ACTIONS(2377), + [anon_sym_spawn] = ACTIONS(2377), + [anon_sym_json_DOTdecode] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK2] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_LT_DASH] = ACTIONS(2375), + [anon_sym_LT_LT] = ACTIONS(2375), + [anon_sym_GT_GT] = ACTIONS(2377), + [anon_sym_GT_GT_GT] = ACTIONS(2375), + [anon_sym_AMP_CARET] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_PIPE_PIPE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2377), + [sym_none] = ACTIONS(2377), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [sym_nil] = ACTIONS(2377), + [anon_sym_QMARK_DOT] = ACTIONS(2375), + [anon_sym_POUND_LBRACK] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_DOLLARif] = ACTIONS(2377), + [anon_sym_is] = ACTIONS(2377), + [anon_sym_BANGis] = ACTIONS(2375), + [anon_sym_in] = ACTIONS(2377), + [anon_sym_BANGin] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_select] = ACTIONS(2377), + [anon_sym_lock] = ACTIONS(2377), + [anon_sym_rlock] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_sql] = ACTIONS(2377), + [sym_int_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2375), + [sym_rune_literal] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [anon_sym_c_SQUOTE] = ACTIONS(2375), + [anon_sym_c_DQUOTE] = ACTIONS(2375), + [anon_sym_r_SQUOTE] = ACTIONS(2375), + [anon_sym_r_DQUOTE] = ACTIONS(2375), + [sym_pseudo_compile_time_identifier] = ACTIONS(2377), + [anon_sym_shared] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2375), + [anon_sym_chan] = ACTIONS(2377), + [anon_sym_thread] = ACTIONS(2377), + [anon_sym_atomic] = ACTIONS(2377), }, - [1609] = { - [sym_line_comment] = STATE(1609), - [sym_block_comment] = STATE(1609), - [sym_identifier] = ACTIONS(2433), + [1624] = { + [sym_line_comment] = STATE(1624), + [sym_block_comment] = STATE(1624), + [sym_identifier] = ACTIONS(3336), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_EQ_EQ] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_RBRACK] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_COLON] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2431), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2433), - [anon_sym_GT_GT_GT] = ACTIONS(2431), - [anon_sym_AMP_CARET] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_PIPE_PIPE] = ACTIONS(2431), - [anon_sym_or] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_QMARK_DOT] = ACTIONS(2431), - [anon_sym_POUND_LBRACK] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_is] = ACTIONS(2433), - [anon_sym_BANGis] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_BANGin] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2431), - [sym_rune_literal] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_c_SQUOTE] = ACTIONS(2431), - [anon_sym_c_DQUOTE] = ACTIONS(2431), - [anon_sym_r_SQUOTE] = ACTIONS(2431), - [anon_sym_r_DQUOTE] = ACTIONS(2431), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2431), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3334), + [anon_sym_POUND_LBRACK] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_c_SQUOTE] = ACTIONS(3334), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3334), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), }, - [1610] = { - [sym_line_comment] = STATE(1610), - [sym_block_comment] = STATE(1610), + [1625] = { + [sym_line_comment] = STATE(1625), + [sym_block_comment] = STATE(1625), [sym_identifier] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_DOT] = ACTIONS(3031), [anon_sym_as] = ACTIONS(3031), [anon_sym_LBRACE] = ACTIONS(3029), [anon_sym_COMMA] = ACTIONS(3029), @@ -197619,258 +199102,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3031), [anon_sym_atomic] = ACTIONS(3031), }, - [1611] = { - [sym_line_comment] = STATE(1611), - [sym_block_comment] = STATE(1611), - [sym_identifier] = ACTIONS(3060), + [1626] = { + [sym_line_comment] = STATE(1626), + [sym_block_comment] = STATE(1626), + [sym_identifier] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3060), - [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(3058), - [anon_sym_RBRACK] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_mut] = ACTIONS(3060), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_go] = ACTIONS(3060), - [anon_sym_spawn] = ACTIONS(3060), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3060), - [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(3060), - [sym_none] = ACTIONS(3060), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_nil] = ACTIONS(3060), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_DOLLARif] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3060), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_select] = ACTIONS(3060), - [anon_sym_lock] = ACTIONS(3060), - [anon_sym_rlock] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_sql] = ACTIONS(3060), - [sym_int_literal] = ACTIONS(3060), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_c_SQUOTE] = ACTIONS(3058), - [anon_sym_c_DQUOTE] = ACTIONS(3058), - [anon_sym_r_SQUOTE] = ACTIONS(3058), - [anon_sym_r_DQUOTE] = ACTIONS(3058), - [sym_pseudo_compile_time_identifier] = ACTIONS(3060), - [anon_sym_shared] = ACTIONS(3060), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3060), - [anon_sym_thread] = ACTIONS(3060), - [anon_sym_atomic] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_as] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3039), + [anon_sym_LT_EQ] = ACTIONS(3039), + [anon_sym_GT_EQ] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_RBRACK] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3039), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3039), + [anon_sym_AMP_CARET] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_or] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_QMARK_DOT] = ACTIONS(3039), + [anon_sym_POUND_LBRACK] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_is] = ACTIONS(3041), + [anon_sym_BANGis] = ACTIONS(3039), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_BANGin] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3039), + [sym_rune_literal] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_c_SQUOTE] = ACTIONS(3039), + [anon_sym_c_DQUOTE] = ACTIONS(3039), + [anon_sym_r_SQUOTE] = ACTIONS(3039), + [anon_sym_r_DQUOTE] = ACTIONS(3039), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3039), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), }, - [1612] = { - [sym_line_comment] = STATE(1612), - [sym_block_comment] = STATE(1612), - [sym_identifier] = ACTIONS(3051), + [1627] = { + [sym_line_comment] = STATE(1627), + [sym_block_comment] = STATE(1627), + [sym_identifier] = ACTIONS(3340), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_COLON] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_SQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE] = ACTIONS(3049), - [anon_sym_c_SQUOTE] = ACTIONS(3049), - [anon_sym_c_DQUOTE] = ACTIONS(3049), - [anon_sym_r_SQUOTE] = ACTIONS(3049), - [anon_sym_r_DQUOTE] = ACTIONS(3049), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_RBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3338), + [anon_sym_POUND_LBRACK] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_c_SQUOTE] = ACTIONS(3338), + [anon_sym_c_DQUOTE] = ACTIONS(3338), + [anon_sym_r_SQUOTE] = ACTIONS(3338), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), }, - [1613] = { - [sym_line_comment] = STATE(1613), - [sym_block_comment] = STATE(1613), - [sym_identifier] = ACTIONS(3005), + [1628] = { + [sym_line_comment] = STATE(1628), + [sym_block_comment] = STATE(1628), + [sym_identifier] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3003), - [anon_sym_AMP_CARET] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3003), - [anon_sym_POUND_LBRACK] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3003), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3003), - [sym_rune_literal] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_c_SQUOTE] = ACTIONS(3003), - [anon_sym_c_DQUOTE] = ACTIONS(3003), - [anon_sym_r_SQUOTE] = ACTIONS(3003), - [anon_sym_r_DQUOTE] = ACTIONS(3003), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3003), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_COLON] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2371), + [anon_sym_LT_LT] = ACTIONS(2371), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2371), + [anon_sym_AMP_CARET] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2371), + [anon_sym_POUND_LBRACK] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), }, - [1614] = { - [sym_line_comment] = STATE(1614), - [sym_block_comment] = STATE(1614), + [1629] = { + [sym_line_comment] = STATE(1629), + [sym_block_comment] = STATE(1629), [sym_identifier] = ACTIONS(3080), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -197951,1005 +199434,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3080), [anon_sym_atomic] = ACTIONS(3080), }, - [1615] = { - [sym_line_comment] = STATE(1615), - [sym_block_comment] = STATE(1615), - [sym_identifier] = ACTIONS(2647), - [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_fn] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_LT_EQ] = ACTIONS(2645), - [anon_sym_GT_EQ] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_RBRACK] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_mut] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2647), - [anon_sym_spawn] = ACTIONS(2647), - [anon_sym_json_DOTdecode] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_GT_GT] = ACTIONS(2647), - [anon_sym_GT_GT_GT] = ACTIONS(2645), - [anon_sym_AMP_CARET] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_PIPE_PIPE] = ACTIONS(2645), - [anon_sym_or] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_nil] = ACTIONS(2647), - [anon_sym_QMARK_DOT] = ACTIONS(2645), - [anon_sym_POUND_LBRACK] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_DOLLARif] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2647), - [anon_sym_BANGis] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_BANGin] = ACTIONS(2645), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_select] = ACTIONS(2647), - [anon_sym_lock] = ACTIONS(2647), - [anon_sym_rlock] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_sql] = ACTIONS(2647), - [sym_int_literal] = ACTIONS(2647), - [sym_float_literal] = ACTIONS(2645), - [sym_rune_literal] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [anon_sym_c_SQUOTE] = ACTIONS(2645), - [anon_sym_c_DQUOTE] = ACTIONS(2645), - [anon_sym_r_SQUOTE] = ACTIONS(2645), - [anon_sym_r_DQUOTE] = ACTIONS(2645), - [sym_pseudo_compile_time_identifier] = ACTIONS(2647), - [anon_sym_shared] = ACTIONS(2647), - [anon_sym_map_LBRACK] = ACTIONS(2645), - [anon_sym_chan] = ACTIONS(2647), - [anon_sym_thread] = ACTIONS(2647), - [anon_sym_atomic] = ACTIONS(2647), - }, - [1616] = { - [sym_line_comment] = STATE(1616), - [sym_block_comment] = STATE(1616), - [sym_identifier] = ACTIONS(2935), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2933), - [anon_sym_BANG_EQ] = ACTIONS(2933), - [anon_sym_LT_EQ] = ACTIONS(2933), - [anon_sym_GT_EQ] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_CARET] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2933), - [anon_sym_LT_LT] = ACTIONS(2933), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_CARET] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_PIPE_PIPE] = ACTIONS(2933), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2933), - [anon_sym_POUND_LBRACK] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2933), - [sym_rune_literal] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [anon_sym_c_SQUOTE] = ACTIONS(2933), - [anon_sym_c_DQUOTE] = ACTIONS(2933), - [anon_sym_r_SQUOTE] = ACTIONS(2933), - [anon_sym_r_DQUOTE] = ACTIONS(2933), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2933), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - }, - [1617] = { - [sym_line_comment] = STATE(1617), - [sym_block_comment] = STATE(1617), - [sym_identifier] = ACTIONS(2957), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_LT_EQ] = ACTIONS(2955), - [anon_sym_GT_EQ] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_RBRACK] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_mut] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_go] = ACTIONS(2957), - [anon_sym_spawn] = ACTIONS(2957), - [anon_sym_json_DOTdecode] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_LT_DASH] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2955), - [anon_sym_GT_GT] = ACTIONS(2957), - [anon_sym_GT_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_CARET] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2957), - [sym_none] = ACTIONS(2957), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_nil] = ACTIONS(2957), - [anon_sym_QMARK_DOT] = ACTIONS(2955), - [anon_sym_POUND_LBRACK] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_DOLLARif] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_BANGis] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_BANGin] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2957), - [anon_sym_sql] = ACTIONS(2957), - [sym_int_literal] = ACTIONS(2957), - [sym_float_literal] = ACTIONS(2955), - [sym_rune_literal] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [anon_sym_c_SQUOTE] = ACTIONS(2955), - [anon_sym_c_DQUOTE] = ACTIONS(2955), - [anon_sym_r_SQUOTE] = ACTIONS(2955), - [anon_sym_r_DQUOTE] = ACTIONS(2955), - [sym_pseudo_compile_time_identifier] = ACTIONS(2957), - [anon_sym_shared] = ACTIONS(2957), - [anon_sym_map_LBRACK] = ACTIONS(2955), - [anon_sym_chan] = ACTIONS(2957), - [anon_sym_thread] = ACTIONS(2957), - [anon_sym_atomic] = ACTIONS(2957), - }, - [1618] = { - [sym_line_comment] = STATE(1618), - [sym_block_comment] = STATE(1618), - [sym_identifier] = ACTIONS(2447), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_COMMA] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_EQ_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(2445), - [anon_sym_GT_EQ] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_GT_GT] = ACTIONS(2447), - [anon_sym_GT_GT_GT] = ACTIONS(2445), - [anon_sym_AMP_CARET] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_PIPE_PIPE] = ACTIONS(2445), - [anon_sym_or] = ACTIONS(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_QMARK_DOT] = ACTIONS(2445), - [anon_sym_POUND_LBRACK] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_BANGis] = ACTIONS(2445), - [anon_sym_in] = ACTIONS(2447), - [anon_sym_BANGin] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2445), - [sym_rune_literal] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [anon_sym_c_SQUOTE] = ACTIONS(2445), - [anon_sym_c_DQUOTE] = ACTIONS(2445), - [anon_sym_r_SQUOTE] = ACTIONS(2445), - [anon_sym_r_DQUOTE] = ACTIONS(2445), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2445), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - }, - [1619] = { - [sym_line_comment] = STATE(1619), - [sym_block_comment] = STATE(1619), - [sym_identifier] = ACTIONS(3035), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3035), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_c_SQUOTE] = ACTIONS(3033), - [anon_sym_c_DQUOTE] = ACTIONS(3033), - [anon_sym_r_SQUOTE] = ACTIONS(3033), - [anon_sym_r_DQUOTE] = ACTIONS(3033), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - }, - [1620] = { - [sym_line_comment] = STATE(1620), - [sym_block_comment] = STATE(1620), - [sym_identifier] = ACTIONS(2977), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(2975), - [anon_sym_GT_EQ] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_CARET] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2975), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2975), - [anon_sym_AMP_CARET] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2975), - [anon_sym_POUND_LBRACK] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2975), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2975), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2975), - [sym_rune_literal] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [anon_sym_c_SQUOTE] = ACTIONS(2975), - [anon_sym_c_DQUOTE] = ACTIONS(2975), - [anon_sym_r_SQUOTE] = ACTIONS(2975), - [anon_sym_r_DQUOTE] = ACTIONS(2975), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2975), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - }, - [1621] = { - [sym_line_comment] = STATE(1621), - [sym_block_comment] = STATE(1621), - [sym_identifier] = ACTIONS(3254), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_as] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_CARET] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3252), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3252), - [anon_sym_AMP_CARET] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_or] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_QMARK_DOT] = ACTIONS(3252), - [anon_sym_POUND_LBRACK] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_is] = ACTIONS(3254), - [anon_sym_BANGis] = ACTIONS(3252), - [anon_sym_in] = ACTIONS(3254), - [anon_sym_BANGin] = ACTIONS(3252), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3252), - [sym_rune_literal] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_c_SQUOTE] = ACTIONS(3252), - [anon_sym_c_DQUOTE] = ACTIONS(3252), - [anon_sym_r_SQUOTE] = ACTIONS(3252), - [anon_sym_r_DQUOTE] = ACTIONS(3252), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3252), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - }, - [1622] = { - [sym_line_comment] = STATE(1622), - [sym_block_comment] = STATE(1622), - [sym_identifier] = ACTIONS(3278), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_fn] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_LT_EQ] = ACTIONS(3276), - [anon_sym_GT_EQ] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_RBRACK] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_mut] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_go] = ACTIONS(3278), - [anon_sym_spawn] = ACTIONS(3278), - [anon_sym_json_DOTdecode] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_LBRACK2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_CARET] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_LT_LT] = ACTIONS(3276), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_GT_GT_GT] = ACTIONS(3276), - [anon_sym_AMP_CARET] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_or] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_nil] = ACTIONS(3278), - [anon_sym_QMARK_DOT] = ACTIONS(3276), - [anon_sym_POUND_LBRACK] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3278), - [anon_sym_is] = ACTIONS(3278), - [anon_sym_BANGis] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3278), - [anon_sym_BANGin] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3278), - [anon_sym_select] = ACTIONS(3278), - [anon_sym_lock] = ACTIONS(3278), - [anon_sym_rlock] = ACTIONS(3278), - [anon_sym_unsafe] = ACTIONS(3278), - [anon_sym_sql] = ACTIONS(3278), - [sym_int_literal] = ACTIONS(3278), - [sym_float_literal] = ACTIONS(3276), - [sym_rune_literal] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_c_SQUOTE] = ACTIONS(3276), - [anon_sym_c_DQUOTE] = ACTIONS(3276), - [anon_sym_r_SQUOTE] = ACTIONS(3276), - [anon_sym_r_DQUOTE] = ACTIONS(3276), - [sym_pseudo_compile_time_identifier] = ACTIONS(3278), - [anon_sym_shared] = ACTIONS(3278), - [anon_sym_map_LBRACK] = ACTIONS(3276), - [anon_sym_chan] = ACTIONS(3278), - [anon_sym_thread] = ACTIONS(3278), - [anon_sym_atomic] = ACTIONS(3278), - }, - [1623] = { - [sym_line_comment] = STATE(1623), - [sym_block_comment] = STATE(1623), - [sym_identifier] = ACTIONS(3043), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_COLON] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3043), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3041), - [anon_sym_DQUOTE] = ACTIONS(3041), - [anon_sym_c_SQUOTE] = ACTIONS(3041), - [anon_sym_c_DQUOTE] = ACTIONS(3041), - [anon_sym_r_SQUOTE] = ACTIONS(3041), - [anon_sym_r_DQUOTE] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - }, - [1624] = { - [sym_line_comment] = STATE(1624), - [sym_block_comment] = STATE(1624), - [sym_identifier] = ACTIONS(2465), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_c_SQUOTE] = ACTIONS(2463), - [anon_sym_c_DQUOTE] = ACTIONS(2463), - [anon_sym_r_SQUOTE] = ACTIONS(2463), - [anon_sym_r_DQUOTE] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - }, - [1625] = { - [sym_line_comment] = STATE(1625), - [sym_block_comment] = STATE(1625), - [sym_identifier] = ACTIONS(3047), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3047), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_SQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE] = ACTIONS(3045), - [anon_sym_c_SQUOTE] = ACTIONS(3045), - [anon_sym_c_DQUOTE] = ACTIONS(3045), - [anon_sym_r_SQUOTE] = ACTIONS(3045), - [anon_sym_r_DQUOTE] = ACTIONS(3045), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - }, - [1626] = { - [sym_line_comment] = STATE(1626), - [sym_block_comment] = STATE(1626), - [sym_identifier] = ACTIONS(3332), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [anon_sym_EQ_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3330), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_COLON] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_CARET] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3330), - [anon_sym_LT_LT] = ACTIONS(3330), - [anon_sym_GT_GT] = ACTIONS(3332), - [anon_sym_GT_GT_GT] = ACTIONS(3330), - [anon_sym_AMP_CARET] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_or] = ACTIONS(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3330), - [anon_sym_POUND_LBRACK] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3330), - [sym_rune_literal] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_c_SQUOTE] = ACTIONS(3330), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3330), - [anon_sym_r_DQUOTE] = ACTIONS(3330), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3330), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - }, - [1627] = { - [sym_line_comment] = STATE(1627), - [sym_block_comment] = STATE(1627), + [1630] = { + [sym_line_comment] = STATE(1630), + [sym_block_comment] = STATE(1630), [sym_identifier] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -199030,1171 +199517,1005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3350), [anon_sym_atomic] = ACTIONS(3350), }, - [1628] = { - [sym_line_comment] = STATE(1628), - [sym_block_comment] = STATE(1628), - [sym_identifier] = ACTIONS(3346), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_fn] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3344), - [anon_sym_BANG_EQ] = ACTIONS(3344), - [anon_sym_LT_EQ] = ACTIONS(3344), - [anon_sym_GT_EQ] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_RBRACK] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_mut] = ACTIONS(3346), - [anon_sym_COLON] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_go] = ACTIONS(3346), - [anon_sym_spawn] = ACTIONS(3346), - [anon_sym_json_DOTdecode] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3344), - [anon_sym_GT_GT] = ACTIONS(3346), - [anon_sym_GT_GT_GT] = ACTIONS(3344), - [anon_sym_AMP_CARET] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(3344), - [anon_sym_PIPE_PIPE] = ACTIONS(3344), - [anon_sym_or] = ACTIONS(3346), - [sym_none] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_nil] = ACTIONS(3346), - [anon_sym_QMARK_DOT] = ACTIONS(3344), - [anon_sym_POUND_LBRACK] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_is] = ACTIONS(3346), - [anon_sym_BANGis] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3346), - [anon_sym_BANGin] = ACTIONS(3344), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_select] = ACTIONS(3346), - [anon_sym_lock] = ACTIONS(3346), - [anon_sym_rlock] = ACTIONS(3346), - [anon_sym_unsafe] = ACTIONS(3346), - [anon_sym_sql] = ACTIONS(3346), - [sym_int_literal] = ACTIONS(3346), - [sym_float_literal] = ACTIONS(3344), - [sym_rune_literal] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_c_SQUOTE] = ACTIONS(3344), - [anon_sym_c_DQUOTE] = ACTIONS(3344), - [anon_sym_r_SQUOTE] = ACTIONS(3344), - [anon_sym_r_DQUOTE] = ACTIONS(3344), - [sym_pseudo_compile_time_identifier] = ACTIONS(3346), - [anon_sym_shared] = ACTIONS(3346), - [anon_sym_map_LBRACK] = ACTIONS(3344), - [anon_sym_chan] = ACTIONS(3346), - [anon_sym_thread] = ACTIONS(3346), - [anon_sym_atomic] = ACTIONS(3346), - }, - [1629] = { - [sym_line_comment] = STATE(1629), - [sym_block_comment] = STATE(1629), - [sym_identifier] = ACTIONS(3324), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3324), - [anon_sym_as] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_COMMA] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_fn] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PERCENT] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_EQ_EQ] = ACTIONS(3322), - [anon_sym_BANG_EQ] = ACTIONS(3322), - [anon_sym_LT_EQ] = ACTIONS(3322), - [anon_sym_GT_EQ] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_RBRACK] = ACTIONS(3322), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_mut] = ACTIONS(3324), - [anon_sym_COLON] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_go] = ACTIONS(3324), - [anon_sym_spawn] = ACTIONS(3324), - [anon_sym_json_DOTdecode] = ACTIONS(3322), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_LBRACK2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_CARET] = ACTIONS(3322), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_LT_DASH] = ACTIONS(3322), - [anon_sym_LT_LT] = ACTIONS(3322), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3322), - [anon_sym_AMP_CARET] = ACTIONS(3322), - [anon_sym_AMP_AMP] = ACTIONS(3322), - [anon_sym_PIPE_PIPE] = ACTIONS(3322), - [anon_sym_or] = ACTIONS(3324), - [sym_none] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_nil] = ACTIONS(3324), - [anon_sym_QMARK_DOT] = ACTIONS(3322), - [anon_sym_POUND_LBRACK] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3324), - [anon_sym_is] = ACTIONS(3324), - [anon_sym_BANGis] = ACTIONS(3322), - [anon_sym_in] = ACTIONS(3324), - [anon_sym_BANGin] = ACTIONS(3322), - [anon_sym_match] = ACTIONS(3324), - [anon_sym_select] = ACTIONS(3324), - [anon_sym_lock] = ACTIONS(3324), - [anon_sym_rlock] = ACTIONS(3324), - [anon_sym_unsafe] = ACTIONS(3324), - [anon_sym_sql] = ACTIONS(3324), - [sym_int_literal] = ACTIONS(3324), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_c_SQUOTE] = ACTIONS(3322), - [anon_sym_c_DQUOTE] = ACTIONS(3322), - [anon_sym_r_SQUOTE] = ACTIONS(3322), - [anon_sym_r_DQUOTE] = ACTIONS(3322), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(3324), - [anon_sym_map_LBRACK] = ACTIONS(3322), - [anon_sym_chan] = ACTIONS(3324), - [anon_sym_thread] = ACTIONS(3324), - [anon_sym_atomic] = ACTIONS(3324), - }, - [1630] = { - [sym_line_comment] = STATE(1630), - [sym_block_comment] = STATE(1630), - [sym_identifier] = ACTIONS(2173), - [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_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_PIPE] = ACTIONS(2173), - [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), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), - }, [1631] = { [sym_line_comment] = STATE(1631), [sym_block_comment] = STATE(1631), - [sym_identifier] = ACTIONS(3074), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_LT_EQ] = ACTIONS(3072), - [anon_sym_GT_EQ] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_RBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3072), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_LT_LT] = ACTIONS(3072), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3072), - [anon_sym_AMP_CARET] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3072), - [anon_sym_POUND_LBRACK] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3072), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3072), - [sym_rune_literal] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_c_SQUOTE] = ACTIONS(3072), - [anon_sym_c_DQUOTE] = ACTIONS(3072), - [anon_sym_r_SQUOTE] = ACTIONS(3072), - [anon_sym_r_DQUOTE] = ACTIONS(3072), - [sym_pseudo_compile_time_identifier] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3072), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - }, - [1632] = { - [sym_line_comment] = STATE(1632), - [sym_block_comment] = STATE(1632), - [sym_identifier] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2947), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_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_PIPE] = ACTIONS(2459), - [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), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [anon_sym_c_SQUOTE] = ACTIONS(2457), - [anon_sym_c_DQUOTE] = ACTIONS(2457), - [anon_sym_r_SQUOTE] = ACTIONS(2457), - [anon_sym_r_DQUOTE] = ACTIONS(2457), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_as] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_COMMA] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2945), + [anon_sym_BANG_EQ] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_RBRACK] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_mut] = ACTIONS(2947), + [anon_sym_COLON] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2947), + [anon_sym_spawn] = ACTIONS(2947), + [anon_sym_json_DOTdecode] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2947), + [anon_sym_GT_GT_GT] = ACTIONS(2945), + [anon_sym_AMP_CARET] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_PIPE_PIPE] = ACTIONS(2945), + [anon_sym_or] = ACTIONS(2947), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_QMARK_DOT] = ACTIONS(2945), + [anon_sym_POUND_LBRACK] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_DOLLARif] = ACTIONS(2947), + [anon_sym_is] = ACTIONS(2947), + [anon_sym_BANGis] = ACTIONS(2945), + [anon_sym_in] = ACTIONS(2947), + [anon_sym_BANGin] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_select] = ACTIONS(2947), + [anon_sym_lock] = ACTIONS(2947), + [anon_sym_rlock] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_sql] = ACTIONS(2947), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2945), + [sym_rune_literal] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2945), + [anon_sym_c_SQUOTE] = ACTIONS(2945), + [anon_sym_c_DQUOTE] = ACTIONS(2945), + [anon_sym_r_SQUOTE] = ACTIONS(2945), + [anon_sym_r_DQUOTE] = ACTIONS(2945), + [sym_pseudo_compile_time_identifier] = ACTIONS(2947), + [anon_sym_shared] = ACTIONS(2947), + [anon_sym_map_LBRACK] = ACTIONS(2945), + [anon_sym_chan] = ACTIONS(2947), + [anon_sym_thread] = ACTIONS(2947), + [anon_sym_atomic] = ACTIONS(2947), + }, + [1632] = { + [sym_line_comment] = STATE(1632), + [sym_block_comment] = STATE(1632), + [sym_identifier] = ACTIONS(2845), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2845), + [anon_sym_as] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_COMMA] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_RBRACK] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_mut] = ACTIONS(2845), + [anon_sym_COLON] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_QMARK] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_go] = ACTIONS(2845), + [anon_sym_spawn] = ACTIONS(2845), + [anon_sym_json_DOTdecode] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_LBRACK2] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_LT_DASH] = ACTIONS(2843), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_or] = ACTIONS(2845), + [sym_none] = ACTIONS(2845), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_nil] = ACTIONS(2845), + [anon_sym_QMARK_DOT] = ACTIONS(2843), + [anon_sym_POUND_LBRACK] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_DOLLARif] = ACTIONS(2845), + [anon_sym_is] = ACTIONS(2845), + [anon_sym_BANGis] = ACTIONS(2843), + [anon_sym_in] = ACTIONS(2845), + [anon_sym_BANGin] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_select] = ACTIONS(2845), + [anon_sym_lock] = ACTIONS(2845), + [anon_sym_rlock] = ACTIONS(2845), + [anon_sym_unsafe] = ACTIONS(2845), + [anon_sym_sql] = ACTIONS(2845), + [sym_int_literal] = ACTIONS(2845), + [sym_float_literal] = ACTIONS(2843), + [sym_rune_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_c_SQUOTE] = ACTIONS(2843), + [anon_sym_c_DQUOTE] = ACTIONS(2843), + [anon_sym_r_SQUOTE] = ACTIONS(2843), + [anon_sym_r_DQUOTE] = ACTIONS(2843), + [sym_pseudo_compile_time_identifier] = ACTIONS(2845), + [anon_sym_shared] = ACTIONS(2845), + [anon_sym_map_LBRACK] = ACTIONS(2843), + [anon_sym_chan] = ACTIONS(2845), + [anon_sym_thread] = ACTIONS(2845), + [anon_sym_atomic] = ACTIONS(2845), }, [1633] = { [sym_line_comment] = STATE(1633), [sym_block_comment] = STATE(1633), - [sym_identifier] = ACTIONS(2953), + [sym_identifier] = ACTIONS(3084), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_c_SQUOTE] = ACTIONS(2951), - [anon_sym_c_DQUOTE] = ACTIONS(2951), - [anon_sym_r_SQUOTE] = ACTIONS(2951), - [anon_sym_r_DQUOTE] = ACTIONS(2951), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_COLON] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3082), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3082), + [anon_sym_AMP_CARET] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3082), + [anon_sym_POUND_LBRACK] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3082), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_c_SQUOTE] = ACTIONS(3082), + [anon_sym_c_DQUOTE] = ACTIONS(3082), + [anon_sym_r_SQUOTE] = ACTIONS(3082), + [anon_sym_r_DQUOTE] = ACTIONS(3082), + [sym_pseudo_compile_time_identifier] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), }, [1634] = { [sym_line_comment] = STATE(1634), [sym_block_comment] = STATE(1634), - [sym_identifier] = ACTIONS(3090), + [sym_identifier] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_LT_EQ] = ACTIONS(3088), - [anon_sym_GT_EQ] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_RBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_COLON] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_LT_LT] = ACTIONS(3088), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3088), - [anon_sym_AMP_CARET] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3088), - [anon_sym_POUND_LBRACK] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3088), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3088), - [sym_rune_literal] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_c_SQUOTE] = ACTIONS(3088), - [anon_sym_c_DQUOTE] = ACTIONS(3088), - [anon_sym_r_SQUOTE] = ACTIONS(3088), - [anon_sym_r_DQUOTE] = ACTIONS(3088), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3088), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2173), + [anon_sym_AMP_CARET] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2173), + [anon_sym_POUND_LBRACK] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2173), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2173), + [sym_rune_literal] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [anon_sym_c_SQUOTE] = ACTIONS(2173), + [anon_sym_c_DQUOTE] = ACTIONS(2173), + [anon_sym_r_SQUOTE] = ACTIONS(2173), + [anon_sym_r_DQUOTE] = ACTIONS(2173), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2173), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), }, [1635] = { [sym_line_comment] = STATE(1635), [sym_block_comment] = STATE(1635), - [sym_identifier] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_COLON] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_c_SQUOTE] = ACTIONS(2863), - [anon_sym_c_DQUOTE] = ACTIONS(2863), - [anon_sym_r_SQUOTE] = ACTIONS(2863), - [anon_sym_r_DQUOTE] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_c_SQUOTE] = ACTIONS(2455), + [anon_sym_c_DQUOTE] = ACTIONS(2455), + [anon_sym_r_SQUOTE] = ACTIONS(2455), + [anon_sym_r_DQUOTE] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), }, [1636] = { [sym_line_comment] = STATE(1636), [sym_block_comment] = STATE(1636), - [sym_identifier] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [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(2449), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_GT_GT] = ACTIONS(2451), - [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(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_QMARK_DOT] = ACTIONS(2449), - [anon_sym_POUND_LBRACK] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_is] = ACTIONS(2451), - [anon_sym_BANGis] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_BANGin] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2449), - [sym_rune_literal] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [anon_sym_c_SQUOTE] = ACTIONS(2449), - [anon_sym_c_DQUOTE] = ACTIONS(2449), - [anon_sym_r_SQUOTE] = ACTIONS(2449), - [anon_sym_r_DQUOTE] = ACTIONS(2449), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2449), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_EQ_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_COLON] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2371), + [anon_sym_LT_LT] = ACTIONS(2371), + [anon_sym_GT_GT] = ACTIONS(2373), + [anon_sym_GT_GT_GT] = ACTIONS(2371), + [anon_sym_AMP_CARET] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_or] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_QMARK_DOT] = ACTIONS(2371), + [anon_sym_POUND_LBRACK] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_is] = ACTIONS(2373), + [anon_sym_BANGis] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2373), + [anon_sym_BANGin] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), }, [1637] = { [sym_line_comment] = STATE(1637), [sym_block_comment] = STATE(1637), - [sym_identifier] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2877), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_is] = ACTIONS(2465), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_c_SQUOTE] = ACTIONS(2463), - [anon_sym_c_DQUOTE] = ACTIONS(2463), - [anon_sym_r_SQUOTE] = ACTIONS(2463), - [anon_sym_r_DQUOTE] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_COMMA] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2875), + [anon_sym_BANG_EQ] = ACTIONS(2875), + [anon_sym_LT_EQ] = ACTIONS(2875), + [anon_sym_GT_EQ] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_RBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_COLON] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2875), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_CARET] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2875), + [anon_sym_LT_LT] = ACTIONS(2875), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2875), + [anon_sym_AMP_CARET] = ACTIONS(2875), + [anon_sym_AMP_AMP] = ACTIONS(2875), + [anon_sym_PIPE_PIPE] = ACTIONS(2875), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2875), + [anon_sym_POUND_LBRACK] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2875), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2875), + [sym_rune_literal] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2875), + [anon_sym_c_SQUOTE] = ACTIONS(2875), + [anon_sym_c_DQUOTE] = ACTIONS(2875), + [anon_sym_r_SQUOTE] = ACTIONS(2875), + [anon_sym_r_DQUOTE] = ACTIONS(2875), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2875), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), }, [1638] = { [sym_line_comment] = STATE(1638), [sym_block_comment] = STATE(1638), - [sym_identifier] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2889), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [anon_sym_c_SQUOTE] = ACTIONS(2911), - [anon_sym_c_DQUOTE] = ACTIONS(2911), - [anon_sym_r_SQUOTE] = ACTIONS(2911), - [anon_sym_r_DQUOTE] = ACTIONS(2911), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(2889), + [anon_sym_as] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_RBRACK] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2889), + [anon_sym_mut] = ACTIONS(2889), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_go] = ACTIONS(2889), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2889), + [sym_none] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_nil] = ACTIONS(2889), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_DOLLARif] = ACTIONS(2889), + [anon_sym_is] = ACTIONS(2889), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2889), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2889), + [anon_sym_select] = ACTIONS(2889), + [anon_sym_lock] = ACTIONS(2889), + [anon_sym_rlock] = ACTIONS(2889), + [anon_sym_unsafe] = ACTIONS(2889), + [anon_sym_sql] = ACTIONS(2889), + [sym_int_literal] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2889), + [anon_sym_shared] = ACTIONS(2889), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2889), + [anon_sym_thread] = ACTIONS(2889), + [anon_sym_atomic] = ACTIONS(2889), }, [1639] = { [sym_line_comment] = STATE(1639), [sym_block_comment] = STATE(1639), - [sym_identifier] = ACTIONS(2931), + [sym_identifier] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2929), - [anon_sym_BANG_EQ] = ACTIONS(2929), - [anon_sym_LT_EQ] = ACTIONS(2929), - [anon_sym_GT_EQ] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_COLON] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_CARET] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2929), - [anon_sym_LT_LT] = ACTIONS(2929), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2929), - [anon_sym_AMP_CARET] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_PIPE_PIPE] = ACTIONS(2929), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2929), - [anon_sym_POUND_LBRACK] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2929), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2929), - [sym_rune_literal] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [anon_sym_c_SQUOTE] = ACTIONS(2929), - [anon_sym_c_DQUOTE] = ACTIONS(2929), - [anon_sym_r_SQUOTE] = ACTIONS(2929), - [anon_sym_r_DQUOTE] = ACTIONS(2929), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2929), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3260), + [anon_sym_BANG_EQ] = ACTIONS(3260), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_RBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3260), + [anon_sym_AMP_CARET] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3260), + [anon_sym_POUND_LBRACK] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3260), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_c_SQUOTE] = ACTIONS(3260), + [anon_sym_c_DQUOTE] = ACTIONS(3260), + [anon_sym_r_SQUOTE] = ACTIONS(3260), + [anon_sym_r_DQUOTE] = ACTIONS(3260), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3260), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), }, [1640] = { [sym_line_comment] = STATE(1640), [sym_block_comment] = STATE(1640), - [sym_identifier] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3073), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3266), - [anon_sym_as] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_fn] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_GT] = ACTIONS(3266), - [anon_sym_EQ_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_LT_EQ] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_RBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_mut] = ACTIONS(3266), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_go] = ACTIONS(3266), - [anon_sym_spawn] = ACTIONS(3266), - [anon_sym_json_DOTdecode] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_LBRACK2] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_LT_DASH] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3264), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_GT_GT_GT] = ACTIONS(3264), - [anon_sym_AMP_CARET] = ACTIONS(3264), - [anon_sym_AMP_AMP] = ACTIONS(3264), - [anon_sym_PIPE_PIPE] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3266), - [sym_none] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_nil] = ACTIONS(3266), - [anon_sym_QMARK_DOT] = ACTIONS(3264), - [anon_sym_POUND_LBRACK] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_DOLLARif] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_BANGis] = ACTIONS(3264), - [anon_sym_in] = ACTIONS(3266), - [anon_sym_BANGin] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3266), - [anon_sym_select] = ACTIONS(3266), - [anon_sym_lock] = ACTIONS(3266), - [anon_sym_rlock] = ACTIONS(3266), - [anon_sym_unsafe] = ACTIONS(3266), - [anon_sym_sql] = ACTIONS(3266), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(3264), - [sym_rune_literal] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_c_SQUOTE] = ACTIONS(3264), - [anon_sym_c_DQUOTE] = ACTIONS(3264), - [anon_sym_r_SQUOTE] = ACTIONS(3264), - [anon_sym_r_DQUOTE] = ACTIONS(3264), - [sym_pseudo_compile_time_identifier] = ACTIONS(3266), - [anon_sym_shared] = ACTIONS(3266), - [anon_sym_map_LBRACK] = ACTIONS(3264), - [anon_sym_chan] = ACTIONS(3266), - [anon_sym_thread] = ACTIONS(3266), - [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3071), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT_EQ] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_mut] = ACTIONS(3073), + [anon_sym_COLON] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_DASH_DASH] = ACTIONS(3071), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_go] = ACTIONS(3073), + [anon_sym_spawn] = ACTIONS(3073), + [anon_sym_json_DOTdecode] = ACTIONS(3071), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LBRACK2] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3071), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3071), + [anon_sym_AMP_CARET] = ACTIONS(3071), + [anon_sym_AMP_AMP] = ACTIONS(3071), + [anon_sym_PIPE_PIPE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3073), + [sym_none] = ACTIONS(3073), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [sym_nil] = ACTIONS(3073), + [anon_sym_QMARK_DOT] = ACTIONS(3071), + [anon_sym_POUND_LBRACK] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_DOLLARif] = ACTIONS(3073), + [anon_sym_is] = ACTIONS(3073), + [anon_sym_BANGis] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3073), + [anon_sym_BANGin] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_select] = ACTIONS(3073), + [anon_sym_lock] = ACTIONS(3073), + [anon_sym_rlock] = ACTIONS(3073), + [anon_sym_unsafe] = ACTIONS(3073), + [anon_sym_sql] = ACTIONS(3073), + [sym_int_literal] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3071), + [sym_rune_literal] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3071), + [anon_sym_c_SQUOTE] = ACTIONS(3071), + [anon_sym_c_DQUOTE] = ACTIONS(3071), + [anon_sym_r_SQUOTE] = ACTIONS(3071), + [anon_sym_r_DQUOTE] = ACTIONS(3071), + [sym_pseudo_compile_time_identifier] = ACTIONS(3073), + [anon_sym_shared] = ACTIONS(3073), + [anon_sym_map_LBRACK] = ACTIONS(3071), + [anon_sym_chan] = ACTIONS(3073), + [anon_sym_thread] = ACTIONS(3073), + [anon_sym_atomic] = ACTIONS(3073), }, [1641] = { [sym_line_comment] = STATE(1641), [sym_block_comment] = STATE(1641), - [sym_identifier] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3065), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_RBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3068), - [anon_sym_POUND_LBRACK] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3068), - [sym_rune_literal] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_c_SQUOTE] = ACTIONS(3068), - [anon_sym_c_DQUOTE] = ACTIONS(3068), - [anon_sym_r_SQUOTE] = ACTIONS(3068), - [anon_sym_r_DQUOTE] = ACTIONS(3068), - [sym_pseudo_compile_time_identifier] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3068), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3063), + [anon_sym_fn] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT_EQ] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_mut] = ACTIONS(3065), + [anon_sym_COLON] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3063), + [anon_sym_QMARK] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_go] = ACTIONS(3065), + [anon_sym_spawn] = ACTIONS(3065), + [anon_sym_json_DOTdecode] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LBRACK2] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_LT_DASH] = ACTIONS(3063), + [anon_sym_LT_LT] = ACTIONS(3063), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3063), + [anon_sym_AMP_CARET] = ACTIONS(3063), + [anon_sym_AMP_AMP] = ACTIONS(3063), + [anon_sym_PIPE_PIPE] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_true] = ACTIONS(3065), + [sym_false] = ACTIONS(3065), + [sym_nil] = ACTIONS(3065), + [anon_sym_QMARK_DOT] = ACTIONS(3063), + [anon_sym_POUND_LBRACK] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_DOLLARif] = ACTIONS(3065), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_BANGin] = ACTIONS(3063), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_lock] = ACTIONS(3065), + [anon_sym_rlock] = ACTIONS(3065), + [anon_sym_unsafe] = ACTIONS(3065), + [anon_sym_sql] = ACTIONS(3065), + [sym_int_literal] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3063), + [sym_rune_literal] = ACTIONS(3063), + [anon_sym_SQUOTE] = ACTIONS(3063), + [anon_sym_DQUOTE] = ACTIONS(3063), + [anon_sym_c_SQUOTE] = ACTIONS(3063), + [anon_sym_c_DQUOTE] = ACTIONS(3063), + [anon_sym_r_SQUOTE] = ACTIONS(3063), + [anon_sym_r_DQUOTE] = ACTIONS(3063), + [sym_pseudo_compile_time_identifier] = ACTIONS(3065), + [anon_sym_shared] = ACTIONS(3065), + [anon_sym_map_LBRACK] = ACTIONS(3063), + [anon_sym_chan] = ACTIONS(3065), + [anon_sym_thread] = ACTIONS(3065), + [anon_sym_atomic] = ACTIONS(3065), }, [1642] = { [sym_line_comment] = STATE(1642), [sym_block_comment] = STATE(1642), + [sym_identifier] = ACTIONS(2957), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2955), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_CARET] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2955), + [anon_sym_POUND_LBRACK] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2955), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2955), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2955), + [sym_rune_literal] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_c_SQUOTE] = ACTIONS(2955), + [anon_sym_c_DQUOTE] = ACTIONS(2955), + [anon_sym_r_SQUOTE] = ACTIONS(2955), + [anon_sym_r_DQUOTE] = ACTIONS(2955), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2955), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + }, + [1643] = { + [sym_line_comment] = STATE(1643), + [sym_block_comment] = STATE(1643), [sym_identifier] = ACTIONS(3300), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -200275,9 +200596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3300), [anon_sym_atomic] = ACTIONS(3300), }, - [1643] = { - [sym_line_comment] = STATE(1643), - [sym_block_comment] = STATE(1643), + [1644] = { + [sym_line_comment] = STATE(1644), + [sym_block_comment] = STATE(1644), [sym_identifier] = ACTIONS(2885), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -200358,171 +200679,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2885), [anon_sym_atomic] = ACTIONS(2885), }, - [1644] = { - [sym_line_comment] = STATE(1644), - [sym_block_comment] = STATE(1644), - [sym_identifier] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2963), - [anon_sym_AMP_CARET] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [anon_sym_c_SQUOTE] = ACTIONS(2963), - [anon_sym_c_DQUOTE] = ACTIONS(2963), - [anon_sym_r_SQUOTE] = ACTIONS(2963), - [anon_sym_r_DQUOTE] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - }, [1645] = { [sym_line_comment] = STATE(1645), [sym_block_comment] = STATE(1645), - [sym_identifier] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2997), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_COLON] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_c_SQUOTE] = ACTIONS(2183), - [anon_sym_c_DQUOTE] = ACTIONS(2183), - [anon_sym_r_SQUOTE] = ACTIONS(2183), - [anon_sym_r_DQUOTE] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_CARET] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_c_SQUOTE] = ACTIONS(2995), + [anon_sym_c_DQUOTE] = ACTIONS(2995), + [anon_sym_r_SQUOTE] = ACTIONS(2995), + [anon_sym_r_DQUOTE] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), }, [1646] = { [sym_line_comment] = STATE(1646), @@ -200598,184 +200836,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3302), [anon_sym_c_SQUOTE] = ACTIONS(3302), [anon_sym_c_DQUOTE] = ACTIONS(3302), - [anon_sym_r_SQUOTE] = ACTIONS(3302), - [anon_sym_r_DQUOTE] = ACTIONS(3302), - [sym_pseudo_compile_time_identifier] = ACTIONS(3304), - [anon_sym_shared] = ACTIONS(3304), - [anon_sym_map_LBRACK] = ACTIONS(3302), - [anon_sym_chan] = ACTIONS(3304), - [anon_sym_thread] = ACTIONS(3304), - [anon_sym_atomic] = ACTIONS(3304), - }, - [1647] = { - [sym_line_comment] = STATE(1647), - [sym_block_comment] = STATE(1647), - [sym_identifier] = ACTIONS(3064), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [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(3062), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_mut] = ACTIONS(3064), - [anon_sym_COLON] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_go] = ACTIONS(3064), - [anon_sym_spawn] = ACTIONS(3064), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3064), - [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(3064), - [sym_none] = ACTIONS(3064), - [sym_true] = ACTIONS(3064), - [sym_false] = ACTIONS(3064), - [sym_nil] = ACTIONS(3064), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_DOLLARif] = ACTIONS(3064), - [anon_sym_is] = ACTIONS(3064), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3064), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_select] = ACTIONS(3064), - [anon_sym_lock] = ACTIONS(3064), - [anon_sym_rlock] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_sql] = ACTIONS(3064), - [sym_int_literal] = ACTIONS(3064), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(3062), - [anon_sym_c_SQUOTE] = ACTIONS(3062), - [anon_sym_c_DQUOTE] = ACTIONS(3062), - [anon_sym_r_SQUOTE] = ACTIONS(3062), - [anon_sym_r_DQUOTE] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3064), - [anon_sym_shared] = ACTIONS(3064), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3064), - [anon_sym_thread] = ACTIONS(3064), - [anon_sym_atomic] = ACTIONS(3064), - }, - [1648] = { - [sym_line_comment] = STATE(1648), - [sym_block_comment] = STATE(1648), - [sym_identifier] = ACTIONS(2993), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [anon_sym_c_SQUOTE] = ACTIONS(2991), - [anon_sym_c_DQUOTE] = ACTIONS(2991), - [anon_sym_r_SQUOTE] = ACTIONS(2991), - [anon_sym_r_DQUOTE] = ACTIONS(2991), - [sym_pseudo_compile_time_identifier] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(3302), + [anon_sym_r_DQUOTE] = ACTIONS(3302), + [sym_pseudo_compile_time_identifier] = ACTIONS(3304), + [anon_sym_shared] = ACTIONS(3304), + [anon_sym_map_LBRACK] = ACTIONS(3302), + [anon_sym_chan] = ACTIONS(3304), + [anon_sym_thread] = ACTIONS(3304), + [anon_sym_atomic] = ACTIONS(3304), }, - [1649] = { - [sym_line_comment] = STATE(1649), - [sym_block_comment] = STATE(1649), + [1647] = { + [sym_line_comment] = STATE(1647), + [sym_block_comment] = STATE(1647), [sym_identifier] = ACTIONS(3308), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -200856,175 +200928,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3308), [anon_sym_atomic] = ACTIONS(3308), }, - [1650] = { - [sym_line_comment] = STATE(1650), - [sym_block_comment] = STATE(1650), - [sym_identifier] = ACTIONS(3314), + [1648] = { + [sym_line_comment] = STATE(1648), + [sym_block_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3312), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_LT_EQ] = ACTIONS(3312), - [anon_sym_GT_EQ] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_RBRACK] = ACTIONS(3312), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3312), - [anon_sym_DASH_DASH] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3312), - [anon_sym_PIPE] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3312), - [anon_sym_CARET] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_LT_LT] = ACTIONS(3312), - [anon_sym_GT_GT] = ACTIONS(3314), - [anon_sym_GT_GT_GT] = ACTIONS(3312), - [anon_sym_AMP_CARET] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_or] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_QMARK_DOT] = ACTIONS(3312), - [anon_sym_POUND_LBRACK] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_is] = ACTIONS(3314), - [anon_sym_BANGis] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3314), - [anon_sym_BANGin] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3312), - [sym_rune_literal] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_c_SQUOTE] = ACTIONS(3312), - [anon_sym_c_DQUOTE] = ACTIONS(3312), - [anon_sym_r_SQUOTE] = ACTIONS(3312), - [anon_sym_r_DQUOTE] = ACTIONS(3312), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3312), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_LT_EQ] = ACTIONS(3310), + [anon_sym_GT_EQ] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_RBRACK] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_CARET] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3310), + [anon_sym_LT_LT] = ACTIONS(3310), + [anon_sym_GT_GT] = ACTIONS(3312), + [anon_sym_GT_GT_GT] = ACTIONS(3310), + [anon_sym_AMP_CARET] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_PIPE_PIPE] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_QMARK_DOT] = ACTIONS(3310), + [anon_sym_POUND_LBRACK] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3312), + [anon_sym_BANGis] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3310), + [sym_rune_literal] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [anon_sym_c_SQUOTE] = ACTIONS(3310), + [anon_sym_c_DQUOTE] = ACTIONS(3310), + [anon_sym_r_SQUOTE] = ACTIONS(3310), + [anon_sym_r_DQUOTE] = ACTIONS(3310), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3310), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), }, - [1651] = { - [sym_line_comment] = STATE(1651), - [sym_block_comment] = STATE(1651), - [sym_identifier] = ACTIONS(3031), + [1649] = { + [sym_line_comment] = STATE(1649), + [sym_block_comment] = STATE(1649), + [sym_identifier] = ACTIONS(2443), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2448), + [anon_sym_BANG_EQ] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2448), + [anon_sym_GT_EQ] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [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(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2443), + [anon_sym_spawn] = ACTIONS(2443), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2448), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2448), + [anon_sym_AMP_CARET] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2448), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_nil] = ACTIONS(2443), + [anon_sym_QMARK_DOT] = ACTIONS(2448), + [anon_sym_POUND_LBRACK] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_DOLLARif] = ACTIONS(2443), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2448), + [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), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [anon_sym_c_SQUOTE] = ACTIONS(2441), + [anon_sym_c_DQUOTE] = ACTIONS(2441), + [anon_sym_r_SQUOTE] = ACTIONS(2441), + [anon_sym_r_DQUOTE] = ACTIONS(2441), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, - [1652] = { - [sym_line_comment] = STATE(1652), - [sym_block_comment] = STATE(1652), + [1650] = { + [sym_line_comment] = STATE(1650), + [sym_block_comment] = STATE(1650), [sym_identifier] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -201105,1088 +201177,1337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3318), [anon_sym_atomic] = ACTIONS(3318), }, + [1651] = { + [sym_line_comment] = STATE(1651), + [sym_block_comment] = STATE(1651), + [sym_identifier] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_AMP_CARET] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [anon_sym_c_SQUOTE] = ACTIONS(2991), + [anon_sym_c_DQUOTE] = ACTIONS(2991), + [anon_sym_r_SQUOTE] = ACTIONS(2991), + [anon_sym_r_DQUOTE] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + }, + [1652] = { + [sym_line_comment] = STATE(1652), + [sym_block_comment] = STATE(1652), + [sym_identifier] = ACTIONS(3324), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_RBRACK] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_is] = ACTIONS(3324), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3324), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_c_SQUOTE] = ACTIONS(3322), + [anon_sym_c_DQUOTE] = ACTIONS(3322), + [anon_sym_r_SQUOTE] = ACTIONS(3322), + [anon_sym_r_DQUOTE] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + }, [1653] = { [sym_line_comment] = STATE(1653), [sym_block_comment] = STATE(1653), - [sym_identifier] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3346), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_LT_EQ] = ACTIONS(3326), - [anon_sym_GT_EQ] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_RBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3326), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_CARET] = ACTIONS(3326), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_LT_LT] = ACTIONS(3326), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3326), - [anon_sym_AMP_CARET] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_or] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3326), - [anon_sym_POUND_LBRACK] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3326), - [sym_rune_literal] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3326), - [anon_sym_c_DQUOTE] = ACTIONS(3326), - [anon_sym_r_SQUOTE] = ACTIONS(3326), - [anon_sym_r_DQUOTE] = ACTIONS(3326), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3326), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_RBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_CARET] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3344), + [anon_sym_POUND_LBRACK] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3344), + [sym_rune_literal] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_c_SQUOTE] = ACTIONS(3344), + [anon_sym_c_DQUOTE] = ACTIONS(3344), + [anon_sym_r_SQUOTE] = ACTIONS(3344), + [anon_sym_r_DQUOTE] = ACTIONS(3344), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3344), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), }, [1654] = { [sym_line_comment] = STATE(1654), [sym_block_comment] = STATE(1654), - [sym_identifier] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3035), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3039), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_mut] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_go] = ACTIONS(3039), - [anon_sym_spawn] = ACTIONS(3039), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_true] = ACTIONS(3039), - [sym_false] = ACTIONS(3039), - [sym_nil] = ACTIONS(3039), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_DOLLARif] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3039), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_select] = ACTIONS(3039), - [anon_sym_lock] = ACTIONS(3039), - [anon_sym_rlock] = ACTIONS(3039), - [anon_sym_unsafe] = ACTIONS(3039), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_c_SQUOTE] = ACTIONS(3037), - [anon_sym_c_DQUOTE] = ACTIONS(3037), - [anon_sym_r_SQUOTE] = ACTIONS(3037), - [anon_sym_r_DQUOTE] = ACTIONS(3037), - [sym_pseudo_compile_time_identifier] = ACTIONS(3039), - [anon_sym_shared] = ACTIONS(3039), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3039), - [anon_sym_thread] = ACTIONS(3039), - [anon_sym_atomic] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3033), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3033), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3033), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_LT_EQ] = ACTIONS(3033), + [anon_sym_GT_EQ] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_RBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_COLON] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3033), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_CARET] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_LT_LT] = ACTIONS(3033), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3033), + [anon_sym_AMP_CARET] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_PIPE_PIPE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3033), + [anon_sym_POUND_LBRACK] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3033), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3033), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3033), + [sym_rune_literal] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE] = ACTIONS(3033), + [anon_sym_c_SQUOTE] = ACTIONS(3033), + [anon_sym_c_DQUOTE] = ACTIONS(3033), + [anon_sym_r_SQUOTE] = ACTIONS(3033), + [anon_sym_r_DQUOTE] = ACTIONS(3033), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3033), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), }, [1655] = { [sym_line_comment] = STATE(1655), [sym_block_comment] = STATE(1655), - [sym_identifier] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2437), - [anon_sym_spawn] = ACTIONS(2437), - [anon_sym_json_DOTdecode] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2435), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_AMP_CARET] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2437), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_nil] = ACTIONS(2437), - [anon_sym_QMARK_DOT] = ACTIONS(2442), - [anon_sym_POUND_LBRACK] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_DOLLARif] = ACTIONS(2437), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_sql] = ACTIONS(2437), - [sym_int_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2435), - [sym_rune_literal] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [anon_sym_c_SQUOTE] = ACTIONS(2435), - [anon_sym_c_DQUOTE] = ACTIONS(2435), - [anon_sym_r_SQUOTE] = ACTIONS(2435), - [anon_sym_r_DQUOTE] = ACTIONS(2435), - [sym_pseudo_compile_time_identifier] = ACTIONS(2437), - [anon_sym_shared] = ACTIONS(2437), - [anon_sym_map_LBRACK] = ACTIONS(2435), - [anon_sym_chan] = ACTIONS(2437), - [anon_sym_thread] = ACTIONS(2437), - [anon_sym_atomic] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_as] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_RBRACK] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_COLON] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_is] = ACTIONS(2893), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2893), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_c_SQUOTE] = ACTIONS(2891), + [anon_sym_c_DQUOTE] = ACTIONS(2891), + [anon_sym_r_SQUOTE] = ACTIONS(2891), + [anon_sym_r_DQUOTE] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), }, [1656] = { [sym_line_comment] = STATE(1656), [sym_block_comment] = STATE(1656), - [sym_identifier] = ACTIONS(2985), + [sym_identifier] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2983), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_AMP_CARET] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2983), - [anon_sym_POUND_LBRACK] = ACTIONS(2983), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2983), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2983), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2983), - [sym_rune_literal] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [anon_sym_c_SQUOTE] = ACTIONS(2983), - [anon_sym_c_DQUOTE] = ACTIONS(2983), - [anon_sym_r_SQUOTE] = ACTIONS(2983), - [anon_sym_r_DQUOTE] = ACTIONS(2983), - [sym_pseudo_compile_time_identifier] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2983), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_c_SQUOTE] = ACTIONS(3043), + [anon_sym_c_DQUOTE] = ACTIONS(3043), + [anon_sym_r_SQUOTE] = ACTIONS(3043), + [anon_sym_r_DQUOTE] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, [1657] = { [sym_line_comment] = STATE(1657), [sym_block_comment] = STATE(1657), - [sym_identifier] = ACTIONS(3340), + [sym_identifier] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_COMMA] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_EQ_EQ] = ACTIONS(3338), - [anon_sym_BANG_EQ] = ACTIONS(3338), - [anon_sym_LT_EQ] = ACTIONS(3338), - [anon_sym_GT_EQ] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_RBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_COLON] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_CARET] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3338), - [anon_sym_LT_LT] = ACTIONS(3338), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3338), - [anon_sym_AMP_CARET] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_PIPE_PIPE] = ACTIONS(3338), - [anon_sym_or] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3338), - [anon_sym_POUND_LBRACK] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3338), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3338), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_c_SQUOTE] = ACTIONS(3338), - [anon_sym_c_DQUOTE] = ACTIONS(3338), - [anon_sym_r_SQUOTE] = ACTIONS(3338), - [anon_sym_r_DQUOTE] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3338), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_COLON] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2185), + [anon_sym_AMP_CARET] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_or] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_QMARK_DOT] = ACTIONS(2185), + [anon_sym_POUND_LBRACK] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_is] = ACTIONS(2187), + [anon_sym_BANGis] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2187), + [anon_sym_BANGin] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), }, [1658] = { [sym_line_comment] = STATE(1658), [sym_block_comment] = STATE(1658), - [sym_identifier] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_COLON] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2979), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_CARET] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2979), - [anon_sym_POUND_LBRACK] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2979), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2979), - [sym_rune_literal] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_c_SQUOTE] = ACTIONS(2979), - [anon_sym_c_DQUOTE] = ACTIONS(2979), - [anon_sym_r_SQUOTE] = ACTIONS(2979), - [anon_sym_r_DQUOTE] = ACTIONS(2979), - [sym_pseudo_compile_time_identifier] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2979), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [anon_sym_LT_EQ] = ACTIONS(2987), + [anon_sym_GT_EQ] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_COLON] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2987), + [anon_sym_AMP_CARET] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [anon_sym_c_SQUOTE] = ACTIONS(2987), + [anon_sym_c_DQUOTE] = ACTIONS(2987), + [anon_sym_r_SQUOTE] = ACTIONS(2987), + [anon_sym_r_DQUOTE] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), }, [1659] = { [sym_line_comment] = STATE(1659), [sym_block_comment] = STATE(1659), - [sym_identifier] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3069), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_fn] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_RBRACK] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_mut] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_QMARK] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_go] = ACTIONS(3244), - [anon_sym_spawn] = ACTIONS(3244), - [anon_sym_json_DOTdecode] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_LBRACK2] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_AMP] = ACTIONS(3244), - [anon_sym_LT_DASH] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3242), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_GT_GT_GT] = ACTIONS(3242), - [anon_sym_AMP_CARET] = ACTIONS(3242), - [anon_sym_AMP_AMP] = ACTIONS(3242), - [anon_sym_PIPE_PIPE] = ACTIONS(3242), - [anon_sym_or] = ACTIONS(3244), - [sym_none] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_nil] = ACTIONS(3244), - [anon_sym_QMARK_DOT] = ACTIONS(3242), - [anon_sym_POUND_LBRACK] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_DOLLARif] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3242), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_BANGin] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3244), - [anon_sym_select] = ACTIONS(3244), - [anon_sym_lock] = ACTIONS(3244), - [anon_sym_rlock] = ACTIONS(3244), - [anon_sym_unsafe] = ACTIONS(3244), - [anon_sym_sql] = ACTIONS(3244), - [sym_int_literal] = ACTIONS(3244), - [sym_float_literal] = ACTIONS(3242), - [sym_rune_literal] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3242), - [anon_sym_r_SQUOTE] = ACTIONS(3242), - [anon_sym_r_DQUOTE] = ACTIONS(3242), - [sym_pseudo_compile_time_identifier] = ACTIONS(3244), - [anon_sym_shared] = ACTIONS(3244), - [anon_sym_map_LBRACK] = ACTIONS(3242), - [anon_sym_chan] = ACTIONS(3244), - [anon_sym_thread] = ACTIONS(3244), - [anon_sym_atomic] = ACTIONS(3244), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_mut] = ACTIONS(3069), + [anon_sym_COLON] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3069), + [anon_sym_json_DOTdecode] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LBRACK2] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3067), + [anon_sym_CARET] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3067), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3067), + [anon_sym_AMP_CARET] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_true] = ACTIONS(3069), + [sym_false] = ACTIONS(3069), + [sym_nil] = ACTIONS(3069), + [anon_sym_QMARK_DOT] = ACTIONS(3067), + [anon_sym_POUND_LBRACK] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_DOLLARif] = ACTIONS(3069), + [anon_sym_is] = ACTIONS(3069), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3069), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_select] = ACTIONS(3069), + [anon_sym_lock] = ACTIONS(3069), + [anon_sym_rlock] = ACTIONS(3069), + [anon_sym_unsafe] = ACTIONS(3069), + [anon_sym_sql] = ACTIONS(3069), + [sym_int_literal] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3067), + [sym_rune_literal] = ACTIONS(3067), + [anon_sym_SQUOTE] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_c_SQUOTE] = ACTIONS(3067), + [anon_sym_c_DQUOTE] = ACTIONS(3067), + [anon_sym_r_SQUOTE] = ACTIONS(3067), + [anon_sym_r_DQUOTE] = ACTIONS(3067), + [sym_pseudo_compile_time_identifier] = ACTIONS(3069), + [anon_sym_shared] = ACTIONS(3069), + [anon_sym_map_LBRACK] = ACTIONS(3067), + [anon_sym_chan] = ACTIONS(3069), + [anon_sym_thread] = ACTIONS(3069), + [anon_sym_atomic] = ACTIONS(3069), }, [1660] = { [sym_line_comment] = STATE(1660), [sym_block_comment] = STATE(1660), - [sym_identifier] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3328), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_COMMA] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_EQ_EQ] = ACTIONS(3334), - [anon_sym_BANG_EQ] = ACTIONS(3334), - [anon_sym_LT_EQ] = ACTIONS(3334), - [anon_sym_GT_EQ] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_RBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_CARET] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3334), - [anon_sym_LT_LT] = ACTIONS(3334), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3334), - [anon_sym_AMP_CARET] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_PIPE_PIPE] = ACTIONS(3334), - [anon_sym_or] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3334), - [anon_sym_POUND_LBRACK] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3334), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3334), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3334), - [sym_rune_literal] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_c_SQUOTE] = ACTIONS(3334), - [anon_sym_c_DQUOTE] = ACTIONS(3334), - [anon_sym_r_SQUOTE] = ACTIONS(3334), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3334), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3326), + [anon_sym_POUND_LBRACK] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3326), + [anon_sym_c_DQUOTE] = ACTIONS(3326), + [anon_sym_r_SQUOTE] = ACTIONS(3326), + [anon_sym_r_DQUOTE] = ACTIONS(3326), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3326), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), }, [1661] = { [sym_line_comment] = STATE(1661), [sym_block_comment] = STATE(1661), - [sym_identifier] = ACTIONS(2961), + [sym_identifier] = ACTIONS(3356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_CARET] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_c_SQUOTE] = ACTIONS(2959), - [anon_sym_c_DQUOTE] = ACTIONS(2959), - [anon_sym_r_SQUOTE] = ACTIONS(2959), - [anon_sym_r_DQUOTE] = ACTIONS(2959), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_RBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_AMP_CARET] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3354), + [anon_sym_POUND_LBRACK] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_c_SQUOTE] = ACTIONS(3354), + [anon_sym_c_DQUOTE] = ACTIONS(3354), + [anon_sym_r_SQUOTE] = ACTIONS(3354), + [anon_sym_r_DQUOTE] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), }, [1662] = { [sym_line_comment] = STATE(1662), [sym_block_comment] = STATE(1662), - [sym_identifier] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2873), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_COLON] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_CARET] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2875), - [anon_sym_POUND_LBRACK] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2875), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2875), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2875), - [sym_rune_literal] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_c_SQUOTE] = ACTIONS(2875), - [anon_sym_c_DQUOTE] = ACTIONS(2875), - [anon_sym_r_SQUOTE] = ACTIONS(2875), - [anon_sym_r_DQUOTE] = ACTIONS(2875), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2875), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_RBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_COLON] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2871), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2871), + [anon_sym_AMP_CARET] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2871), + [anon_sym_POUND_LBRACK] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2871), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2871), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2871), + [sym_rune_literal] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_c_SQUOTE] = ACTIONS(2871), + [anon_sym_c_DQUOTE] = ACTIONS(2871), + [anon_sym_r_SQUOTE] = ACTIONS(2871), + [anon_sym_r_DQUOTE] = ACTIONS(2871), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2871), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), }, [1663] = { [sym_line_comment] = STATE(1663), [sym_block_comment] = STATE(1663), - [sym_identifier] = ACTIONS(3354), + [sym_identifier] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_as] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_RBRACK] = ACTIONS(3352), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3352), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3352), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_QMARK_DOT] = ACTIONS(3352), - [anon_sym_POUND_LBRACK] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_is] = ACTIONS(3354), - [anon_sym_BANGis] = ACTIONS(3352), - [anon_sym_in] = ACTIONS(3354), - [anon_sym_BANGin] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3352), - [sym_rune_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [anon_sym_c_SQUOTE] = ACTIONS(3352), - [anon_sym_c_DQUOTE] = ACTIONS(3352), - [anon_sym_r_SQUOTE] = ACTIONS(3352), - [anon_sym_r_DQUOTE] = ACTIONS(3352), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3352), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_as] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_COMMA] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2965), + [anon_sym_BANG_EQ] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_RBRACK] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(2967), + [anon_sym_GT_GT_GT] = ACTIONS(2965), + [anon_sym_AMP_CARET] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_PIPE_PIPE] = ACTIONS(2965), + [anon_sym_or] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_QMARK_DOT] = ACTIONS(2965), + [anon_sym_POUND_LBRACK] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_is] = ACTIONS(2967), + [anon_sym_BANGis] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2967), + [anon_sym_BANGin] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), }, [1664] = { [sym_line_comment] = STATE(1664), [sym_block_comment] = STATE(1664), - [sym_identifier] = ACTIONS(2869), + [sym_identifier] = ACTIONS(3240), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_COLON] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2867), - [anon_sym_AMP_CARET] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2867), - [anon_sym_POUND_LBRACK] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2867), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2867), - [sym_rune_literal] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [anon_sym_c_SQUOTE] = ACTIONS(2867), - [anon_sym_c_DQUOTE] = ACTIONS(2867), - [anon_sym_r_SQUOTE] = ACTIONS(2867), - [anon_sym_r_DQUOTE] = ACTIONS(2867), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2867), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(3240), + [anon_sym_as] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_mut] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_QMARK] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_go] = ACTIONS(3240), + [anon_sym_spawn] = ACTIONS(3240), + [anon_sym_json_DOTdecode] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3238), + [anon_sym_GT_GT] = ACTIONS(3240), + [anon_sym_GT_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_CARET] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_or] = ACTIONS(3240), + [sym_none] = ACTIONS(3240), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [sym_nil] = ACTIONS(3240), + [anon_sym_QMARK_DOT] = ACTIONS(3238), + [anon_sym_POUND_LBRACK] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_DOLLARif] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3240), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_select] = ACTIONS(3240), + [anon_sym_lock] = ACTIONS(3240), + [anon_sym_rlock] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_sql] = ACTIONS(3240), + [sym_int_literal] = ACTIONS(3240), + [sym_float_literal] = ACTIONS(3238), + [sym_rune_literal] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_c_SQUOTE] = ACTIONS(3238), + [anon_sym_c_DQUOTE] = ACTIONS(3238), + [anon_sym_r_SQUOTE] = ACTIONS(3238), + [anon_sym_r_DQUOTE] = ACTIONS(3238), + [sym_pseudo_compile_time_identifier] = ACTIONS(3240), + [anon_sym_shared] = ACTIONS(3240), + [anon_sym_map_LBRACK] = ACTIONS(3238), + [anon_sym_chan] = ACTIONS(3240), + [anon_sym_thread] = ACTIONS(3240), + [anon_sym_atomic] = ACTIONS(3240), }, [1665] = { [sym_line_comment] = STATE(1665), [sym_block_comment] = STATE(1665), - [sym_identifier] = ACTIONS(3027), + [sym_identifier] = ACTIONS(2697), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_mut] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3027), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_nil] = ACTIONS(3027), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3027), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [anon_sym_lock] = ACTIONS(3027), - [anon_sym_rlock] = ACTIONS(3027), - [anon_sym_unsafe] = ACTIONS(3027), - [anon_sym_sql] = ACTIONS(3027), - [sym_int_literal] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_c_SQUOTE] = ACTIONS(3025), - [anon_sym_c_DQUOTE] = ACTIONS(3025), - [anon_sym_r_SQUOTE] = ACTIONS(3025), - [anon_sym_r_DQUOTE] = ACTIONS(3025), - [sym_pseudo_compile_time_identifier] = ACTIONS(3027), - [anon_sym_shared] = ACTIONS(3027), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3027), - [anon_sym_thread] = ACTIONS(3027), - [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_COLON] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_go] = ACTIONS(2697), + [anon_sym_spawn] = ACTIONS(2697), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK2] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2697), + [sym_none] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_nil] = ACTIONS(2697), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_DOLLARif] = ACTIONS(2697), + [anon_sym_is] = ACTIONS(2697), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2697), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_select] = ACTIONS(2697), + [anon_sym_lock] = ACTIONS(2697), + [anon_sym_rlock] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_sql] = ACTIONS(2697), + [sym_int_literal] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [anon_sym_c_SQUOTE] = ACTIONS(2695), + [anon_sym_c_DQUOTE] = ACTIONS(2695), + [anon_sym_r_SQUOTE] = ACTIONS(2695), + [anon_sym_r_DQUOTE] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2697), + [anon_sym_shared] = ACTIONS(2697), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2697), + [anon_sym_thread] = ACTIONS(2697), + [anon_sym_atomic] = ACTIONS(2697), }, [1666] = { [sym_line_comment] = STATE(1666), [sym_block_comment] = STATE(1666), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2429), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_EQ] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_COLON] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_go] = ACTIONS(2429), + [anon_sym_spawn] = ACTIONS(2429), + [anon_sym_json_DOTdecode] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_LT_DASH] = ACTIONS(2427), + [anon_sym_LT_LT] = ACTIONS(2427), + [anon_sym_GT_GT] = ACTIONS(2429), + [anon_sym_GT_GT_GT] = ACTIONS(2427), + [anon_sym_AMP_CARET] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_PIPE_PIPE] = ACTIONS(2427), + [anon_sym_or] = ACTIONS(2429), + [sym_none] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_nil] = ACTIONS(2429), + [anon_sym_QMARK_DOT] = ACTIONS(2427), + [anon_sym_POUND_LBRACK] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_DOLLARif] = ACTIONS(2429), + [anon_sym_is] = ACTIONS(2429), + [anon_sym_BANGis] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_BANGin] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_select] = ACTIONS(2429), + [anon_sym_lock] = ACTIONS(2429), + [anon_sym_rlock] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_sql] = ACTIONS(2429), + [sym_int_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2427), + [sym_rune_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_c_SQUOTE] = ACTIONS(2427), + [anon_sym_c_DQUOTE] = ACTIONS(2427), + [anon_sym_r_SQUOTE] = ACTIONS(2427), + [anon_sym_r_DQUOTE] = ACTIONS(2427), + [sym_pseudo_compile_time_identifier] = ACTIONS(2429), + [anon_sym_shared] = ACTIONS(2429), + [anon_sym_map_LBRACK] = ACTIONS(2427), + [anon_sym_chan] = ACTIONS(2429), + [anon_sym_thread] = ACTIONS(2429), + [anon_sym_atomic] = ACTIONS(2429), + }, + [1667] = { + [sym_line_comment] = STATE(1667), + [sym_block_comment] = STATE(1667), [sym_identifier] = ACTIONS(3023), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -202267,9 +202588,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3023), [anon_sym_atomic] = ACTIONS(3023), }, - [1667] = { - [sym_line_comment] = STATE(1667), - [sym_block_comment] = STATE(1667), + [1668] = { + [sym_line_comment] = STATE(1668), + [sym_block_comment] = STATE(1668), [sym_identifier] = ACTIONS(3019), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -202350,424 +202671,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3019), [anon_sym_atomic] = ACTIONS(3019), }, - [1668] = { - [sym_line_comment] = STATE(1668), - [sym_block_comment] = STATE(1668), - [sym_identifier] = ACTIONS(3084), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_as] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_mut] = ACTIONS(3084), - [anon_sym_COLON] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_go] = ACTIONS(3084), - [anon_sym_spawn] = ACTIONS(3084), - [anon_sym_json_DOTdecode] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3084), - [anon_sym_GT_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_CARET] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_or] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_true] = ACTIONS(3084), - [sym_false] = ACTIONS(3084), - [sym_nil] = ACTIONS(3084), - [anon_sym_QMARK_DOT] = ACTIONS(3082), - [anon_sym_POUND_LBRACK] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_DOLLARif] = ACTIONS(3084), - [anon_sym_is] = ACTIONS(3084), - [anon_sym_BANGis] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3084), - [anon_sym_BANGin] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3084), - [anon_sym_rlock] = ACTIONS(3084), - [anon_sym_unsafe] = ACTIONS(3084), - [anon_sym_sql] = ACTIONS(3084), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(3082), - [sym_rune_literal] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_c_SQUOTE] = ACTIONS(3082), - [anon_sym_c_DQUOTE] = ACTIONS(3082), - [anon_sym_r_SQUOTE] = ACTIONS(3082), - [anon_sym_r_DQUOTE] = ACTIONS(3082), - [sym_pseudo_compile_time_identifier] = ACTIONS(3084), - [anon_sym_shared] = ACTIONS(3084), - [anon_sym_map_LBRACK] = ACTIONS(3082), - [anon_sym_chan] = ACTIONS(3084), - [anon_sym_thread] = ACTIONS(3084), - [anon_sym_atomic] = ACTIONS(3084), - }, [1669] = { [sym_line_comment] = STATE(1669), [sym_block_comment] = STATE(1669), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2841), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_LT_EQ] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2853), - [anon_sym_AMP_CARET] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_PIPE_PIPE] = ACTIONS(2853), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2853), - [anon_sym_POUND_LBRACK] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2853), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2853), - [sym_rune_literal] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [anon_sym_c_SQUOTE] = ACTIONS(2853), - [anon_sym_c_DQUOTE] = ACTIONS(2853), - [anon_sym_r_SQUOTE] = ACTIONS(2853), - [anon_sym_r_DQUOTE] = ACTIONS(2853), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2853), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_as] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_COMMA] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_PERCENT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), + [anon_sym_LT_EQ] = ACTIONS(2839), + [anon_sym_GT_EQ] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_RBRACK] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_mut] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_QMARK] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_go] = ACTIONS(2841), + [anon_sym_spawn] = ACTIONS(2841), + [anon_sym_json_DOTdecode] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_CARET] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_LT_DASH] = ACTIONS(2839), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_GT_GT_GT] = ACTIONS(2839), + [anon_sym_AMP_CARET] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_or] = ACTIONS(2841), + [sym_none] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_nil] = ACTIONS(2841), + [anon_sym_QMARK_DOT] = ACTIONS(2839), + [anon_sym_POUND_LBRACK] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_DOLLARif] = ACTIONS(2841), + [anon_sym_is] = ACTIONS(2841), + [anon_sym_BANGis] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_BANGin] = ACTIONS(2839), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_select] = ACTIONS(2841), + [anon_sym_lock] = ACTIONS(2841), + [anon_sym_rlock] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_sql] = ACTIONS(2841), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2839), + [sym_rune_literal] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_c_SQUOTE] = ACTIONS(2839), + [anon_sym_c_DQUOTE] = ACTIONS(2839), + [anon_sym_r_SQUOTE] = ACTIONS(2839), + [anon_sym_r_DQUOTE] = ACTIONS(2839), + [sym_pseudo_compile_time_identifier] = ACTIONS(2841), + [anon_sym_shared] = ACTIONS(2841), + [anon_sym_map_LBRACK] = ACTIONS(2839), + [anon_sym_chan] = ACTIONS(2841), + [anon_sym_thread] = ACTIONS(2841), + [anon_sym_atomic] = ACTIONS(2841), }, [1670] = { [sym_line_comment] = STATE(1670), [sym_block_comment] = STATE(1670), - [sym_identifier] = ACTIONS(2693), + [sym_identifier] = ACTIONS(3015), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [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(2691), - [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_mut] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2693), - [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(2693), - [sym_none] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_nil] = ACTIONS(2693), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_DOLLARif] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_lock] = ACTIONS(2693), - [anon_sym_rlock] = ACTIONS(2693), - [anon_sym_unsafe] = ACTIONS(2693), - [anon_sym_sql] = ACTIONS(2693), - [sym_int_literal] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [anon_sym_c_SQUOTE] = ACTIONS(2691), - [anon_sym_c_DQUOTE] = ACTIONS(2691), - [anon_sym_r_SQUOTE] = ACTIONS(2691), - [anon_sym_r_DQUOTE] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2693), - [anon_sym_shared] = ACTIONS(2693), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2693), - [anon_sym_thread] = ACTIONS(2693), - [anon_sym_atomic] = ACTIONS(2693), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_RBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_COLON] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3013), + [anon_sym_c_SQUOTE] = ACTIONS(3013), + [anon_sym_c_DQUOTE] = ACTIONS(3013), + [anon_sym_r_SQUOTE] = ACTIONS(3013), + [anon_sym_r_DQUOTE] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), }, [1671] = { [sym_line_comment] = STATE(1671), [sym_block_comment] = STATE(1671), - [sym_identifier] = ACTIONS(2837), + [sym_identifier] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2835), - [anon_sym_BANG_EQ] = ACTIONS(2835), - [anon_sym_LT_EQ] = ACTIONS(2835), - [anon_sym_GT_EQ] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_COLON] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_CARET] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2835), - [anon_sym_LT_LT] = ACTIONS(2835), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2835), - [anon_sym_AMP_CARET] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2835), - [anon_sym_POUND_LBRACK] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2835), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2835), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2835), - [sym_rune_literal] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [anon_sym_c_SQUOTE] = ACTIONS(2835), - [anon_sym_c_DQUOTE] = ACTIONS(2835), - [anon_sym_r_SQUOTE] = ACTIONS(2835), - [anon_sym_r_DQUOTE] = ACTIONS(2835), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2835), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3244), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3244), + [anon_sym_AMP_CARET] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3244), + [anon_sym_POUND_LBRACK] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3244), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_c_SQUOTE] = ACTIONS(3244), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3244), + [anon_sym_r_DQUOTE] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3244), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), }, [1672] = { [sym_line_comment] = STATE(1672), [sym_block_comment] = STATE(1672), - [sym_identifier] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_as] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_COMMA] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2825), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_PERCENT] = ACTIONS(2825), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_EQ_EQ] = ACTIONS(2825), - [anon_sym_BANG_EQ] = ACTIONS(2825), - [anon_sym_LT_EQ] = ACTIONS(2825), - [anon_sym_GT_EQ] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_mut] = ACTIONS(2827), - [anon_sym_COLON] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_go] = ACTIONS(2827), - [anon_sym_spawn] = ACTIONS(2827), - [anon_sym_json_DOTdecode] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK2] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2825), - [anon_sym_CARET] = ACTIONS(2825), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_LT_DASH] = ACTIONS(2825), - [anon_sym_LT_LT] = ACTIONS(2825), - [anon_sym_GT_GT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2825), - [anon_sym_AMP_CARET] = ACTIONS(2825), - [anon_sym_AMP_AMP] = ACTIONS(2825), - [anon_sym_PIPE_PIPE] = ACTIONS(2825), - [anon_sym_or] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_nil] = ACTIONS(2827), - [anon_sym_QMARK_DOT] = ACTIONS(2825), - [anon_sym_POUND_LBRACK] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_DOLLARif] = ACTIONS(2827), - [anon_sym_is] = ACTIONS(2827), - [anon_sym_BANGis] = ACTIONS(2825), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_BANGin] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2827), - [anon_sym_rlock] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2827), - [sym_int_literal] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2825), - [sym_rune_literal] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [anon_sym_c_SQUOTE] = ACTIONS(2825), - [anon_sym_c_DQUOTE] = ACTIONS(2825), - [anon_sym_r_SQUOTE] = ACTIONS(2825), - [anon_sym_r_DQUOTE] = ACTIONS(2825), - [sym_pseudo_compile_time_identifier] = ACTIONS(2827), - [anon_sym_shared] = ACTIONS(2827), - [anon_sym_map_LBRACK] = ACTIONS(2825), - [anon_sym_chan] = ACTIONS(2827), - [anon_sym_thread] = ACTIONS(2827), - [anon_sym_atomic] = ACTIONS(2827), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_COMMA] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2831), + [anon_sym_POUND_LBRACK] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2831), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_c_SQUOTE] = ACTIONS(2831), + [anon_sym_c_DQUOTE] = ACTIONS(2831), + [anon_sym_r_SQUOTE] = ACTIONS(2831), + [anon_sym_r_DQUOTE] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2831), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), }, [1673] = { [sym_line_comment] = STATE(1673), [sym_block_comment] = STATE(1673), + [sym_identifier] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_COMMA] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_RBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_CARET] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2827), + [anon_sym_LT_LT] = ACTIONS(2827), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2827), + [anon_sym_AMP_CARET] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_PIPE_PIPE] = ACTIONS(2827), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2827), + [anon_sym_POUND_LBRACK] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2827), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2827), + [sym_rune_literal] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [anon_sym_c_SQUOTE] = ACTIONS(2827), + [anon_sym_c_DQUOTE] = ACTIONS(2827), + [anon_sym_r_SQUOTE] = ACTIONS(2827), + [anon_sym_r_DQUOTE] = ACTIONS(2827), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2827), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + }, + [1674] = { + [sym_line_comment] = STATE(1674), + [sym_block_comment] = STATE(1674), [sym_identifier] = ACTIONS(2823), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -202848,9 +203169,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2823), [anon_sym_atomic] = ACTIONS(2823), }, - [1674] = { - [sym_line_comment] = STATE(1674), - [sym_block_comment] = STATE(1674), + [1675] = { + [sym_line_comment] = STATE(1675), + [sym_block_comment] = STATE(1675), + [sym_identifier] = ACTIONS(2397), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_COMMA] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SLASH] = ACTIONS(2397), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_GT] = ACTIONS(2397), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), + [anon_sym_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_EQ] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(2397), + [anon_sym_spawn] = ACTIONS(2397), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LBRACK2] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(2395), + [anon_sym_LT_LT] = ACTIONS(2395), + [anon_sym_GT_GT] = ACTIONS(2397), + [anon_sym_GT_GT_GT] = ACTIONS(2395), + [anon_sym_AMP_CARET] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_or] = ACTIONS(2397), + [sym_none] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_nil] = ACTIONS(2397), + [anon_sym_QMARK_DOT] = ACTIONS(2395), + [anon_sym_POUND_LBRACK] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_DOLLARif] = ACTIONS(2397), + [anon_sym_is] = ACTIONS(2397), + [anon_sym_BANGis] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_BANGin] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_select] = ACTIONS(2397), + [anon_sym_lock] = ACTIONS(2397), + [anon_sym_rlock] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_sql] = ACTIONS(2397), + [sym_int_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2397), + [anon_sym_shared] = ACTIONS(2397), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2397), + [anon_sym_thread] = ACTIONS(2397), + [anon_sym_atomic] = ACTIONS(2397), + }, + [1676] = { + [sym_line_comment] = STATE(1676), + [sym_block_comment] = STATE(1676), + [sym_identifier] = ACTIONS(2435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_COMMA] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2433), + [anon_sym_BANG_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_COLON] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2435), + [anon_sym_json_DOTdecode] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LBRACK2] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_LT_DASH] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_GT_GT] = ACTIONS(2435), + [anon_sym_GT_GT_GT] = ACTIONS(2433), + [anon_sym_AMP_CARET] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2433), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_or] = ACTIONS(2435), + [sym_none] = ACTIONS(2435), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_nil] = ACTIONS(2435), + [anon_sym_QMARK_DOT] = ACTIONS(2433), + [anon_sym_POUND_LBRACK] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_DOLLARif] = ACTIONS(2435), + [anon_sym_is] = ACTIONS(2435), + [anon_sym_BANGis] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_BANGin] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2435), + [anon_sym_rlock] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_sql] = ACTIONS(2435), + [sym_int_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2433), + [sym_rune_literal] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [anon_sym_c_SQUOTE] = ACTIONS(2433), + [anon_sym_c_DQUOTE] = ACTIONS(2433), + [anon_sym_r_SQUOTE] = ACTIONS(2433), + [anon_sym_r_DQUOTE] = ACTIONS(2433), + [sym_pseudo_compile_time_identifier] = ACTIONS(2435), + [anon_sym_shared] = ACTIONS(2435), + [anon_sym_map_LBRACK] = ACTIONS(2433), + [anon_sym_chan] = ACTIONS(2435), + [anon_sym_thread] = ACTIONS(2435), + [anon_sym_atomic] = ACTIONS(2435), + }, + [1677] = { + [sym_line_comment] = STATE(1677), + [sym_block_comment] = STATE(1677), + [sym_identifier] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_LT_EQ] = ACTIONS(3294), + [anon_sym_GT_EQ] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_RBRACK] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3294), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_CARET] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3294), + [anon_sym_LT_LT] = ACTIONS(3294), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3294), + [anon_sym_AMP_CARET] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_PIPE_PIPE] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_QMARK_DOT] = ACTIONS(3294), + [anon_sym_POUND_LBRACK] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_BANGin] = ACTIONS(3294), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3294), + [sym_rune_literal] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(3294), + [anon_sym_c_SQUOTE] = ACTIONS(3294), + [anon_sym_c_DQUOTE] = ACTIONS(3294), + [anon_sym_r_SQUOTE] = ACTIONS(3294), + [anon_sym_r_DQUOTE] = ACTIONS(3294), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3294), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + }, + [1678] = { + [sym_line_comment] = STATE(1678), + [sym_block_comment] = STATE(1678), + [sym_identifier] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_EQ_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3290), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3290), + [anon_sym_PIPE] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3290), + [anon_sym_LT_LT] = ACTIONS(3290), + [anon_sym_GT_GT] = ACTIONS(3292), + [anon_sym_GT_GT_GT] = ACTIONS(3290), + [anon_sym_AMP_CARET] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_or] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_QMARK_DOT] = ACTIONS(3290), + [anon_sym_POUND_LBRACK] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_is] = ACTIONS(3292), + [anon_sym_BANGis] = ACTIONS(3290), + [anon_sym_in] = ACTIONS(3292), + [anon_sym_BANGin] = ACTIONS(3290), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3290), + [sym_rune_literal] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_c_SQUOTE] = ACTIONS(3290), + [anon_sym_c_DQUOTE] = ACTIONS(3290), + [anon_sym_r_SQUOTE] = ACTIONS(3290), + [anon_sym_r_DQUOTE] = ACTIONS(3290), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3290), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + }, + [1679] = { + [sym_line_comment] = STATE(1679), + [sym_block_comment] = STATE(1679), + [sym_identifier] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3268), + [anon_sym_AMP_CARET] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3268), + [anon_sym_POUND_LBRACK] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3268), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3268), + [sym_rune_literal] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_c_SQUOTE] = ACTIONS(3268), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3268), + [anon_sym_r_DQUOTE] = ACTIONS(3268), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3268), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + }, + [1680] = { + [sym_line_comment] = STATE(1680), + [sym_block_comment] = STATE(1680), [sym_identifier] = ACTIONS(2819), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -202931,9 +203667,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2819), [anon_sym_atomic] = ACTIONS(2819), }, - [1675] = { - [sym_line_comment] = STATE(1675), - [sym_block_comment] = STATE(1675), + [1681] = { + [sym_line_comment] = STATE(1681), + [sym_block_comment] = STATE(1681), + [sym_identifier] = ACTIONS(3045), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(4315), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_c_SQUOTE] = ACTIONS(3043), + [anon_sym_c_DQUOTE] = ACTIONS(3043), + [anon_sym_r_SQUOTE] = ACTIONS(3043), + [anon_sym_r_DQUOTE] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), + }, + [1682] = { + [sym_line_comment] = STATE(1682), + [sym_block_comment] = STATE(1682), [sym_identifier] = ACTIONS(2659), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -203014,258 +203833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2659), [anon_sym_atomic] = ACTIONS(2659), }, - [1676] = { - [sym_line_comment] = STATE(1676), - [sym_block_comment] = STATE(1676), - [sym_identifier] = ACTIONS(2423), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_COMMA] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2421), - [anon_sym_BANG_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_COLON] = ACTIONS(2421), - [anon_sym_PLUS_PLUS] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2421), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2421), - [anon_sym_CARET] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2421), - [anon_sym_AMP_CARET] = ACTIONS(2421), - [anon_sym_AMP_AMP] = ACTIONS(2421), - [anon_sym_PIPE_PIPE] = ACTIONS(2421), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2421), - [anon_sym_POUND_LBRACK] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2421), - [sym_rune_literal] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [anon_sym_c_SQUOTE] = ACTIONS(2421), - [anon_sym_c_DQUOTE] = ACTIONS(2421), - [anon_sym_r_SQUOTE] = ACTIONS(2421), - [anon_sym_r_DQUOTE] = ACTIONS(2421), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2421), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - }, - [1677] = { - [sym_line_comment] = STATE(1677), - [sym_block_comment] = STATE(1677), - [sym_identifier] = ACTIONS(2393), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_COMMA] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2391), - [anon_sym_SLASH] = ACTIONS(2393), - [anon_sym_PERCENT] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_GT] = ACTIONS(2393), - [anon_sym_EQ_EQ] = ACTIONS(2391), - [anon_sym_BANG_EQ] = ACTIONS(2391), - [anon_sym_LT_EQ] = ACTIONS(2391), - [anon_sym_GT_EQ] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_COLON] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_QMARK] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_go] = ACTIONS(2393), - [anon_sym_spawn] = ACTIONS(2393), - [anon_sym_json_DOTdecode] = ACTIONS(2391), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_CARET] = ACTIONS(2391), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_LT_DASH] = ACTIONS(2391), - [anon_sym_LT_LT] = ACTIONS(2391), - [anon_sym_GT_GT] = ACTIONS(2393), - [anon_sym_GT_GT_GT] = ACTIONS(2391), - [anon_sym_AMP_CARET] = ACTIONS(2391), - [anon_sym_AMP_AMP] = ACTIONS(2391), - [anon_sym_PIPE_PIPE] = ACTIONS(2391), - [anon_sym_or] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_nil] = ACTIONS(2393), - [anon_sym_QMARK_DOT] = ACTIONS(2391), - [anon_sym_POUND_LBRACK] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_DOLLARif] = ACTIONS(2393), - [anon_sym_is] = ACTIONS(2393), - [anon_sym_BANGis] = ACTIONS(2391), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_BANGin] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_select] = ACTIONS(2393), - [anon_sym_lock] = ACTIONS(2393), - [anon_sym_rlock] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_sql] = ACTIONS(2393), - [sym_int_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2391), - [sym_rune_literal] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [anon_sym_c_SQUOTE] = ACTIONS(2391), - [anon_sym_c_DQUOTE] = ACTIONS(2391), - [anon_sym_r_SQUOTE] = ACTIONS(2391), - [anon_sym_r_DQUOTE] = ACTIONS(2391), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2393), - [anon_sym_map_LBRACK] = ACTIONS(2391), - [anon_sym_chan] = ACTIONS(2393), - [anon_sym_thread] = ACTIONS(2393), - [anon_sym_atomic] = ACTIONS(2393), - }, - [1678] = { - [sym_line_comment] = STATE(1678), - [sym_block_comment] = STATE(1678), - [sym_identifier] = ACTIONS(3286), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_LT_EQ] = ACTIONS(3284), - [anon_sym_GT_EQ] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_RBRACK] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_CARET] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_LT_LT] = ACTIONS(3284), - [anon_sym_GT_GT] = ACTIONS(3286), - [anon_sym_GT_GT_GT] = ACTIONS(3284), - [anon_sym_AMP_CARET] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_or] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_QMARK_DOT] = ACTIONS(3284), - [anon_sym_POUND_LBRACK] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_is] = ACTIONS(3286), - [anon_sym_BANGis] = ACTIONS(3284), - [anon_sym_in] = ACTIONS(3286), - [anon_sym_BANGin] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3284), - [sym_rune_literal] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_c_SQUOTE] = ACTIONS(3284), - [anon_sym_c_DQUOTE] = ACTIONS(3284), - [anon_sym_r_SQUOTE] = ACTIONS(3284), - [anon_sym_r_DQUOTE] = ACTIONS(3284), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3284), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - }, - [1679] = { - [sym_line_comment] = STATE(1679), - [sym_block_comment] = STATE(1679), + [1683] = { + [sym_line_comment] = STATE(1683), + [sym_block_comment] = STATE(1683), [sym_identifier] = ACTIONS(2655), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -203346,855 +203916,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2655), [anon_sym_atomic] = ACTIONS(2655), }, - [1680] = { - [sym_line_comment] = STATE(1680), - [sym_block_comment] = STATE(1680), - [sym_identifier] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(4317), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - }, - [1681] = { - [sym_line_comment] = STATE(1681), - [sym_block_comment] = STATE(1681), - [sym_identifier] = ACTIONS(2473), - [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_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_PIPE] = ACTIONS(2473), - [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), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [anon_sym_c_SQUOTE] = ACTIONS(2471), - [anon_sym_c_DQUOTE] = ACTIONS(2471), - [anon_sym_r_SQUOTE] = ACTIONS(2471), - [anon_sym_r_DQUOTE] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(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), - }, - [1682] = { - [sym_line_comment] = STATE(1682), - [sym_block_comment] = STATE(1682), - [sym_identifier] = ACTIONS(3248), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_as] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_COMMA] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_LT_EQ] = ACTIONS(3246), - [anon_sym_GT_EQ] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_RBRACK] = ACTIONS(3246), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_CARET] = ACTIONS(3246), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3246), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_GT_GT_GT] = ACTIONS(3246), - [anon_sym_AMP_CARET] = ACTIONS(3246), - [anon_sym_AMP_AMP] = ACTIONS(3246), - [anon_sym_PIPE_PIPE] = ACTIONS(3246), - [anon_sym_or] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_QMARK_DOT] = ACTIONS(3246), - [anon_sym_POUND_LBRACK] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_BANGis] = ACTIONS(3246), - [anon_sym_in] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3246), - [sym_rune_literal] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_c_SQUOTE] = ACTIONS(3246), - [anon_sym_c_DQUOTE] = ACTIONS(3246), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3246), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3246), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - }, - [1683] = { - [sym_line_comment] = STATE(1683), - [sym_block_comment] = STATE(1683), - [sym_identifier] = ACTIONS(2419), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_COMMA] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), - [anon_sym_EQ_EQ] = ACTIONS(2417), - [anon_sym_BANG_EQ] = ACTIONS(2417), - [anon_sym_LT_EQ] = ACTIONS(2417), - [anon_sym_GT_EQ] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_COLON] = ACTIONS(2417), - [anon_sym_PLUS_PLUS] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2417), - [anon_sym_QMARK] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_go] = ACTIONS(2419), - [anon_sym_spawn] = ACTIONS(2419), - [anon_sym_json_DOTdecode] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_LBRACK2] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2417), - [anon_sym_CARET] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_LT_DASH] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_GT_GT] = ACTIONS(2419), - [anon_sym_GT_GT_GT] = ACTIONS(2417), - [anon_sym_AMP_CARET] = ACTIONS(2417), - [anon_sym_AMP_AMP] = ACTIONS(2417), - [anon_sym_PIPE_PIPE] = ACTIONS(2417), - [anon_sym_or] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_nil] = ACTIONS(2419), - [anon_sym_QMARK_DOT] = ACTIONS(2417), - [anon_sym_POUND_LBRACK] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_DOLLARif] = ACTIONS(2419), - [anon_sym_is] = ACTIONS(2419), - [anon_sym_BANGis] = ACTIONS(2417), - [anon_sym_in] = ACTIONS(2419), - [anon_sym_BANGin] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_select] = ACTIONS(2419), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_sql] = ACTIONS(2419), - [sym_int_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2417), - [sym_rune_literal] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2417), - [anon_sym_c_SQUOTE] = ACTIONS(2417), - [anon_sym_c_DQUOTE] = ACTIONS(2417), - [anon_sym_r_SQUOTE] = ACTIONS(2417), - [anon_sym_r_DQUOTE] = ACTIONS(2417), - [sym_pseudo_compile_time_identifier] = ACTIONS(2419), - [anon_sym_shared] = ACTIONS(2419), - [anon_sym_map_LBRACK] = ACTIONS(2417), - [anon_sym_chan] = ACTIONS(2419), - [anon_sym_thread] = ACTIONS(2419), - [anon_sym_atomic] = ACTIONS(2419), - }, [1684] = { [sym_line_comment] = STATE(1684), [sym_block_comment] = STATE(1684), - [sym_identifier] = ACTIONS(3274), + [sym_identifier] = ACTIONS(2471), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_GT] = ACTIONS(3274), - [anon_sym_EQ_EQ] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_LT_EQ] = ACTIONS(3272), - [anon_sym_GT_EQ] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3272), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3272), - [anon_sym_PIPE] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_CARET] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_LT_LT] = ACTIONS(3272), - [anon_sym_GT_GT] = ACTIONS(3274), - [anon_sym_GT_GT_GT] = ACTIONS(3272), - [anon_sym_AMP_CARET] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_or] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_QMARK_DOT] = ACTIONS(3272), - [anon_sym_POUND_LBRACK] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_is] = ACTIONS(3274), - [anon_sym_BANGis] = ACTIONS(3272), - [anon_sym_in] = ACTIONS(3274), - [anon_sym_BANGin] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3272), - [sym_rune_literal] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_c_SQUOTE] = ACTIONS(3272), - [anon_sym_c_DQUOTE] = ACTIONS(3272), - [anon_sym_r_SQUOTE] = ACTIONS(3272), - [anon_sym_r_DQUOTE] = ACTIONS(3272), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [anon_sym_map_LBRACK] = ACTIONS(3272), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), + [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_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_PIPE] = ACTIONS(2471), + [anon_sym_LBRACK2] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_LT_DASH] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_GT_GT_GT] = ACTIONS(2469), + [anon_sym_AMP_CARET] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_or] = ACTIONS(2471), + [sym_none] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_nil] = ACTIONS(2471), + [anon_sym_QMARK_DOT] = ACTIONS(2469), + [anon_sym_POUND_LBRACK] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_DOLLARif] = ACTIONS(2471), + [anon_sym_is] = ACTIONS(2471), + [anon_sym_BANGis] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2471), + [anon_sym_BANGin] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_select] = ACTIONS(2471), + [anon_sym_lock] = ACTIONS(2471), + [anon_sym_rlock] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2471), + [sym_int_literal] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2471), + [anon_sym_shared] = ACTIONS(2471), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2471), + [anon_sym_thread] = ACTIONS(2471), + [anon_sym_atomic] = ACTIONS(2471), }, [1685] = { [sym_line_comment] = STATE(1685), [sym_block_comment] = STATE(1685), - [sym_identifier] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_as] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PERCENT] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_EQ_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_RBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_COLON] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3256), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3256), - [anon_sym_AMP_CARET] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_PIPE_PIPE] = ACTIONS(3256), - [anon_sym_or] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_QMARK_DOT] = ACTIONS(3256), - [anon_sym_POUND_LBRACK] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_is] = ACTIONS(3258), - [anon_sym_BANGis] = ACTIONS(3256), - [anon_sym_in] = ACTIONS(3258), - [anon_sym_BANGin] = ACTIONS(3256), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3256), - [sym_rune_literal] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_c_SQUOTE] = ACTIONS(3256), - [anon_sym_c_DQUOTE] = ACTIONS(3256), - [anon_sym_r_SQUOTE] = ACTIONS(3256), - [anon_sym_r_DQUOTE] = ACTIONS(3256), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3256), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3264), + [anon_sym_AMP_CARET] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3264), + [anon_sym_POUND_LBRACK] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3264), + [sym_rune_literal] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3264), + [anon_sym_c_DQUOTE] = ACTIONS(3264), + [anon_sym_r_SQUOTE] = ACTIONS(3264), + [anon_sym_r_DQUOTE] = ACTIONS(3264), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3264), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), }, [1686] = { [sym_line_comment] = STATE(1686), [sym_block_comment] = STATE(1686), - [sym_identifier] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2865), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_as] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_PERCENT] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_EQ_EQ] = ACTIONS(2839), - [anon_sym_BANG_EQ] = ACTIONS(2839), - [anon_sym_LT_EQ] = ACTIONS(2839), - [anon_sym_GT_EQ] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_RBRACK] = ACTIONS(4319), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_mut] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_go] = ACTIONS(2841), - [anon_sym_spawn] = ACTIONS(2841), - [anon_sym_json_DOTdecode] = ACTIONS(2839), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK2] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_CARET] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_LT_DASH] = ACTIONS(2839), - [anon_sym_LT_LT] = ACTIONS(2839), - [anon_sym_GT_GT] = ACTIONS(2841), - [anon_sym_GT_GT_GT] = ACTIONS(2839), - [anon_sym_AMP_CARET] = ACTIONS(2839), - [anon_sym_AMP_AMP] = ACTIONS(2839), - [anon_sym_PIPE_PIPE] = ACTIONS(2839), - [anon_sym_or] = ACTIONS(2841), - [sym_none] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_nil] = ACTIONS(2841), - [anon_sym_QMARK_DOT] = ACTIONS(2839), - [anon_sym_POUND_LBRACK] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_DOLLARif] = ACTIONS(2841), - [anon_sym_is] = ACTIONS(2841), - [anon_sym_BANGis] = ACTIONS(2839), - [anon_sym_in] = ACTIONS(2841), - [anon_sym_BANGin] = ACTIONS(2839), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_select] = ACTIONS(2841), - [anon_sym_lock] = ACTIONS(2841), - [anon_sym_rlock] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_sql] = ACTIONS(2841), - [sym_int_literal] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(2839), - [sym_rune_literal] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_c_SQUOTE] = ACTIONS(2839), - [anon_sym_c_DQUOTE] = ACTIONS(2839), - [anon_sym_r_SQUOTE] = ACTIONS(2839), - [anon_sym_r_DQUOTE] = ACTIONS(2839), - [sym_pseudo_compile_time_identifier] = ACTIONS(2841), - [anon_sym_shared] = ACTIONS(2841), - [anon_sym_map_LBRACK] = ACTIONS(2839), - [anon_sym_chan] = ACTIONS(2841), - [anon_sym_thread] = ACTIONS(2841), - [anon_sym_atomic] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(2865), + [anon_sym_as] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_RBRACK] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_mut] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_go] = ACTIONS(2865), + [anon_sym_spawn] = ACTIONS(2865), + [anon_sym_json_DOTdecode] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_LT_DASH] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_or] = ACTIONS(2865), + [sym_none] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_nil] = ACTIONS(2865), + [anon_sym_QMARK_DOT] = ACTIONS(2863), + [anon_sym_POUND_LBRACK] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_DOLLARif] = ACTIONS(2865), + [anon_sym_is] = ACTIONS(2865), + [anon_sym_BANGis] = ACTIONS(2863), + [anon_sym_in] = ACTIONS(2865), + [anon_sym_BANGin] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_select] = ACTIONS(2865), + [anon_sym_lock] = ACTIONS(2865), + [anon_sym_rlock] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_sql] = ACTIONS(2865), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2863), + [sym_rune_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_c_SQUOTE] = ACTIONS(2863), + [anon_sym_c_DQUOTE] = ACTIONS(2863), + [anon_sym_r_SQUOTE] = ACTIONS(2863), + [anon_sym_r_DQUOTE] = ACTIONS(2863), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), + [anon_sym_shared] = ACTIONS(2865), + [anon_sym_map_LBRACK] = ACTIONS(2863), + [anon_sym_chan] = ACTIONS(2865), + [anon_sym_thread] = ACTIONS(2865), + [anon_sym_atomic] = ACTIONS(2865), }, [1687] = { [sym_line_comment] = STATE(1687), [sym_block_comment] = STATE(1687), - [sym_identifier] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_mut] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_go] = ACTIONS(2953), - [anon_sym_spawn] = ACTIONS(2953), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_nil] = ACTIONS(2953), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_DOLLARif] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_lock] = ACTIONS(2953), - [anon_sym_rlock] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_sql] = ACTIONS(2953), - [sym_int_literal] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_c_SQUOTE] = ACTIONS(2951), - [anon_sym_c_DQUOTE] = ACTIONS(2951), - [anon_sym_r_SQUOTE] = ACTIONS(2951), - [anon_sym_r_DQUOTE] = ACTIONS(2951), - [sym_pseudo_compile_time_identifier] = ACTIONS(2953), - [anon_sym_shared] = ACTIONS(2953), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2953), - [anon_sym_thread] = ACTIONS(2953), - [anon_sym_atomic] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_AMP_CARET] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_POUND_LBRACK] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2145), + [sym_rune_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2145), + [anon_sym_r_SQUOTE] = ACTIONS(2145), + [anon_sym_r_DQUOTE] = ACTIONS(2145), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2145), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, [1688] = { [sym_line_comment] = STATE(1688), [sym_block_comment] = STATE(1688), - [sym_identifier] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_AMP_CARET] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_POUND_LBRACK] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2091), - [sym_rune_literal] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_c_SQUOTE] = ACTIONS(2091), - [anon_sym_c_DQUOTE] = ACTIONS(2091), - [anon_sym_r_SQUOTE] = ACTIONS(2091), - [anon_sym_r_DQUOTE] = ACTIONS(2091), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2091), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(4320), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2955), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_CARET] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2955), + [anon_sym_POUND_LBRACK] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2955), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2955), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2955), + [sym_rune_literal] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_c_SQUOTE] = ACTIONS(2955), + [anon_sym_c_DQUOTE] = ACTIONS(2955), + [anon_sym_r_SQUOTE] = ACTIONS(2955), + [anon_sym_r_DQUOTE] = ACTIONS(2955), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2955), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), }, [1689] = { [sym_line_comment] = STATE(1689), [sym_block_comment] = STATE(1689), - [sym_identifier] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2835), [anon_sym_COMMA] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2829), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2829), - [anon_sym_BANG_EQ] = ACTIONS(2829), - [anon_sym_LT_EQ] = ACTIONS(2829), - [anon_sym_GT_EQ] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_COLON] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_CARET] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2829), - [anon_sym_LT_LT] = ACTIONS(2829), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2829), - [anon_sym_AMP_CARET] = ACTIONS(2829), - [anon_sym_AMP_AMP] = ACTIONS(2829), - [anon_sym_PIPE_PIPE] = ACTIONS(2829), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2829), - [anon_sym_POUND_LBRACK] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2829), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2829), - [sym_rune_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [anon_sym_c_SQUOTE] = ACTIONS(2829), - [anon_sym_c_DQUOTE] = ACTIONS(2829), - [anon_sym_r_SQUOTE] = ACTIONS(2829), - [anon_sym_r_DQUOTE] = ACTIONS(2829), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2829), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2835), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2835), + [anon_sym_AMP_CARET] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2835), + [anon_sym_POUND_LBRACK] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2835), + [sym_rune_literal] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [anon_sym_c_SQUOTE] = ACTIONS(2835), + [anon_sym_c_DQUOTE] = ACTIONS(2835), + [anon_sym_r_SQUOTE] = ACTIONS(2835), + [anon_sym_r_DQUOTE] = ACTIONS(2835), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2835), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), }, [1690] = { [sym_line_comment] = STATE(1690), [sym_block_comment] = STATE(1690), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), [sym_identifier] = ACTIONS(851), [anon_sym_LF] = ACTIONS(851), [anon_sym_CR] = ACTIONS(851), @@ -204204,12 +204442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(851), [anon_sym_DOT] = ACTIONS(851), [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(855), [anon_sym_COMMA] = ACTIONS(851), [anon_sym_RBRACE] = ACTIONS(851), [anon_sym_LPAREN] = ACTIONS(851), [anon_sym___global] = ACTIONS(851), - [anon_sym_fn] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(869), [anon_sym_PLUS] = ACTIONS(851), [anon_sym_DASH] = ACTIONS(851), [anon_sym_STAR] = ACTIONS(851), @@ -204223,7 +204461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(851), [anon_sym_DOT_DOT_DOT] = ACTIONS(851), [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(873), [anon_sym_pub] = ACTIONS(851), [anon_sym_mut] = ACTIONS(851), [anon_sym_PLUS_PLUS] = ACTIONS(851), @@ -204247,7 +204485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(851), [anon_sym_in] = ACTIONS(851), [anon_sym_BANGin] = ACTIONS(851), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(351), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -204257,594 +204495,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1691] = { [sym_line_comment] = STATE(1691), [sym_block_comment] = STATE(1691), - [sym_identifier] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_as] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_COMMA] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2829), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2829), - [anon_sym_BANG_EQ] = ACTIONS(2829), - [anon_sym_LT_EQ] = ACTIONS(2829), - [anon_sym_GT_EQ] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_mut] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_go] = ACTIONS(2831), - [anon_sym_spawn] = ACTIONS(2831), - [anon_sym_json_DOTdecode] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK2] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_CARET] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_LT_DASH] = ACTIONS(2829), - [anon_sym_LT_LT] = ACTIONS(2829), - [anon_sym_GT_GT] = ACTIONS(2831), - [anon_sym_GT_GT_GT] = ACTIONS(2829), - [anon_sym_AMP_CARET] = ACTIONS(2829), - [anon_sym_AMP_AMP] = ACTIONS(2829), - [anon_sym_PIPE_PIPE] = ACTIONS(2829), - [anon_sym_or] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_nil] = ACTIONS(2831), - [anon_sym_QMARK_DOT] = ACTIONS(2829), - [anon_sym_POUND_LBRACK] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_DOLLARif] = ACTIONS(2831), - [anon_sym_is] = ACTIONS(2831), - [anon_sym_BANGis] = ACTIONS(2829), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_BANGin] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_select] = ACTIONS(2831), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_sql] = ACTIONS(2831), - [sym_int_literal] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2829), - [sym_rune_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [anon_sym_c_SQUOTE] = ACTIONS(2829), - [anon_sym_c_DQUOTE] = ACTIONS(2829), - [anon_sym_r_SQUOTE] = ACTIONS(2829), - [anon_sym_r_DQUOTE] = ACTIONS(2829), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(2831), - [anon_sym_map_LBRACK] = ACTIONS(2829), - [anon_sym_chan] = ACTIONS(2831), - [anon_sym_thread] = ACTIONS(2831), - [anon_sym_atomic] = ACTIONS(2831), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_RBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2835), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2835), + [anon_sym_AMP_CARET] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2835), + [anon_sym_POUND_LBRACK] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2835), + [sym_rune_literal] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [anon_sym_c_SQUOTE] = ACTIONS(2835), + [anon_sym_c_DQUOTE] = ACTIONS(2835), + [anon_sym_r_SQUOTE] = ACTIONS(2835), + [anon_sym_r_DQUOTE] = ACTIONS(2835), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2835), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), }, [1692] = { [sym_line_comment] = STATE(1692), [sym_block_comment] = STATE(1692), - [sym_identifier] = ACTIONS(2093), + [sym_identifier] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_RBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_AMP_CARET] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_POUND_LBRACK] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2091), - [sym_rune_literal] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_c_SQUOTE] = ACTIONS(2091), - [anon_sym_c_DQUOTE] = ACTIONS(2091), - [anon_sym_r_SQUOTE] = ACTIONS(2091), - [anon_sym_r_DQUOTE] = ACTIONS(2091), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2091), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(3045), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_c_SQUOTE] = ACTIONS(3043), + [anon_sym_c_DQUOTE] = ACTIONS(3043), + [anon_sym_r_SQUOTE] = ACTIONS(3043), + [anon_sym_r_DQUOTE] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, [1693] = { [sym_line_comment] = STATE(1693), [sym_block_comment] = STATE(1693), - [sym_identifier] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3045), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_as] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_mut] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_go] = ACTIONS(3045), + [anon_sym_spawn] = ACTIONS(3045), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_or] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_true] = ACTIONS(3045), + [sym_false] = ACTIONS(3045), + [sym_nil] = ACTIONS(3045), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_DOLLARif] = ACTIONS(3045), + [anon_sym_is] = ACTIONS(3045), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3045), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_select] = ACTIONS(3045), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(3045), + [anon_sym_sql] = ACTIONS(3045), + [sym_int_literal] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_c_SQUOTE] = ACTIONS(3043), + [anon_sym_c_DQUOTE] = ACTIONS(3043), + [anon_sym_r_SQUOTE] = ACTIONS(3043), + [anon_sym_r_DQUOTE] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3045), + [anon_sym_shared] = ACTIONS(3045), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3045), + [anon_sym_thread] = ACTIONS(3045), + [anon_sym_atomic] = ACTIONS(3045), }, [1694] = { [sym_line_comment] = STATE(1694), [sym_block_comment] = STATE(1694), - [sym_identifier] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(4324), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_mut] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_go] = ACTIONS(3031), - [anon_sym_spawn] = ACTIONS(3031), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_true] = ACTIONS(3031), - [sym_false] = ACTIONS(3031), - [sym_nil] = ACTIONS(3031), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_DOLLARif] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3031), - [anon_sym_lock] = ACTIONS(3031), - [anon_sym_rlock] = ACTIONS(3031), - [anon_sym_unsafe] = ACTIONS(3031), - [anon_sym_sql] = ACTIONS(3031), - [sym_int_literal] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3031), - [anon_sym_shared] = ACTIONS(3031), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3031), - [anon_sym_thread] = ACTIONS(3031), - [anon_sym_atomic] = ACTIONS(3031), - }, - [1695] = { - [sym_line_comment] = STATE(1695), - [sym_block_comment] = STATE(1695), - [sym_reference_expression] = STATE(4543), - [sym_type_reference_expression] = STATE(2247), - [sym_plain_type] = STATE(2331), - [sym__plain_type_without_special] = STATE(2322), - [sym_anon_struct_type] = STATE(2323), - [sym_multi_return_type] = STATE(2322), - [sym_result_type] = STATE(2322), - [sym_option_type] = STATE(2322), - [sym_qualified_type] = STATE(2247), - [sym_fixed_array_type] = STATE(2323), - [sym_array_type] = STATE(2323), - [sym_pointer_type] = STATE(2323), - [sym_wrong_pointer_type] = STATE(2323), - [sym_map_type] = STATE(2323), - [sym_channel_type] = STATE(2323), - [sym_shared_type] = STATE(2323), - [sym_thread_type] = STATE(2323), - [sym_atomic_type] = STATE(2323), - [sym_generic_type] = STATE(2323), - [sym_function_type] = STATE(2323), - [sym_identifier] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym___global] = ACTIONS(877), - [anon_sym_fn] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4333), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(4335), - [anon_sym_pub] = ACTIONS(877), - [anon_sym_mut] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4343), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(4345), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4349), - [anon_sym_thread] = ACTIONS(4351), - [anon_sym_atomic] = ACTIONS(4353), - [anon_sym_AT_LBRACK] = ACTIONS(877), - }, - [1696] = { - [sym_line_comment] = STATE(1696), - [sym_block_comment] = STATE(1696), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym___global] = ACTIONS(857), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_pub] = ACTIONS(857), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_AT_LBRACK] = ACTIONS(857), - }, - [1697] = { - [sym_line_comment] = STATE(1697), - [sym_block_comment] = STATE(1697), - [sym_reference_expression] = STATE(4543), - [sym_type_reference_expression] = STATE(2247), - [sym_plain_type] = STATE(2319), - [sym__plain_type_without_special] = STATE(2322), - [sym_anon_struct_type] = STATE(2323), - [sym_multi_return_type] = STATE(2322), - [sym_result_type] = STATE(2322), - [sym_option_type] = STATE(2322), - [sym_qualified_type] = STATE(2247), - [sym_fixed_array_type] = STATE(2323), - [sym_array_type] = STATE(2323), - [sym_pointer_type] = STATE(2323), - [sym_wrong_pointer_type] = STATE(2323), - [sym_map_type] = STATE(2323), - [sym_channel_type] = STATE(2323), - [sym_shared_type] = STATE(2323), - [sym_thread_type] = STATE(2323), - [sym_atomic_type] = STATE(2323), - [sym_generic_type] = STATE(2323), - [sym_function_type] = STATE(2323), - [sym_identifier] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym___global] = ACTIONS(881), - [anon_sym_fn] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4333), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(4335), - [anon_sym_pub] = ACTIONS(881), - [anon_sym_mut] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4343), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(4345), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4349), - [anon_sym_thread] = ACTIONS(4351), - [anon_sym_atomic] = ACTIONS(4353), - [anon_sym_AT_LBRACK] = ACTIONS(881), - }, - [1698] = { - [sym_line_comment] = STATE(1698), - [sym_block_comment] = STATE(1698), - [sym_reference_expression] = STATE(4543), - [sym_type_reference_expression] = STATE(2247), - [sym_plain_type] = STATE(2313), - [sym__plain_type_without_special] = STATE(2322), - [sym_anon_struct_type] = STATE(2323), - [sym_multi_return_type] = STATE(2322), - [sym_result_type] = STATE(2322), - [sym_option_type] = STATE(2322), - [sym_qualified_type] = STATE(2247), - [sym_fixed_array_type] = STATE(2323), - [sym_array_type] = STATE(2323), - [sym_pointer_type] = STATE(2323), - [sym_wrong_pointer_type] = STATE(2323), - [sym_map_type] = STATE(2323), - [sym_channel_type] = STATE(2323), - [sym_shared_type] = STATE(2323), - [sym_thread_type] = STATE(2323), - [sym_atomic_type] = STATE(2323), - [sym_generic_type] = STATE(2323), - [sym_function_type] = STATE(2323), - [sym_identifier] = ACTIONS(4327), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2244), + [sym_plain_type] = STATE(2361), + [sym__plain_type_without_special] = STATE(2366), + [sym_anon_struct_type] = STATE(2365), + [sym_multi_return_type] = STATE(2366), + [sym_result_type] = STATE(2366), + [sym_option_type] = STATE(2366), + [sym_qualified_type] = STATE(2244), + [sym_fixed_array_type] = STATE(2365), + [sym_array_type] = STATE(2365), + [sym_pointer_type] = STATE(2365), + [sym_wrong_pointer_type] = STATE(2365), + [sym_map_type] = STATE(2365), + [sym_channel_type] = STATE(2365), + [sym_shared_type] = STATE(2365), + [sym_thread_type] = STATE(2365), + [sym_atomic_type] = STATE(2365), + [sym_generic_type] = STATE(2365), + [sym_function_type] = STATE(2365), + [sym_identifier] = ACTIONS(4325), [anon_sym_LF] = ACTIONS(821), [anon_sym_CR] = ACTIONS(821), [anon_sym_CR_LF] = ACTIONS(821), @@ -204855,12 +204769,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(821), [anon_sym_COMMA] = ACTIONS(821), [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4327), [anon_sym___global] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(4331), + [anon_sym_fn] = ACTIONS(4329), [anon_sym_PLUS] = ACTIONS(821), [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4331), [anon_sym_SLASH] = ACTIONS(821), [anon_sym_PERCENT] = ACTIONS(821), [anon_sym_LT] = ACTIONS(821), @@ -204871,17 +204785,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(821), [anon_sym_DOT_DOT_DOT] = ACTIONS(821), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4333), [anon_sym_pub] = ACTIONS(821), [anon_sym_mut] = ACTIONS(821), [anon_sym_PLUS_PLUS] = ACTIONS(821), [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_BANG] = ACTIONS(4337), [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4341), + [anon_sym_LBRACK2] = ACTIONS(4339), [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_AMP] = ACTIONS(4341), [anon_sym_LT_LT] = ACTIONS(821), [anon_sym_GT_GT] = ACTIONS(821), [anon_sym_GT_GT_GT] = ACTIONS(821), @@ -204895,330 +204809,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(821), [anon_sym_in] = ACTIONS(821), [anon_sym_BANGin] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(4345), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4349), - [anon_sym_thread] = ACTIONS(4351), - [anon_sym_atomic] = ACTIONS(4353), + [anon_sym_shared] = ACTIONS(4343), + [anon_sym_map_LBRACK] = ACTIONS(4345), + [anon_sym_chan] = ACTIONS(4347), + [anon_sym_thread] = ACTIONS(4349), + [anon_sym_atomic] = ACTIONS(4351), [anon_sym_AT_LBRACK] = ACTIONS(821), }, + [1695] = { + [sym_line_comment] = STATE(1695), + [sym_block_comment] = STATE(1695), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2244), + [sym_plain_type] = STATE(2259), + [sym__plain_type_without_special] = STATE(2366), + [sym_anon_struct_type] = STATE(2365), + [sym_multi_return_type] = STATE(2366), + [sym_result_type] = STATE(2366), + [sym_option_type] = STATE(2366), + [sym_qualified_type] = STATE(2244), + [sym_fixed_array_type] = STATE(2365), + [sym_array_type] = STATE(2365), + [sym_pointer_type] = STATE(2365), + [sym_wrong_pointer_type] = STATE(2365), + [sym_map_type] = STATE(2365), + [sym_channel_type] = STATE(2365), + [sym_shared_type] = STATE(2365), + [sym_thread_type] = STATE(2365), + [sym_atomic_type] = STATE(2365), + [sym_generic_type] = STATE(2365), + [sym_function_type] = STATE(2365), + [sym_identifier] = ACTIONS(4325), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym___global] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(4333), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4341), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(4343), + [anon_sym_map_LBRACK] = ACTIONS(4345), + [anon_sym_chan] = ACTIONS(4347), + [anon_sym_thread] = ACTIONS(4349), + [anon_sym_atomic] = ACTIONS(4351), + [anon_sym_AT_LBRACK] = ACTIONS(859), + }, + [1696] = { + [sym_line_comment] = STATE(1696), + [sym_block_comment] = STATE(1696), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2244), + [sym_plain_type] = STATE(2321), + [sym__plain_type_without_special] = STATE(2366), + [sym_anon_struct_type] = STATE(2365), + [sym_multi_return_type] = STATE(2366), + [sym_result_type] = STATE(2366), + [sym_option_type] = STATE(2366), + [sym_qualified_type] = STATE(2244), + [sym_fixed_array_type] = STATE(2365), + [sym_array_type] = STATE(2365), + [sym_pointer_type] = STATE(2365), + [sym_wrong_pointer_type] = STATE(2365), + [sym_map_type] = STATE(2365), + [sym_channel_type] = STATE(2365), + [sym_shared_type] = STATE(2365), + [sym_thread_type] = STATE(2365), + [sym_atomic_type] = STATE(2365), + [sym_generic_type] = STATE(2365), + [sym_function_type] = STATE(2365), + [sym_identifier] = ACTIONS(4325), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym___global] = ACTIONS(855), + [anon_sym_fn] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(4333), + [anon_sym_pub] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4341), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(4343), + [anon_sym_map_LBRACK] = ACTIONS(4345), + [anon_sym_chan] = ACTIONS(4347), + [anon_sym_thread] = ACTIONS(4349), + [anon_sym_atomic] = ACTIONS(4351), + [anon_sym_AT_LBRACK] = ACTIONS(855), + }, + [1697] = { + [sym_line_comment] = STATE(1697), + [sym_block_comment] = STATE(1697), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym___global] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_pub] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_AT_LBRACK] = ACTIONS(865), + }, + [1698] = { + [sym_line_comment] = STATE(1698), + [sym_block_comment] = STATE(1698), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_AMP_CARET] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_POUND_LBRACK] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2145), + [sym_rune_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2145), + [anon_sym_r_SQUOTE] = ACTIONS(2145), + [anon_sym_r_DQUOTE] = ACTIONS(2145), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2145), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + }, [1699] = { [sym_line_comment] = STATE(1699), [sym_block_comment] = STATE(1699), - [sym_type_parameters] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_type_parameters] = STATE(1746), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(4357), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [aux_sym_sum_type_token1] = ACTIONS(2185), - [anon_sym_PIPE2] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [aux_sym_sum_type_token1] = ACTIONS(2187), + [anon_sym_PIPE2] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), }, [1700] = { [sym_line_comment] = STATE(1700), [sym_block_comment] = STATE(1700), - [aux_sym_sum_type_repeat1] = STATE(1703), - [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(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(2395), + [sym_plain_type] = STATE(2441), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(2395), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(4357), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_fn] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), [anon_sym_STAR] = ACTIONS(4361), - [anon_sym_struct] = ACTIONS(4361), - [anon_sym_union] = ACTIONS(4361), - [anon_sym_pub] = ACTIONS(4361), - [anon_sym_mut] = ACTIONS(4361), - [anon_sym_enum] = ACTIONS(4361), - [anon_sym_interface] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_go] = ACTIONS(4361), - [anon_sym_spawn] = ACTIONS(4361), - [anon_sym_json_DOTdecode] = ACTIONS(4361), - [anon_sym_LBRACK2] = ACTIONS(4361), - [anon_sym_TILDE] = ACTIONS(4361), - [anon_sym_CARET] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_DASH] = ACTIONS(4361), - [sym_none] = ACTIONS(4361), - [sym_true] = ACTIONS(4361), - [sym_false] = ACTIONS(4361), - [sym_nil] = ACTIONS(4361), - [anon_sym_if] = ACTIONS(4361), - [anon_sym_DOLLARif] = ACTIONS(4361), - [anon_sym_match] = ACTIONS(4361), - [anon_sym_select] = ACTIONS(4361), - [anon_sym_lock] = ACTIONS(4361), - [anon_sym_rlock] = ACTIONS(4361), - [anon_sym_unsafe] = ACTIONS(4361), - [anon_sym_sql] = ACTIONS(4361), - [sym_int_literal] = ACTIONS(4361), - [sym_float_literal] = ACTIONS(4361), - [sym_rune_literal] = ACTIONS(4361), - [anon_sym_SQUOTE] = ACTIONS(4361), - [anon_sym_DQUOTE] = ACTIONS(4361), - [anon_sym_c_SQUOTE] = ACTIONS(4361), - [anon_sym_c_DQUOTE] = ACTIONS(4361), - [anon_sym_r_SQUOTE] = ACTIONS(4361), - [anon_sym_r_DQUOTE] = ACTIONS(4361), - [sym_pseudo_compile_time_identifier] = ACTIONS(4361), - [anon_sym_shared] = ACTIONS(4361), - [aux_sym_sum_type_token1] = ACTIONS(4363), - [anon_sym_PIPE2] = ACTIONS(4365), - [anon_sym_map_LBRACK] = ACTIONS(4361), - [anon_sym_chan] = ACTIONS(4361), - [anon_sym_thread] = ACTIONS(4361), - [anon_sym_atomic] = ACTIONS(4361), - [anon_sym_assert] = ACTIONS(4361), - [anon_sym_defer] = ACTIONS(4361), - [anon_sym_goto] = ACTIONS(4361), - [anon_sym_break] = ACTIONS(4361), - [anon_sym_continue] = ACTIONS(4361), - [anon_sym_return] = ACTIONS(4361), - [anon_sym_DOLLARfor] = ACTIONS(4361), - [anon_sym_for] = ACTIONS(4361), - [anon_sym_POUND] = ACTIONS(4361), - [anon_sym_asm] = ACTIONS(4361), - [anon_sym_AT_LBRACK] = ACTIONS(4361), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(4363), + [anon_sym_BANG] = ACTIONS(4365), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(857), + [anon_sym_AMP_CARET] = ACTIONS(857), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(857), + [anon_sym_POUND_LBRACK] = ACTIONS(857), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(857), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(857), + [anon_sym_shared] = ACTIONS(4371), + [anon_sym_map_LBRACK] = ACTIONS(4373), + [anon_sym_chan] = ACTIONS(4375), + [anon_sym_thread] = ACTIONS(4377), + [anon_sym_atomic] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(857), }, [1701] = { [sym_line_comment] = STATE(1701), [sym_block_comment] = STATE(1701), - [aux_sym_sum_type_repeat1] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(4367), - [sym_identifier] = ACTIONS(4369), - [anon_sym_LF] = ACTIONS(4369), - [anon_sym_CR] = ACTIONS(4369), - [anon_sym_CR_LF] = ACTIONS(4369), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_const] = ACTIONS(4369), - [anon_sym_LPAREN] = ACTIONS(4369), - [anon_sym___global] = ACTIONS(4369), - [anon_sym_type] = ACTIONS(4369), - [anon_sym_fn] = ACTIONS(4369), - [anon_sym_PLUS] = ACTIONS(4369), - [anon_sym_DASH] = ACTIONS(4369), - [anon_sym_STAR] = ACTIONS(4369), - [anon_sym_struct] = ACTIONS(4369), - [anon_sym_union] = ACTIONS(4369), - [anon_sym_pub] = ACTIONS(4369), - [anon_sym_mut] = ACTIONS(4369), - [anon_sym_enum] = ACTIONS(4369), - [anon_sym_interface] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4369), - [anon_sym_BANG] = ACTIONS(4369), - [anon_sym_go] = ACTIONS(4369), - [anon_sym_spawn] = ACTIONS(4369), - [anon_sym_json_DOTdecode] = ACTIONS(4369), - [anon_sym_LBRACK2] = ACTIONS(4369), - [anon_sym_TILDE] = ACTIONS(4369), - [anon_sym_CARET] = ACTIONS(4369), - [anon_sym_AMP] = ACTIONS(4369), - [anon_sym_LT_DASH] = ACTIONS(4369), - [sym_none] = ACTIONS(4369), - [sym_true] = ACTIONS(4369), - [sym_false] = ACTIONS(4369), - [sym_nil] = ACTIONS(4369), - [anon_sym_if] = ACTIONS(4369), - [anon_sym_DOLLARif] = ACTIONS(4369), - [anon_sym_match] = ACTIONS(4369), - [anon_sym_select] = ACTIONS(4369), - [anon_sym_lock] = ACTIONS(4369), - [anon_sym_rlock] = ACTIONS(4369), - [anon_sym_unsafe] = ACTIONS(4369), - [anon_sym_sql] = ACTIONS(4369), - [sym_int_literal] = ACTIONS(4369), - [sym_float_literal] = ACTIONS(4369), - [sym_rune_literal] = ACTIONS(4369), - [anon_sym_SQUOTE] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4369), - [anon_sym_c_SQUOTE] = ACTIONS(4369), - [anon_sym_c_DQUOTE] = ACTIONS(4369), - [anon_sym_r_SQUOTE] = ACTIONS(4369), - [anon_sym_r_DQUOTE] = ACTIONS(4369), - [sym_pseudo_compile_time_identifier] = ACTIONS(4369), - [anon_sym_shared] = ACTIONS(4369), - [aux_sym_sum_type_token1] = ACTIONS(4371), - [anon_sym_PIPE2] = ACTIONS(4374), - [anon_sym_map_LBRACK] = ACTIONS(4369), - [anon_sym_chan] = ACTIONS(4369), - [anon_sym_thread] = ACTIONS(4369), - [anon_sym_atomic] = ACTIONS(4369), - [anon_sym_assert] = ACTIONS(4369), - [anon_sym_defer] = ACTIONS(4369), - [anon_sym_goto] = ACTIONS(4369), - [anon_sym_break] = ACTIONS(4369), - [anon_sym_continue] = ACTIONS(4369), - [anon_sym_return] = ACTIONS(4369), - [anon_sym_DOLLARfor] = ACTIONS(4369), - [anon_sym_for] = ACTIONS(4369), - [anon_sym_POUND] = ACTIONS(4369), - [anon_sym_asm] = ACTIONS(4369), - [anon_sym_AT_LBRACK] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [aux_sym_sum_type_token1] = ACTIONS(2373), + [anon_sym_PIPE2] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), }, [1702] = { [sym_line_comment] = STATE(1702), [sym_block_comment] = STATE(1702), - [aux_sym_sum_type_repeat1] = STATE(1703), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(4379), - [anon_sym_c_SQUOTE] = ACTIONS(4379), - [anon_sym_c_DQUOTE] = ACTIONS(4379), - [anon_sym_r_SQUOTE] = ACTIONS(4379), - [anon_sym_r_DQUOTE] = ACTIONS(4379), - [sym_pseudo_compile_time_identifier] = ACTIONS(4379), - [anon_sym_shared] = ACTIONS(4379), - [aux_sym_sum_type_token1] = ACTIONS(4363), - [anon_sym_PIPE2] = ACTIONS(4365), - [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), - }, - [1703] = { - [sym_line_comment] = STATE(1703), - [sym_block_comment] = STATE(1703), - [aux_sym_sum_type_repeat1] = STATE(1701), + [aux_sym_sum_type_repeat1] = STATE(1705), [ts_builtin_sym_end] = ACTIONS(4381), [sym_identifier] = ACTIONS(4383), [anon_sym_LF] = ACTIONS(4383), @@ -205275,8 +205435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_DQUOTE] = ACTIONS(4383), [sym_pseudo_compile_time_identifier] = ACTIONS(4383), [anon_sym_shared] = ACTIONS(4383), - [aux_sym_sum_type_token1] = ACTIONS(4363), - [anon_sym_PIPE2] = ACTIONS(4365), + [aux_sym_sum_type_token1] = ACTIONS(4385), + [anon_sym_PIPE2] = ACTIONS(4387), [anon_sym_map_LBRACK] = ACTIONS(4383), [anon_sym_chan] = ACTIONS(4383), [anon_sym_thread] = ACTIONS(4383), @@ -205293,420 +205453,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4383), [anon_sym_AT_LBRACK] = ACTIONS(4383), }, + [1703] = { + [sym_line_comment] = STATE(1703), + [sym_block_comment] = STATE(1703), + [aux_sym_sum_type_repeat1] = STATE(1702), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_c_SQUOTE] = ACTIONS(4391), + [anon_sym_c_DQUOTE] = ACTIONS(4391), + [anon_sym_r_SQUOTE] = ACTIONS(4391), + [anon_sym_r_DQUOTE] = ACTIONS(4391), + [sym_pseudo_compile_time_identifier] = ACTIONS(4391), + [anon_sym_shared] = ACTIONS(4391), + [aux_sym_sum_type_token1] = ACTIONS(4385), + [anon_sym_PIPE2] = ACTIONS(4387), + [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), + }, [1704] = { [sym_line_comment] = STATE(1704), [sym_block_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [aux_sym_sum_type_repeat1] = STATE(1702), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [aux_sym_sum_type_token1] = ACTIONS(2465), - [anon_sym_PIPE2] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), + [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), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [anon_sym_c_SQUOTE] = ACTIONS(4395), + [anon_sym_c_DQUOTE] = ACTIONS(4395), + [anon_sym_r_SQUOTE] = ACTIONS(4395), + [anon_sym_r_DQUOTE] = ACTIONS(4395), + [sym_pseudo_compile_time_identifier] = ACTIONS(4395), + [anon_sym_shared] = ACTIONS(4395), + [aux_sym_sum_type_token1] = ACTIONS(4385), + [anon_sym_PIPE2] = ACTIONS(4387), + [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), }, [1705] = { [sym_line_comment] = STATE(1705), [sym_block_comment] = STATE(1705), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(2391), - [sym_plain_type] = STATE(2464), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(2391), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4385), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_RBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(4397), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(879), - [anon_sym_AMP_CARET] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(879), - [anon_sym_POUND_LBRACK] = ACTIONS(879), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(879), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(879), - [anon_sym_COLON_EQ] = ACTIONS(879), + [aux_sym_sum_type_repeat1] = STATE(1705), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [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), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [anon_sym_c_SQUOTE] = ACTIONS(4399), + [anon_sym_c_DQUOTE] = ACTIONS(4399), + [anon_sym_r_SQUOTE] = ACTIONS(4399), + [anon_sym_r_DQUOTE] = ACTIONS(4399), + [sym_pseudo_compile_time_identifier] = ACTIONS(4399), [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4401), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4405), - [anon_sym_atomic] = ACTIONS(4407), - [anon_sym_DOT_DOT] = ACTIONS(879), + [aux_sym_sum_type_token1] = ACTIONS(4401), + [anon_sym_PIPE2] = ACTIONS(4404), + [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), }, [1706] = { [sym_line_comment] = STATE(1706), [sym_block_comment] = STATE(1706), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(2391), - [sym_plain_type] = STATE(2477), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(2391), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4385), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(2395), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(2395), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(4357), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(875), - [anon_sym_fn] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_RBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(4397), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(875), - [anon_sym_AMP_CARET] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(875), - [anon_sym_POUND_LBRACK] = ACTIONS(875), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(875), - [anon_sym_COLON_EQ] = ACTIONS(875), - [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4401), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4405), - [anon_sym_atomic] = ACTIONS(4407), - [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_fn] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(4363), + [anon_sym_BANG] = ACTIONS(4365), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_LT_LT] = ACTIONS(853), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(853), + [anon_sym_AMP_CARET] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_or] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(853), + [anon_sym_POUND_LBRACK] = ACTIONS(853), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(853), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(853), + [anon_sym_COLON_EQ] = ACTIONS(853), + [anon_sym_shared] = ACTIONS(4371), + [anon_sym_map_LBRACK] = ACTIONS(4373), + [anon_sym_chan] = ACTIONS(4375), + [anon_sym_thread] = ACTIONS(4377), + [anon_sym_atomic] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(853), }, [1707] = { [sym_line_comment] = STATE(1707), [sym_block_comment] = STATE(1707), - [aux_sym_sum_type_repeat1] = STATE(1703), - [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), + [aux_sym_sum_type_repeat1] = STATE(1702), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4411), - [anon_sym_c_SQUOTE] = ACTIONS(4411), - [anon_sym_c_DQUOTE] = ACTIONS(4411), - [anon_sym_r_SQUOTE] = ACTIONS(4411), - [anon_sym_r_DQUOTE] = ACTIONS(4411), - [sym_pseudo_compile_time_identifier] = ACTIONS(4411), - [anon_sym_shared] = ACTIONS(4411), - [aux_sym_sum_type_token1] = ACTIONS(4363), - [anon_sym_PIPE2] = ACTIONS(4365), - [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), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_const] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym___global] = ACTIONS(4409), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_fn] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_struct] = ACTIONS(4409), + [anon_sym_union] = ACTIONS(4409), + [anon_sym_pub] = ACTIONS(4409), + [anon_sym_mut] = ACTIONS(4409), + [anon_sym_enum] = ACTIONS(4409), + [anon_sym_interface] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_go] = ACTIONS(4409), + [anon_sym_spawn] = ACTIONS(4409), + [anon_sym_json_DOTdecode] = ACTIONS(4409), + [anon_sym_LBRACK2] = ACTIONS(4409), + [anon_sym_TILDE] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_LT_DASH] = ACTIONS(4409), + [sym_none] = ACTIONS(4409), + [sym_true] = ACTIONS(4409), + [sym_false] = ACTIONS(4409), + [sym_nil] = ACTIONS(4409), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_DOLLARif] = ACTIONS(4409), + [anon_sym_match] = ACTIONS(4409), + [anon_sym_select] = ACTIONS(4409), + [anon_sym_lock] = ACTIONS(4409), + [anon_sym_rlock] = ACTIONS(4409), + [anon_sym_unsafe] = ACTIONS(4409), + [anon_sym_sql] = ACTIONS(4409), + [sym_int_literal] = ACTIONS(4409), + [sym_float_literal] = ACTIONS(4409), + [sym_rune_literal] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4409), + [anon_sym_DQUOTE] = ACTIONS(4409), + [anon_sym_c_SQUOTE] = ACTIONS(4409), + [anon_sym_c_DQUOTE] = ACTIONS(4409), + [anon_sym_r_SQUOTE] = ACTIONS(4409), + [anon_sym_r_DQUOTE] = ACTIONS(4409), + [sym_pseudo_compile_time_identifier] = ACTIONS(4409), + [anon_sym_shared] = ACTIONS(4409), + [aux_sym_sum_type_token1] = ACTIONS(4385), + [anon_sym_PIPE2] = ACTIONS(4387), + [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), }, [1708] = { [sym_line_comment] = STATE(1708), [sym_block_comment] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [aux_sym_sum_type_repeat1] = STATE(1702), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [aux_sym_sum_type_token1] = ACTIONS(2465), - [anon_sym_PIPE2] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_const] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym___global] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4413), + [anon_sym_fn] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4413), + [anon_sym_union] = ACTIONS(4413), + [anon_sym_pub] = ACTIONS(4413), + [anon_sym_mut] = ACTIONS(4413), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_interface] = ACTIONS(4413), + [anon_sym_QMARK] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_go] = ACTIONS(4413), + [anon_sym_spawn] = ACTIONS(4413), + [anon_sym_json_DOTdecode] = ACTIONS(4413), + [anon_sym_LBRACK2] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(4413), + [anon_sym_CARET] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(4413), + [anon_sym_LT_DASH] = ACTIONS(4413), + [sym_none] = ACTIONS(4413), + [sym_true] = ACTIONS(4413), + [sym_false] = ACTIONS(4413), + [sym_nil] = ACTIONS(4413), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_DOLLARif] = ACTIONS(4413), + [anon_sym_match] = ACTIONS(4413), + [anon_sym_select] = ACTIONS(4413), + [anon_sym_lock] = ACTIONS(4413), + [anon_sym_rlock] = ACTIONS(4413), + [anon_sym_unsafe] = ACTIONS(4413), + [anon_sym_sql] = ACTIONS(4413), + [sym_int_literal] = ACTIONS(4413), + [sym_float_literal] = ACTIONS(4413), + [sym_rune_literal] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4413), + [anon_sym_DQUOTE] = ACTIONS(4413), + [anon_sym_c_SQUOTE] = ACTIONS(4413), + [anon_sym_c_DQUOTE] = ACTIONS(4413), + [anon_sym_r_SQUOTE] = ACTIONS(4413), + [anon_sym_r_DQUOTE] = ACTIONS(4413), + [sym_pseudo_compile_time_identifier] = ACTIONS(4413), + [anon_sym_shared] = ACTIONS(4413), + [aux_sym_sum_type_token1] = ACTIONS(4385), + [anon_sym_PIPE2] = ACTIONS(4387), + [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), }, [1709] = { [sym_line_comment] = STATE(1709), [sym_block_comment] = STATE(1709), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(2391), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(2391), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4385), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [aux_sym_sum_type_token1] = ACTIONS(2373), + [anon_sym_PIPE2] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), + }, + [1710] = { + [sym_line_comment] = STATE(1710), + [sym_block_comment] = STATE(1710), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(2395), + [sym_plain_type] = STATE(2445), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(2395), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(4357), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(817), @@ -205714,12 +206030,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(821), [anon_sym_LBRACE] = ACTIONS(817), [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(3970), + [anon_sym_LPAREN] = ACTIONS(3968), [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_fn] = ACTIONS(4387), + [anon_sym_fn] = ACTIONS(4359), [anon_sym_PLUS] = ACTIONS(821), [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4361), [anon_sym_SLASH] = ACTIONS(821), [anon_sym_PERCENT] = ACTIONS(817), [anon_sym_LT] = ACTIONS(821), @@ -205730,16 +206046,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_RBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(873), [anon_sym_COLON] = ACTIONS(821), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4363), + [anon_sym_BANG] = ACTIONS(4365), [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4395), + [anon_sym_LBRACK2] = ACTIONS(4367), [anon_sym_CARET] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4369), [anon_sym_LT_LT] = ACTIONS(817), [anon_sym_GT_GT] = ACTIONS(821), [anon_sym_GT_GT_GT] = ACTIONS(817), @@ -205754,1635 +206070,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(821), [anon_sym_BANGin] = ACTIONS(817), [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4401), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4405), - [anon_sym_atomic] = ACTIONS(4407), + [anon_sym_shared] = ACTIONS(4371), + [anon_sym_map_LBRACK] = ACTIONS(4373), + [anon_sym_chan] = ACTIONS(4375), + [anon_sym_thread] = ACTIONS(4377), + [anon_sym_atomic] = ACTIONS(4379), [anon_sym_DOT_DOT] = ACTIONS(817), }, - [1710] = { - [sym_line_comment] = STATE(1710), - [sym_block_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym___global] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_interface] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [aux_sym_sum_type_token1] = ACTIONS(2451), - [anon_sym_PIPE2] = ACTIONS(2449), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), - [anon_sym_AT_LBRACK] = ACTIONS(2451), - }, [1711] = { [sym_line_comment] = STATE(1711), [sym_block_comment] = STATE(1711), - [aux_sym_sum_type_repeat1] = STATE(1703), - [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(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4415), - [anon_sym_DQUOTE] = ACTIONS(4415), - [anon_sym_c_SQUOTE] = ACTIONS(4415), - [anon_sym_c_DQUOTE] = ACTIONS(4415), - [anon_sym_r_SQUOTE] = ACTIONS(4415), - [anon_sym_r_DQUOTE] = ACTIONS(4415), - [sym_pseudo_compile_time_identifier] = ACTIONS(4415), - [anon_sym_shared] = ACTIONS(4415), - [aux_sym_sum_type_token1] = ACTIONS(4363), - [anon_sym_PIPE2] = ACTIONS(4365), - [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), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [aux_sym_sum_type_token1] = ACTIONS(2457), + [anon_sym_PIPE2] = ACTIONS(2455), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), }, [1712] = { [sym_line_comment] = STATE(1712), [sym_block_comment] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3300), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_CR] = ACTIONS(3300), + [anon_sym_CR_LF] = ACTIONS(3300), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [aux_sym_sum_type_token1] = ACTIONS(2185), - [anon_sym_PIPE2] = ACTIONS(2183), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym___global] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_pub] = ACTIONS(3300), + [anon_sym_mut] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_go] = ACTIONS(3300), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [sym_none] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_nil] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_DOLLARif] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_select] = ACTIONS(3300), + [anon_sym_lock] = ACTIONS(3300), + [anon_sym_rlock] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_sql] = ACTIONS(3300), + [sym_int_literal] = ACTIONS(3300), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_c_SQUOTE] = ACTIONS(3300), + [anon_sym_c_DQUOTE] = ACTIONS(3300), + [anon_sym_r_SQUOTE] = ACTIONS(3300), + [anon_sym_r_DQUOTE] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3300), + [anon_sym_shared] = ACTIONS(3300), + [aux_sym_sum_type_token1] = ACTIONS(3300), + [anon_sym_PIPE2] = ACTIONS(3298), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3300), + [anon_sym_thread] = ACTIONS(3300), + [anon_sym_atomic] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_defer] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_DOLLARfor] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym_AT_LBRACK] = ACTIONS(3300), }, [1713] = { [sym_line_comment] = STATE(1713), [sym_block_comment] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym___global] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_pub] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_interface] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [aux_sym_sum_type_token1] = ACTIONS(2815), - [anon_sym_PIPE2] = ACTIONS(2813), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - [anon_sym_AT_LBRACK] = ACTIONS(2815), - }, - [1714] = { - [sym_line_comment] = STATE(1714), - [sym_block_comment] = STATE(1714), - [aux_sym_strictly_expression_list_repeat1] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(3908), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym___global] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), - [anon_sym_LBRACK2] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_DASH] = ACTIONS(2045), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), - [anon_sym_AT_LBRACK] = ACTIONS(2045), - }, - [1715] = { - [sym_line_comment] = STATE(1715), - [sym_block_comment] = STATE(1715), - [aux_sym_strictly_expression_list_repeat1] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(4420), - [sym_identifier] = ACTIONS(4422), - [anon_sym_LF] = ACTIONS(4422), - [anon_sym_CR] = ACTIONS(4422), - [anon_sym_CR_LF] = ACTIONS(4422), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym___global] = ACTIONS(4422), - [anon_sym_type] = ACTIONS(4422), - [anon_sym_fn] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4422), - [anon_sym_struct] = ACTIONS(4422), - [anon_sym_union] = ACTIONS(4422), - [anon_sym_pub] = ACTIONS(4422), - [anon_sym_mut] = ACTIONS(4422), - [anon_sym_enum] = ACTIONS(4422), - [anon_sym_interface] = ACTIONS(4422), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_go] = ACTIONS(4422), - [anon_sym_spawn] = ACTIONS(4422), - [anon_sym_json_DOTdecode] = ACTIONS(4422), - [anon_sym_LBRACK2] = ACTIONS(4422), - [anon_sym_TILDE] = ACTIONS(4422), - [anon_sym_CARET] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_DASH] = ACTIONS(4422), - [sym_none] = ACTIONS(4422), - [sym_true] = ACTIONS(4422), - [sym_false] = ACTIONS(4422), - [sym_nil] = ACTIONS(4422), - [anon_sym_if] = ACTIONS(4422), - [anon_sym_DOLLARif] = ACTIONS(4422), - [anon_sym_match] = ACTIONS(4422), - [anon_sym_select] = ACTIONS(4422), - [anon_sym_lock] = ACTIONS(4422), - [anon_sym_rlock] = ACTIONS(4422), - [anon_sym_unsafe] = ACTIONS(4422), - [anon_sym_sql] = ACTIONS(4422), - [sym_int_literal] = ACTIONS(4422), - [sym_float_literal] = ACTIONS(4422), - [sym_rune_literal] = ACTIONS(4422), - [anon_sym_SQUOTE] = ACTIONS(4422), - [anon_sym_DQUOTE] = ACTIONS(4422), - [anon_sym_c_SQUOTE] = ACTIONS(4422), - [anon_sym_c_DQUOTE] = ACTIONS(4422), - [anon_sym_r_SQUOTE] = ACTIONS(4422), - [anon_sym_r_DQUOTE] = ACTIONS(4422), - [sym_pseudo_compile_time_identifier] = ACTIONS(4422), - [anon_sym_shared] = ACTIONS(4422), - [anon_sym_map_LBRACK] = ACTIONS(4422), - [anon_sym_chan] = ACTIONS(4422), - [anon_sym_thread] = ACTIONS(4422), - [anon_sym_atomic] = ACTIONS(4422), - [anon_sym_assert] = ACTIONS(4422), - [anon_sym_defer] = ACTIONS(4422), - [anon_sym_goto] = ACTIONS(4422), - [anon_sym_break] = ACTIONS(4422), - [anon_sym_continue] = ACTIONS(4422), - [anon_sym_return] = ACTIONS(4422), - [anon_sym_DOLLARfor] = ACTIONS(4422), - [anon_sym_for] = ACTIONS(4422), - [anon_sym_POUND] = ACTIONS(4422), - [anon_sym_asm] = ACTIONS(4422), - [anon_sym_AT_LBRACK] = ACTIONS(4422), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(851), + [anon_sym_as] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_LBRACK2] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(849), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_GT_GT_GT] = ACTIONS(849), + [anon_sym_AMP_CARET] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_or] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(849), + [anon_sym_POUND_LBRACK] = ACTIONS(849), + [anon_sym_is] = ACTIONS(851), + [anon_sym_BANGis] = ACTIONS(849), + [anon_sym_in] = ACTIONS(851), + [anon_sym_BANGin] = ACTIONS(849), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(849), + }, + [1714] = { + [sym_line_comment] = STATE(1714), + [sym_block_comment] = STATE(1714), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [aux_sym_sum_type_token1] = ACTIONS(2669), + [anon_sym_PIPE2] = ACTIONS(2667), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + }, + [1715] = { + [sym_line_comment] = STATE(1715), + [sym_block_comment] = STATE(1715), + [aux_sym_strictly_expression_list_repeat1] = STATE(1737), + [ts_builtin_sym_end] = ACTIONS(3862), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym___global] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_interface] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), + [anon_sym_AT_LBRACK] = ACTIONS(2041), }, [1716] = { [sym_line_comment] = STATE(1716), [sym_block_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_c_SQUOTE] = ACTIONS(2997), - [anon_sym_c_DQUOTE] = ACTIONS(2997), - [anon_sym_r_SQUOTE] = ACTIONS(2997), - [anon_sym_r_DQUOTE] = ACTIONS(2997), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [aux_sym_sum_type_token1] = ACTIONS(2997), - [anon_sym_PIPE2] = ACTIONS(2995), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [aux_sym_sum_type_token1] = ACTIONS(3350), + [anon_sym_PIPE2] = ACTIONS(3348), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), }, [1717] = { [sym_line_comment] = STATE(1717), [sym_block_comment] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), + [aux_sym_strictly_expression_list_repeat1] = STATE(1717), + [ts_builtin_sym_end] = ACTIONS(3908), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym___global] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_interface] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [aux_sym_sum_type_token1] = ACTIONS(2447), - [anon_sym_PIPE2] = ACTIONS(2445), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), - [anon_sym_AT_LBRACK] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym___global] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_interface] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), + [anon_sym_LBRACK2] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_LT_DASH] = ACTIONS(2001), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), + [anon_sym_AT_LBRACK] = ACTIONS(2001), }, [1718] = { [sym_line_comment] = STATE(1718), [sym_block_comment] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [aux_sym_sum_type_token1] = ACTIONS(3051), - [anon_sym_PIPE2] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [aux_sym_sum_type_token1] = ACTIONS(2453), + [anon_sym_PIPE2] = ACTIONS(2451), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), }, [1719] = { [sym_line_comment] = STATE(1719), [sym_block_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym___global] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_union] = ACTIONS(3080), - [anon_sym_pub] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [aux_sym_sum_type_token1] = ACTIONS(3080), - [anon_sym_PIPE2] = ACTIONS(3078), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - [anon_sym_assert] = ACTIONS(3080), - [anon_sym_defer] = ACTIONS(3080), - [anon_sym_goto] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_DOLLARfor] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_asm] = ACTIONS(3080), - [anon_sym_AT_LBRACK] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym___global] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_union] = ACTIONS(2893), + [anon_sym_pub] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [aux_sym_sum_type_token1] = ACTIONS(2893), + [anon_sym_PIPE2] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), + [anon_sym_AT_LBRACK] = ACTIONS(2893), }, [1720] = { [sym_line_comment] = STATE(1720), [sym_block_comment] = STATE(1720), - [aux_sym_strictly_expression_list_repeat1] = STATE(1734), - [ts_builtin_sym_end] = ACTIONS(3862), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_CR] = ACTIONS(2007), - [anon_sym_CR_LF] = ACTIONS(2007), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym___global] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_pub] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_go] = ACTIONS(2007), - [anon_sym_spawn] = ACTIONS(2007), - [anon_sym_json_DOTdecode] = ACTIONS(2007), - [anon_sym_LBRACK2] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_LT_DASH] = ACTIONS(2007), - [sym_none] = ACTIONS(2007), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_nil] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_DOLLARif] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_select] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(2007), - [anon_sym_rlock] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_sql] = ACTIONS(2007), - [sym_int_literal] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), - [sym_rune_literal] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_c_SQUOTE] = ACTIONS(2007), - [anon_sym_c_DQUOTE] = ACTIONS(2007), - [anon_sym_r_SQUOTE] = ACTIONS(2007), - [anon_sym_r_DQUOTE] = ACTIONS(2007), - [sym_pseudo_compile_time_identifier] = ACTIONS(2007), - [anon_sym_shared] = ACTIONS(2007), - [anon_sym_map_LBRACK] = ACTIONS(2007), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2007), - [anon_sym_atomic] = ACTIONS(2007), - [anon_sym_assert] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_goto] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_DOLLARfor] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_asm] = ACTIONS(2007), - [anon_sym_AT_LBRACK] = ACTIONS(2007), - }, - [1721] = { - [sym_line_comment] = STATE(1721), - [sym_block_comment] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [aux_sym_sum_type_token1] = ACTIONS(2855), - [anon_sym_PIPE2] = ACTIONS(2853), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), - }, - [1722] = { - [sym_line_comment] = STATE(1722), - [sym_block_comment] = STATE(1722), - [sym_type_parameters] = STATE(1809), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(4424), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), - }, - [1723] = { - [sym_line_comment] = STATE(1723), - [sym_block_comment] = STATE(1723), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym___global] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [aux_sym_sum_type_token1] = ACTIONS(2961), - [anon_sym_PIPE2] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym_AT_LBRACK] = ACTIONS(2961), - }, - [1724] = { - [sym_line_comment] = STATE(1724), - [sym_block_comment] = STATE(1724), - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym___global] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_union] = ACTIONS(3248), - [anon_sym_pub] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [aux_sym_sum_type_token1] = ACTIONS(3248), - [anon_sym_PIPE2] = ACTIONS(3246), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), - [anon_sym_AT_LBRACK] = ACTIONS(3248), - }, - [1725] = { - [sym_line_comment] = STATE(1725), - [sym_block_comment] = STATE(1725), - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym___global] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_union] = ACTIONS(3258), - [anon_sym_pub] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [aux_sym_sum_type_token1] = ACTIONS(3258), - [anon_sym_PIPE2] = ACTIONS(3256), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), - [anon_sym_AT_LBRACK] = ACTIONS(3258), - }, - [1726] = { - [sym_line_comment] = STATE(1726), - [sym_block_comment] = STATE(1726), - [ts_builtin_sym_end] = ACTIONS(3272), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LF] = ACTIONS(3274), - [anon_sym_CR] = ACTIONS(3274), - [anon_sym_CR_LF] = ACTIONS(3274), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym___global] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_pub] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_CARET] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3274), - [sym_rune_literal] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_c_SQUOTE] = ACTIONS(3274), - [anon_sym_c_DQUOTE] = ACTIONS(3274), - [anon_sym_r_SQUOTE] = ACTIONS(3274), - [anon_sym_r_DQUOTE] = ACTIONS(3274), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [aux_sym_sum_type_token1] = ACTIONS(3274), - [anon_sym_PIPE2] = ACTIONS(3272), - [anon_sym_map_LBRACK] = ACTIONS(3274), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), - [anon_sym_assert] = ACTIONS(3274), - [anon_sym_defer] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_DOLLARfor] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_POUND] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym_AT_LBRACK] = ACTIONS(3274), - }, - [1727] = { - [sym_line_comment] = STATE(1727), - [sym_block_comment] = STATE(1727), - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [aux_sym_sum_type_token1] = ACTIONS(3090), - [anon_sym_PIPE2] = ACTIONS(3088), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), - }, - [1728] = { - [sym_line_comment] = STATE(1728), - [sym_block_comment] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym___global] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [aux_sym_sum_type_token1] = ACTIONS(2433), - [anon_sym_PIPE2] = ACTIONS(2431), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), - [anon_sym_AT_LBRACK] = ACTIONS(2433), - }, - [1729] = { - [sym_line_comment] = STATE(1729), - [sym_block_comment] = STATE(1729), - [ts_builtin_sym_end] = ACTIONS(3284), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym___global] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_pub] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [aux_sym_sum_type_token1] = ACTIONS(3286), - [anon_sym_PIPE2] = ACTIONS(3284), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - [anon_sym_assert] = ACTIONS(3286), - [anon_sym_defer] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_DOLLARfor] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym_AT_LBRACK] = ACTIONS(3286), - }, - [1730] = { - [sym_line_comment] = STATE(1730), - [sym_block_comment] = STATE(1730), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [aux_sym_sum_type_token1] = ACTIONS(3005), - [anon_sym_PIPE2] = ACTIONS(3003), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - }, - [1731] = { - [sym_line_comment] = STATE(1731), - [sym_block_comment] = STATE(1731), [ts_builtin_sym_end] = ACTIONS(3082), [sym_identifier] = ACTIONS(3084), [anon_sym_LF] = ACTIONS(3084), @@ -207457,548 +206848,1780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3084), [anon_sym_AT_LBRACK] = ACTIONS(3084), }, + [1721] = { + [sym_line_comment] = STATE(1721), + [sym_block_comment] = STATE(1721), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [aux_sym_sum_type_token1] = ACTIONS(2187), + [anon_sym_PIPE2] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [1722] = { + [sym_line_comment] = STATE(1722), + [sym_block_comment] = STATE(1722), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym___global] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [aux_sym_sum_type_token1] = ACTIONS(2967), + [anon_sym_PIPE2] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym_AT_LBRACK] = ACTIONS(2967), + }, + [1723] = { + [sym_line_comment] = STATE(1723), + [sym_block_comment] = STATE(1723), + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [aux_sym_sum_type_token1] = ACTIONS(3049), + [anon_sym_PIPE2] = ACTIONS(3047), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), + }, + [1724] = { + [sym_line_comment] = STATE(1724), + [sym_block_comment] = STATE(1724), + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym___global] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_pub] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_interface] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [aux_sym_sum_type_token1] = ACTIONS(3055), + [anon_sym_PIPE2] = ACTIONS(3053), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym_AT_LBRACK] = ACTIONS(3055), + }, + [1725] = { + [sym_line_comment] = STATE(1725), + [sym_block_comment] = STATE(1725), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_const] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym___global] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_union] = ACTIONS(3041), + [anon_sym_pub] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [aux_sym_sum_type_token1] = ACTIONS(3041), + [anon_sym_PIPE2] = ACTIONS(3039), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), + [anon_sym_AT_LBRACK] = ACTIONS(3041), + }, + [1726] = { + [sym_line_comment] = STATE(1726), + [sym_block_comment] = STATE(1726), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [aux_sym_sum_type_token1] = ACTIONS(3246), + [anon_sym_PIPE2] = ACTIONS(3244), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), + }, + [1727] = { + [sym_line_comment] = STATE(1727), + [sym_block_comment] = STATE(1727), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym___global] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_pub] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [aux_sym_sum_type_token1] = ACTIONS(3266), + [anon_sym_PIPE2] = ACTIONS(3264), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym_AT_LBRACK] = ACTIONS(3266), + }, + [1728] = { + [sym_line_comment] = STATE(1728), + [sym_block_comment] = STATE(1728), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym___global] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_pub] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_c_SQUOTE] = ACTIONS(3270), + [anon_sym_c_DQUOTE] = ACTIONS(3270), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [aux_sym_sum_type_token1] = ACTIONS(3270), + [anon_sym_PIPE2] = ACTIONS(3268), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym_AT_LBRACK] = ACTIONS(3270), + }, + [1729] = { + [sym_line_comment] = STATE(1729), + [sym_block_comment] = STATE(1729), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [aux_sym_sum_type_token1] = ACTIONS(2401), + [anon_sym_PIPE2] = ACTIONS(2399), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), + }, + [1730] = { + [sym_line_comment] = STATE(1730), + [sym_block_comment] = STATE(1730), + [sym_type_parameters] = STATE(1839), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), + }, + [1731] = { + [sym_line_comment] = STATE(1731), + [sym_block_comment] = STATE(1731), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [aux_sym_sum_type_token1] = ACTIONS(3001), + [anon_sym_PIPE2] = ACTIONS(2999), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + }, [1732] = { [sym_line_comment] = STATE(1732), [sym_block_comment] = STATE(1732), - [ts_builtin_sym_end] = ACTIONS(4367), - [sym_identifier] = ACTIONS(4369), - [anon_sym_LF] = ACTIONS(4369), - [anon_sym_CR] = ACTIONS(4369), - [anon_sym_CR_LF] = ACTIONS(4369), + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_const] = ACTIONS(4369), - [anon_sym_LPAREN] = ACTIONS(4369), - [anon_sym___global] = ACTIONS(4369), - [anon_sym_type] = ACTIONS(4369), - [anon_sym_fn] = ACTIONS(4369), - [anon_sym_PLUS] = ACTIONS(4369), - [anon_sym_DASH] = ACTIONS(4369), - [anon_sym_STAR] = ACTIONS(4369), - [anon_sym_struct] = ACTIONS(4369), - [anon_sym_union] = ACTIONS(4369), - [anon_sym_pub] = ACTIONS(4369), - [anon_sym_mut] = ACTIONS(4369), - [anon_sym_enum] = ACTIONS(4369), - [anon_sym_interface] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4369), - [anon_sym_BANG] = ACTIONS(4369), - [anon_sym_go] = ACTIONS(4369), - [anon_sym_spawn] = ACTIONS(4369), - [anon_sym_json_DOTdecode] = ACTIONS(4369), - [anon_sym_LBRACK2] = ACTIONS(4369), - [anon_sym_TILDE] = ACTIONS(4369), - [anon_sym_CARET] = ACTIONS(4369), - [anon_sym_AMP] = ACTIONS(4369), - [anon_sym_LT_DASH] = ACTIONS(4369), - [sym_none] = ACTIONS(4369), - [sym_true] = ACTIONS(4369), - [sym_false] = ACTIONS(4369), - [sym_nil] = ACTIONS(4369), - [anon_sym_if] = ACTIONS(4369), - [anon_sym_DOLLARif] = ACTIONS(4369), - [anon_sym_match] = ACTIONS(4369), - [anon_sym_select] = ACTIONS(4369), - [anon_sym_lock] = ACTIONS(4369), - [anon_sym_rlock] = ACTIONS(4369), - [anon_sym_unsafe] = ACTIONS(4369), - [anon_sym_sql] = ACTIONS(4369), - [sym_int_literal] = ACTIONS(4369), - [sym_float_literal] = ACTIONS(4369), - [sym_rune_literal] = ACTIONS(4369), - [anon_sym_SQUOTE] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4369), - [anon_sym_c_SQUOTE] = ACTIONS(4369), - [anon_sym_c_DQUOTE] = ACTIONS(4369), - [anon_sym_r_SQUOTE] = ACTIONS(4369), - [anon_sym_r_DQUOTE] = ACTIONS(4369), - [sym_pseudo_compile_time_identifier] = ACTIONS(4369), - [anon_sym_shared] = ACTIONS(4369), - [aux_sym_sum_type_token1] = ACTIONS(4369), - [anon_sym_PIPE2] = ACTIONS(4367), - [anon_sym_map_LBRACK] = ACTIONS(4369), - [anon_sym_chan] = ACTIONS(4369), - [anon_sym_thread] = ACTIONS(4369), - [anon_sym_atomic] = ACTIONS(4369), - [anon_sym_assert] = ACTIONS(4369), - [anon_sym_defer] = ACTIONS(4369), - [anon_sym_goto] = ACTIONS(4369), - [anon_sym_break] = ACTIONS(4369), - [anon_sym_continue] = ACTIONS(4369), - [anon_sym_return] = ACTIONS(4369), - [anon_sym_DOLLARfor] = ACTIONS(4369), - [anon_sym_for] = ACTIONS(4369), - [anon_sym_POUND] = ACTIONS(4369), - [anon_sym_asm] = ACTIONS(4369), - [anon_sym_AT_LBRACK] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym___global] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_union] = ACTIONS(3292), + [anon_sym_pub] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [aux_sym_sum_type_token1] = ACTIONS(3292), + [anon_sym_PIPE2] = ACTIONS(3290), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), + [anon_sym_AT_LBRACK] = ACTIONS(3292), }, [1733] = { [sym_line_comment] = STATE(1733), [sym_block_comment] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym___global] = ACTIONS(3035), - [anon_sym_type] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_pub] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_interface] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [aux_sym_sum_type_token1] = ACTIONS(3035), - [anon_sym_PIPE2] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - [anon_sym_assert] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_DOLLARfor] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym_AT_LBRACK] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [aux_sym_sum_type_token1] = ACTIONS(2985), + [anon_sym_PIPE2] = ACTIONS(2983), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), }, [1734] = { [sym_line_comment] = STATE(1734), [sym_block_comment] = STATE(1734), - [aux_sym_strictly_expression_list_repeat1] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(4426), - [sym_identifier] = ACTIONS(4428), - [anon_sym_LF] = ACTIONS(4428), - [anon_sym_CR] = ACTIONS(4428), - [anon_sym_CR_LF] = ACTIONS(4428), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(4428), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(4428), - [anon_sym_LPAREN] = ACTIONS(4428), - [anon_sym___global] = ACTIONS(4428), - [anon_sym_type] = ACTIONS(4428), - [anon_sym_fn] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_STAR] = ACTIONS(4428), - [anon_sym_struct] = ACTIONS(4428), - [anon_sym_union] = ACTIONS(4428), - [anon_sym_pub] = ACTIONS(4428), - [anon_sym_mut] = ACTIONS(4428), - [anon_sym_enum] = ACTIONS(4428), - [anon_sym_interface] = ACTIONS(4428), - [anon_sym_QMARK] = ACTIONS(4428), - [anon_sym_BANG] = ACTIONS(4428), - [anon_sym_go] = ACTIONS(4428), - [anon_sym_spawn] = ACTIONS(4428), - [anon_sym_json_DOTdecode] = ACTIONS(4428), - [anon_sym_LBRACK2] = ACTIONS(4428), - [anon_sym_TILDE] = ACTIONS(4428), - [anon_sym_CARET] = ACTIONS(4428), - [anon_sym_AMP] = ACTIONS(4428), - [anon_sym_LT_DASH] = ACTIONS(4428), - [sym_none] = ACTIONS(4428), - [sym_true] = ACTIONS(4428), - [sym_false] = ACTIONS(4428), - [sym_nil] = ACTIONS(4428), - [anon_sym_if] = ACTIONS(4428), - [anon_sym_DOLLARif] = ACTIONS(4428), - [anon_sym_match] = ACTIONS(4428), - [anon_sym_select] = ACTIONS(4428), - [anon_sym_lock] = ACTIONS(4428), - [anon_sym_rlock] = ACTIONS(4428), - [anon_sym_unsafe] = ACTIONS(4428), - [anon_sym_sql] = ACTIONS(4428), - [sym_int_literal] = ACTIONS(4428), - [sym_float_literal] = ACTIONS(4428), - [sym_rune_literal] = ACTIONS(4428), - [anon_sym_SQUOTE] = ACTIONS(4428), - [anon_sym_DQUOTE] = ACTIONS(4428), - [anon_sym_c_SQUOTE] = ACTIONS(4428), - [anon_sym_c_DQUOTE] = ACTIONS(4428), - [anon_sym_r_SQUOTE] = ACTIONS(4428), - [anon_sym_r_DQUOTE] = ACTIONS(4428), - [sym_pseudo_compile_time_identifier] = ACTIONS(4428), - [anon_sym_shared] = ACTIONS(4428), - [anon_sym_map_LBRACK] = ACTIONS(4428), - [anon_sym_chan] = ACTIONS(4428), - [anon_sym_thread] = ACTIONS(4428), - [anon_sym_atomic] = ACTIONS(4428), - [anon_sym_assert] = ACTIONS(4428), - [anon_sym_defer] = ACTIONS(4428), - [anon_sym_goto] = ACTIONS(4428), - [anon_sym_break] = ACTIONS(4428), - [anon_sym_continue] = ACTIONS(4428), - [anon_sym_return] = ACTIONS(4428), - [anon_sym_DOLLARfor] = ACTIONS(4428), - [anon_sym_for] = ACTIONS(4428), - [anon_sym_POUND] = ACTIONS(4428), - [anon_sym_asm] = ACTIONS(4428), - [anon_sym_AT_LBRACK] = ACTIONS(4428), + [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), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [anon_sym_c_SQUOTE] = ACTIONS(4399), + [anon_sym_c_DQUOTE] = ACTIONS(4399), + [anon_sym_r_SQUOTE] = ACTIONS(4399), + [anon_sym_r_DQUOTE] = ACTIONS(4399), + [sym_pseudo_compile_time_identifier] = ACTIONS(4399), + [anon_sym_shared] = ACTIONS(4399), + [aux_sym_sum_type_token1] = ACTIONS(4399), + [anon_sym_PIPE2] = ACTIONS(4397), + [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), }, [1735] = { [sym_line_comment] = STATE(1735), [sym_block_comment] = STATE(1735), - [ts_builtin_sym_end] = ACTIONS(4430), - [sym_identifier] = ACTIONS(4432), - [anon_sym_LF] = ACTIONS(4432), - [anon_sym_CR] = ACTIONS(4432), - [anon_sym_CR_LF] = ACTIONS(4432), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4432), - [anon_sym_LBRACE] = ACTIONS(4432), - [anon_sym_const] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(4432), - [anon_sym___global] = ACTIONS(4432), - [anon_sym_type] = ACTIONS(4432), - [anon_sym_fn] = ACTIONS(4432), - [anon_sym_PLUS] = ACTIONS(4432), - [anon_sym_DASH] = ACTIONS(4432), - [anon_sym_STAR] = ACTIONS(4432), - [anon_sym_struct] = ACTIONS(4432), - [anon_sym_union] = ACTIONS(4432), - [anon_sym_pub] = ACTIONS(4432), - [anon_sym_mut] = ACTIONS(4432), - [anon_sym_enum] = ACTIONS(4432), - [anon_sym_interface] = ACTIONS(4432), - [anon_sym_QMARK] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4432), - [anon_sym_go] = ACTIONS(4432), - [anon_sym_spawn] = ACTIONS(4432), - [anon_sym_json_DOTdecode] = ACTIONS(4432), - [anon_sym_LBRACK2] = ACTIONS(4432), - [anon_sym_TILDE] = ACTIONS(4432), - [anon_sym_CARET] = ACTIONS(4432), - [anon_sym_AMP] = ACTIONS(4432), - [anon_sym_LT_DASH] = ACTIONS(4432), - [sym_none] = ACTIONS(4432), - [sym_true] = ACTIONS(4432), - [sym_false] = ACTIONS(4432), - [sym_nil] = ACTIONS(4432), - [anon_sym_if] = ACTIONS(4432), - [anon_sym_DOLLARif] = ACTIONS(4432), - [anon_sym_match] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [anon_sym_lock] = ACTIONS(4432), - [anon_sym_rlock] = ACTIONS(4432), - [anon_sym_unsafe] = ACTIONS(4432), - [anon_sym_sql] = ACTIONS(4432), - [sym_int_literal] = ACTIONS(4432), - [sym_float_literal] = ACTIONS(4432), - [sym_rune_literal] = ACTIONS(4432), - [anon_sym_SQUOTE] = ACTIONS(4432), - [anon_sym_DQUOTE] = ACTIONS(4432), - [anon_sym_c_SQUOTE] = ACTIONS(4432), - [anon_sym_c_DQUOTE] = ACTIONS(4432), - [anon_sym_r_SQUOTE] = ACTIONS(4432), - [anon_sym_r_DQUOTE] = ACTIONS(4432), - [sym_pseudo_compile_time_identifier] = ACTIONS(4432), - [anon_sym_shared] = ACTIONS(4432), - [aux_sym_sum_type_token1] = ACTIONS(4432), - [anon_sym_PIPE2] = ACTIONS(4430), - [anon_sym_map_LBRACK] = ACTIONS(4432), - [anon_sym_chan] = ACTIONS(4432), - [anon_sym_thread] = ACTIONS(4432), - [anon_sym_atomic] = ACTIONS(4432), - [anon_sym_assert] = ACTIONS(4432), - [anon_sym_defer] = ACTIONS(4432), - [anon_sym_goto] = ACTIONS(4432), - [anon_sym_break] = ACTIONS(4432), - [anon_sym_continue] = ACTIONS(4432), - [anon_sym_return] = ACTIONS(4432), - [anon_sym_DOLLARfor] = ACTIONS(4432), - [anon_sym_for] = ACTIONS(4432), - [anon_sym_POUND] = ACTIONS(4432), - [anon_sym_asm] = ACTIONS(4432), - [anon_sym_AT_LBRACK] = ACTIONS(4432), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym___global] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_union] = ACTIONS(3296), + [anon_sym_pub] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [aux_sym_sum_type_token1] = ACTIONS(3296), + [anon_sym_PIPE2] = ACTIONS(3294), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), + [anon_sym_AT_LBRACK] = ACTIONS(3296), }, [1736] = { [sym_line_comment] = STATE(1736), [sym_block_comment] = STATE(1736), - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), + [ts_builtin_sym_end] = ACTIONS(4420), + [sym_identifier] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4422), + [anon_sym_CR] = ACTIONS(4422), + [anon_sym_CR_LF] = ACTIONS(4422), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_const] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym___global] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_union] = ACTIONS(3043), - [anon_sym_pub] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_enum] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [aux_sym_sum_type_token1] = ACTIONS(3043), - [anon_sym_PIPE2] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - [anon_sym_AT_LBRACK] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_const] = ACTIONS(4422), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym___global] = ACTIONS(4422), + [anon_sym_type] = ACTIONS(4422), + [anon_sym_fn] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_struct] = ACTIONS(4422), + [anon_sym_union] = ACTIONS(4422), + [anon_sym_pub] = ACTIONS(4422), + [anon_sym_mut] = ACTIONS(4422), + [anon_sym_enum] = ACTIONS(4422), + [anon_sym_interface] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_BANG] = ACTIONS(4422), + [anon_sym_go] = ACTIONS(4422), + [anon_sym_spawn] = ACTIONS(4422), + [anon_sym_json_DOTdecode] = ACTIONS(4422), + [anon_sym_LBRACK2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_LT_DASH] = ACTIONS(4422), + [sym_none] = ACTIONS(4422), + [sym_true] = ACTIONS(4422), + [sym_false] = ACTIONS(4422), + [sym_nil] = ACTIONS(4422), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_DOLLARif] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4422), + [anon_sym_select] = ACTIONS(4422), + [anon_sym_lock] = ACTIONS(4422), + [anon_sym_rlock] = ACTIONS(4422), + [anon_sym_unsafe] = ACTIONS(4422), + [anon_sym_sql] = ACTIONS(4422), + [sym_int_literal] = ACTIONS(4422), + [sym_float_literal] = ACTIONS(4422), + [sym_rune_literal] = ACTIONS(4422), + [anon_sym_SQUOTE] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(4422), + [anon_sym_c_SQUOTE] = ACTIONS(4422), + [anon_sym_c_DQUOTE] = ACTIONS(4422), + [anon_sym_r_SQUOTE] = ACTIONS(4422), + [anon_sym_r_DQUOTE] = ACTIONS(4422), + [sym_pseudo_compile_time_identifier] = ACTIONS(4422), + [anon_sym_shared] = ACTIONS(4422), + [aux_sym_sum_type_token1] = ACTIONS(4422), + [anon_sym_PIPE2] = ACTIONS(4420), + [anon_sym_map_LBRACK] = ACTIONS(4422), + [anon_sym_chan] = ACTIONS(4422), + [anon_sym_thread] = ACTIONS(4422), + [anon_sym_atomic] = ACTIONS(4422), + [anon_sym_assert] = ACTIONS(4422), + [anon_sym_defer] = ACTIONS(4422), + [anon_sym_goto] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_DOLLARfor] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4422), + [anon_sym_asm] = ACTIONS(4422), + [anon_sym_AT_LBRACK] = ACTIONS(4422), }, [1737] = { [sym_line_comment] = STATE(1737), [sym_block_comment] = STATE(1737), - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_LF] = ACTIONS(3300), - [anon_sym_CR] = ACTIONS(3300), - [anon_sym_CR_LF] = ACTIONS(3300), + [aux_sym_strictly_expression_list_repeat1] = STATE(1717), + [ts_builtin_sym_end] = ACTIONS(4424), + [sym_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_CR] = ACTIONS(4426), + [anon_sym_CR_LF] = ACTIONS(4426), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym___global] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_pub] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_QMARK] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_go] = ACTIONS(3300), - [anon_sym_spawn] = ACTIONS(3300), - [anon_sym_json_DOTdecode] = ACTIONS(3300), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_LT_DASH] = ACTIONS(3300), - [sym_none] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_nil] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_DOLLARif] = ACTIONS(3300), - [anon_sym_match] = ACTIONS(3300), - [anon_sym_select] = ACTIONS(3300), - [anon_sym_lock] = ACTIONS(3300), - [anon_sym_rlock] = ACTIONS(3300), - [anon_sym_unsafe] = ACTIONS(3300), - [anon_sym_sql] = ACTIONS(3300), - [sym_int_literal] = ACTIONS(3300), - [sym_float_literal] = ACTIONS(3300), - [sym_rune_literal] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_c_SQUOTE] = ACTIONS(3300), - [anon_sym_c_DQUOTE] = ACTIONS(3300), - [anon_sym_r_SQUOTE] = ACTIONS(3300), - [anon_sym_r_DQUOTE] = ACTIONS(3300), - [sym_pseudo_compile_time_identifier] = ACTIONS(3300), - [anon_sym_shared] = ACTIONS(3300), - [aux_sym_sum_type_token1] = ACTIONS(3300), - [anon_sym_PIPE2] = ACTIONS(3298), - [anon_sym_map_LBRACK] = ACTIONS(3300), - [anon_sym_chan] = ACTIONS(3300), - [anon_sym_thread] = ACTIONS(3300), - [anon_sym_atomic] = ACTIONS(3300), - [anon_sym_assert] = ACTIONS(3300), - [anon_sym_defer] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_DOLLARfor] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym_AT_LBRACK] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym___global] = ACTIONS(4426), + [anon_sym_type] = ACTIONS(4426), + [anon_sym_fn] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_union] = ACTIONS(4426), + [anon_sym_pub] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_enum] = ACTIONS(4426), + [anon_sym_interface] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_go] = ACTIONS(4426), + [anon_sym_spawn] = ACTIONS(4426), + [anon_sym_json_DOTdecode] = ACTIONS(4426), + [anon_sym_LBRACK2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_LT_DASH] = ACTIONS(4426), + [sym_none] = ACTIONS(4426), + [sym_true] = ACTIONS(4426), + [sym_false] = ACTIONS(4426), + [sym_nil] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_DOLLARif] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_select] = ACTIONS(4426), + [anon_sym_lock] = ACTIONS(4426), + [anon_sym_rlock] = ACTIONS(4426), + [anon_sym_unsafe] = ACTIONS(4426), + [anon_sym_sql] = ACTIONS(4426), + [sym_int_literal] = ACTIONS(4426), + [sym_float_literal] = ACTIONS(4426), + [sym_rune_literal] = ACTIONS(4426), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [anon_sym_c_SQUOTE] = ACTIONS(4426), + [anon_sym_c_DQUOTE] = ACTIONS(4426), + [anon_sym_r_SQUOTE] = ACTIONS(4426), + [anon_sym_r_DQUOTE] = ACTIONS(4426), + [sym_pseudo_compile_time_identifier] = ACTIONS(4426), + [anon_sym_shared] = ACTIONS(4426), + [anon_sym_map_LBRACK] = ACTIONS(4426), + [anon_sym_chan] = ACTIONS(4426), + [anon_sym_thread] = ACTIONS(4426), + [anon_sym_atomic] = ACTIONS(4426), + [anon_sym_assert] = ACTIONS(4426), + [anon_sym_defer] = ACTIONS(4426), + [anon_sym_goto] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_DOLLARfor] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(4426), + [anon_sym_asm] = ACTIONS(4426), + [anon_sym_AT_LBRACK] = ACTIONS(4426), }, [1738] = { [sym_line_comment] = STATE(1738), [sym_block_comment] = STATE(1738), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym___global] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_pub] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [aux_sym_sum_type_token1] = ACTIONS(3350), - [anon_sym_PIPE2] = ACTIONS(3348), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_defer] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_DOLLARfor] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym_AT_LBRACK] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [aux_sym_sum_type_token1] = ACTIONS(3356), + [anon_sym_PIPE2] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), }, [1739] = { [sym_line_comment] = STATE(1739), [sym_block_comment] = STATE(1739), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym___global] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_pub] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [aux_sym_sum_type_token1] = ACTIONS(3346), + [anon_sym_PIPE2] = ACTIONS(3344), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym_AT_LBRACK] = ACTIONS(3346), + }, + [1740] = { + [sym_line_comment] = STATE(1740), + [sym_block_comment] = STATE(1740), + [aux_sym_strictly_expression_list_repeat1] = STATE(1717), + [ts_builtin_sym_end] = ACTIONS(4428), + [sym_identifier] = ACTIONS(4430), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_CR] = ACTIONS(4430), + [anon_sym_CR_LF] = ACTIONS(4430), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4430), + [anon_sym_COMMA] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym___global] = ACTIONS(4430), + [anon_sym_type] = ACTIONS(4430), + [anon_sym_fn] = ACTIONS(4430), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_union] = ACTIONS(4430), + [anon_sym_pub] = ACTIONS(4430), + [anon_sym_mut] = ACTIONS(4430), + [anon_sym_enum] = ACTIONS(4430), + [anon_sym_interface] = ACTIONS(4430), + [anon_sym_QMARK] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_go] = ACTIONS(4430), + [anon_sym_spawn] = ACTIONS(4430), + [anon_sym_json_DOTdecode] = ACTIONS(4430), + [anon_sym_LBRACK2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_CARET] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_LT_DASH] = ACTIONS(4430), + [sym_none] = ACTIONS(4430), + [sym_true] = ACTIONS(4430), + [sym_false] = ACTIONS(4430), + [sym_nil] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_DOLLARif] = ACTIONS(4430), + [anon_sym_match] = ACTIONS(4430), + [anon_sym_select] = ACTIONS(4430), + [anon_sym_lock] = ACTIONS(4430), + [anon_sym_rlock] = ACTIONS(4430), + [anon_sym_unsafe] = ACTIONS(4430), + [anon_sym_sql] = ACTIONS(4430), + [sym_int_literal] = ACTIONS(4430), + [sym_float_literal] = ACTIONS(4430), + [sym_rune_literal] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4430), + [anon_sym_c_SQUOTE] = ACTIONS(4430), + [anon_sym_c_DQUOTE] = ACTIONS(4430), + [anon_sym_r_SQUOTE] = ACTIONS(4430), + [anon_sym_r_DQUOTE] = ACTIONS(4430), + [sym_pseudo_compile_time_identifier] = ACTIONS(4430), + [anon_sym_shared] = ACTIONS(4430), + [anon_sym_map_LBRACK] = ACTIONS(4430), + [anon_sym_chan] = ACTIONS(4430), + [anon_sym_thread] = ACTIONS(4430), + [anon_sym_atomic] = ACTIONS(4430), + [anon_sym_assert] = ACTIONS(4430), + [anon_sym_defer] = ACTIONS(4430), + [anon_sym_goto] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_DOLLARfor] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4430), + [anon_sym_POUND] = ACTIONS(4430), + [anon_sym_asm] = ACTIONS(4430), + [anon_sym_AT_LBRACK] = ACTIONS(4430), + }, + [1741] = { + [sym_line_comment] = STATE(1741), + [sym_block_comment] = STATE(1741), + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym___global] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_union] = ACTIONS(3324), + [anon_sym_pub] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [aux_sym_sum_type_token1] = ACTIONS(3324), + [anon_sym_PIPE2] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_assert] = ACTIONS(3324), + [anon_sym_defer] = ACTIONS(3324), + [anon_sym_goto] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_DOLLARfor] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3324), + [anon_sym_asm] = ACTIONS(3324), + [anon_sym_AT_LBRACK] = ACTIONS(3324), + }, + [1742] = { + [sym_line_comment] = STATE(1742), + [sym_block_comment] = STATE(1742), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_c_SQUOTE] = ACTIONS(3027), + [anon_sym_c_DQUOTE] = ACTIONS(3027), + [anon_sym_r_SQUOTE] = ACTIONS(3027), + [anon_sym_r_DQUOTE] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [aux_sym_sum_type_token1] = ACTIONS(3027), + [anon_sym_PIPE2] = ACTIONS(3025), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + }, + [1743] = { + [sym_line_comment] = STATE(1743), + [sym_block_comment] = STATE(1743), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym___global] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_interface] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_c_SQUOTE] = ACTIONS(3031), + [anon_sym_c_DQUOTE] = ACTIONS(3031), + [anon_sym_r_SQUOTE] = ACTIONS(3031), + [anon_sym_r_DQUOTE] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [aux_sym_sum_type_token1] = ACTIONS(3031), + [anon_sym_PIPE2] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym_AT_LBRACK] = ACTIONS(3031), + }, + [1744] = { + [sym_line_comment] = STATE(1744), + [sym_block_comment] = STATE(1744), [ts_builtin_sym_end] = ACTIONS(3302), [sym_identifier] = ACTIONS(3304), [anon_sym_LF] = ACTIONS(3304), @@ -208073,391 +208696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3304), [anon_sym_AT_LBRACK] = ACTIONS(3304), }, - [1740] = { - [sym_line_comment] = STATE(1740), - [sym_block_comment] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym___global] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_pub] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_interface] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [aux_sym_sum_type_token1] = ACTIONS(2885), - [anon_sym_PIPE2] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), - [anon_sym_assert] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_DOLLARfor] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym_AT_LBRACK] = ACTIONS(2885), - }, - [1741] = { - [sym_line_comment] = STATE(1741), - [sym_block_comment] = STATE(1741), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_const] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym___global] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_union] = ACTIONS(3047), - [anon_sym_pub] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [aux_sym_sum_type_token1] = ACTIONS(3047), - [anon_sym_PIPE2] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), - [anon_sym_AT_LBRACK] = ACTIONS(3047), - }, - [1742] = { - [sym_line_comment] = STATE(1742), - [sym_block_comment] = STATE(1742), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(851), - [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_LBRACK2] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(849), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_GT_GT_GT] = ACTIONS(849), - [anon_sym_AMP_CARET] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_or] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(849), - [anon_sym_POUND_LBRACK] = ACTIONS(849), - [anon_sym_is] = ACTIONS(851), - [anon_sym_BANGis] = ACTIONS(849), - [anon_sym_in] = ACTIONS(851), - [anon_sym_BANGin] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(849), - }, - [1743] = { - [sym_line_comment] = STATE(1743), - [sym_block_comment] = STATE(1743), - [ts_builtin_sym_end] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LF] = ACTIONS(3308), - [anon_sym_CR] = ACTIONS(3308), - [anon_sym_CR_LF] = ACTIONS(3308), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym___global] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_fn] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_pub] = ACTIONS(3308), - [anon_sym_mut] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_QMARK] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3308), - [anon_sym_spawn] = ACTIONS(3308), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_CARET] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_LT_DASH] = ACTIONS(3308), - [sym_none] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_nil] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3308), - [anon_sym_match] = ACTIONS(3308), - [anon_sym_select] = ACTIONS(3308), - [anon_sym_lock] = ACTIONS(3308), - [anon_sym_rlock] = ACTIONS(3308), - [anon_sym_unsafe] = ACTIONS(3308), - [anon_sym_sql] = ACTIONS(3308), - [sym_int_literal] = ACTIONS(3308), - [sym_float_literal] = ACTIONS(3308), - [sym_rune_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_c_SQUOTE] = ACTIONS(3308), - [anon_sym_c_DQUOTE] = ACTIONS(3308), - [anon_sym_r_SQUOTE] = ACTIONS(3308), - [anon_sym_r_DQUOTE] = ACTIONS(3308), - [sym_pseudo_compile_time_identifier] = ACTIONS(3308), - [anon_sym_shared] = ACTIONS(3308), - [aux_sym_sum_type_token1] = ACTIONS(3308), - [anon_sym_PIPE2] = ACTIONS(3306), - [anon_sym_map_LBRACK] = ACTIONS(3308), - [anon_sym_chan] = ACTIONS(3308), - [anon_sym_thread] = ACTIONS(3308), - [anon_sym_atomic] = ACTIONS(3308), - [anon_sym_assert] = ACTIONS(3308), - [anon_sym_defer] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_DOLLARfor] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_POUND] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym_AT_LBRACK] = ACTIONS(3308), - }, - [1744] = { - [sym_line_comment] = STATE(1744), - [sym_block_comment] = STATE(1744), - [ts_builtin_sym_end] = ACTIONS(3312), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym___global] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_pub] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [aux_sym_sum_type_token1] = ACTIONS(3314), - [anon_sym_PIPE2] = ACTIONS(3312), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym_AT_LBRACK] = ACTIONS(3314), - }, [1745] = { [sym_line_comment] = STATE(1745), [sym_block_comment] = STATE(1745), @@ -208538,1159 +208776,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1746] = { [sym_line_comment] = STATE(1746), [sym_block_comment] = STATE(1746), - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3328), - [anon_sym_r_SQUOTE] = ACTIONS(3328), - [anon_sym_r_DQUOTE] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [aux_sym_sum_type_token1] = ACTIONS(3328), - [anon_sym_PIPE2] = ACTIONS(3326), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym___global] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_pub] = ACTIONS(2841), + [anon_sym_mut] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_QMARK] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_go] = ACTIONS(2841), + [anon_sym_spawn] = ACTIONS(2841), + [anon_sym_json_DOTdecode] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_LT_DASH] = ACTIONS(2841), + [sym_none] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_nil] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_DOLLARif] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_select] = ACTIONS(2841), + [anon_sym_lock] = ACTIONS(2841), + [anon_sym_rlock] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_sql] = ACTIONS(2841), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), + [sym_rune_literal] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_c_SQUOTE] = ACTIONS(2841), + [anon_sym_c_DQUOTE] = ACTIONS(2841), + [anon_sym_r_SQUOTE] = ACTIONS(2841), + [anon_sym_r_DQUOTE] = ACTIONS(2841), + [sym_pseudo_compile_time_identifier] = ACTIONS(2841), + [anon_sym_shared] = ACTIONS(2841), + [aux_sym_sum_type_token1] = ACTIONS(2841), + [anon_sym_PIPE2] = ACTIONS(2839), + [anon_sym_map_LBRACK] = ACTIONS(2841), + [anon_sym_chan] = ACTIONS(2841), + [anon_sym_thread] = ACTIONS(2841), + [anon_sym_atomic] = ACTIONS(2841), + [anon_sym_assert] = ACTIONS(2841), + [anon_sym_defer] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_DOLLARfor] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2841), + [anon_sym_AT_LBRACK] = ACTIONS(2841), }, [1747] = { [sym_line_comment] = STATE(1747), [sym_block_comment] = STATE(1747), - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LF] = ACTIONS(3308), + [anon_sym_CR] = ACTIONS(3308), + [anon_sym_CR_LF] = ACTIONS(3308), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_c_SQUOTE] = ACTIONS(3336), - [anon_sym_c_DQUOTE] = ACTIONS(3336), - [anon_sym_r_SQUOTE] = ACTIONS(3336), - [anon_sym_r_DQUOTE] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [aux_sym_sum_type_token1] = ACTIONS(3336), - [anon_sym_PIPE2] = ACTIONS(3334), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym_AT_LBRACK] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym___global] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_fn] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_pub] = ACTIONS(3308), + [anon_sym_mut] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3308), + [anon_sym_spawn] = ACTIONS(3308), + [anon_sym_json_DOTdecode] = ACTIONS(3308), + [anon_sym_LBRACK2] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_CARET] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_nil] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_select] = ACTIONS(3308), + [anon_sym_lock] = ACTIONS(3308), + [anon_sym_rlock] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_sql] = ACTIONS(3308), + [sym_int_literal] = ACTIONS(3308), + [sym_float_literal] = ACTIONS(3308), + [sym_rune_literal] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_c_SQUOTE] = ACTIONS(3308), + [anon_sym_c_DQUOTE] = ACTIONS(3308), + [anon_sym_r_SQUOTE] = ACTIONS(3308), + [anon_sym_r_DQUOTE] = ACTIONS(3308), + [sym_pseudo_compile_time_identifier] = ACTIONS(3308), + [anon_sym_shared] = ACTIONS(3308), + [aux_sym_sum_type_token1] = ACTIONS(3308), + [anon_sym_PIPE2] = ACTIONS(3306), + [anon_sym_map_LBRACK] = ACTIONS(3308), + [anon_sym_chan] = ACTIONS(3308), + [anon_sym_thread] = ACTIONS(3308), + [anon_sym_atomic] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_defer] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_DOLLARfor] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_POUND] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym_AT_LBRACK] = ACTIONS(3308), }, [1748] = { [sym_line_comment] = STATE(1748), [sym_block_comment] = STATE(1748), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym___global] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_pub] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [aux_sym_sum_type_token1] = ACTIONS(3354), - [anon_sym_PIPE2] = ACTIONS(3352), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym_AT_LBRACK] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym___global] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_pub] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [aux_sym_sum_type_token1] = ACTIONS(3312), + [anon_sym_PIPE2] = ACTIONS(3310), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym_AT_LBRACK] = ACTIONS(3312), }, [1749] = { [sym_line_comment] = STATE(1749), [sym_block_comment] = STATE(1749), - [ts_builtin_sym_end] = ACTIONS(3908), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), + [sym_block] = STATE(1889), + [ts_builtin_sym_end] = ACTIONS(4432), + [sym_identifier] = ACTIONS(4434), + [anon_sym_LF] = ACTIONS(4434), + [anon_sym_CR] = ACTIONS(4434), + [anon_sym_CR_LF] = ACTIONS(4434), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym___global] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), - [anon_sym_LBRACK2] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_DASH] = ACTIONS(2045), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), - [anon_sym_AT_LBRACK] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym___global] = ACTIONS(4434), + [anon_sym_type] = ACTIONS(4434), + [anon_sym_fn] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_struct] = ACTIONS(4434), + [anon_sym_union] = ACTIONS(4434), + [anon_sym_pub] = ACTIONS(4434), + [anon_sym_mut] = ACTIONS(4434), + [anon_sym_enum] = ACTIONS(4434), + [anon_sym_interface] = ACTIONS(4434), + [anon_sym_QMARK] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4434), + [anon_sym_go] = ACTIONS(4434), + [anon_sym_spawn] = ACTIONS(4434), + [anon_sym_json_DOTdecode] = ACTIONS(4434), + [anon_sym_LBRACK2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_CARET] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_LT_DASH] = ACTIONS(4434), + [sym_none] = ACTIONS(4434), + [sym_true] = ACTIONS(4434), + [sym_false] = ACTIONS(4434), + [sym_nil] = ACTIONS(4434), + [anon_sym_if] = ACTIONS(4434), + [anon_sym_DOLLARif] = ACTIONS(4434), + [anon_sym_match] = ACTIONS(4434), + [anon_sym_select] = ACTIONS(4434), + [anon_sym_lock] = ACTIONS(4434), + [anon_sym_rlock] = ACTIONS(4434), + [anon_sym_unsafe] = ACTIONS(4434), + [anon_sym_sql] = ACTIONS(4434), + [sym_int_literal] = ACTIONS(4434), + [sym_float_literal] = ACTIONS(4434), + [sym_rune_literal] = ACTIONS(4434), + [anon_sym_SQUOTE] = ACTIONS(4434), + [anon_sym_DQUOTE] = ACTIONS(4434), + [anon_sym_c_SQUOTE] = ACTIONS(4434), + [anon_sym_c_DQUOTE] = ACTIONS(4434), + [anon_sym_r_SQUOTE] = ACTIONS(4434), + [anon_sym_r_DQUOTE] = ACTIONS(4434), + [sym_pseudo_compile_time_identifier] = ACTIONS(4434), + [anon_sym_shared] = ACTIONS(4434), + [anon_sym_map_LBRACK] = ACTIONS(4434), + [anon_sym_chan] = ACTIONS(4434), + [anon_sym_thread] = ACTIONS(4434), + [anon_sym_atomic] = ACTIONS(4434), + [anon_sym_assert] = ACTIONS(4434), + [anon_sym_defer] = ACTIONS(4434), + [anon_sym_goto] = ACTIONS(4434), + [anon_sym_break] = ACTIONS(4434), + [anon_sym_continue] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4434), + [anon_sym_DOLLARfor] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4434), + [anon_sym_POUND] = ACTIONS(4434), + [anon_sym_asm] = ACTIONS(4434), + [anon_sym_AT_LBRACK] = ACTIONS(4434), }, [1750] = { [sym_line_comment] = STATE(1750), [sym_block_comment] = STATE(1750), - [sym_block] = STATE(1839), - [ts_builtin_sym_end] = ACTIONS(4434), - [sym_identifier] = ACTIONS(4436), - [anon_sym_LF] = ACTIONS(4436), - [anon_sym_CR] = ACTIONS(4436), - [anon_sym_CR_LF] = ACTIONS(4436), + [sym_block] = STATE(1837), + [ts_builtin_sym_end] = ACTIONS(4438), + [sym_identifier] = ACTIONS(4440), + [anon_sym_LF] = ACTIONS(4440), + [anon_sym_CR] = ACTIONS(4440), + [anon_sym_CR_LF] = ACTIONS(4440), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4436), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4436), - [anon_sym_LPAREN] = ACTIONS(4436), - [anon_sym___global] = ACTIONS(4436), - [anon_sym_type] = ACTIONS(4436), - [anon_sym_fn] = ACTIONS(4436), - [anon_sym_PLUS] = ACTIONS(4436), - [anon_sym_DASH] = ACTIONS(4436), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_struct] = ACTIONS(4436), - [anon_sym_union] = ACTIONS(4436), - [anon_sym_pub] = ACTIONS(4436), - [anon_sym_mut] = ACTIONS(4436), - [anon_sym_enum] = ACTIONS(4436), - [anon_sym_interface] = ACTIONS(4436), - [anon_sym_QMARK] = ACTIONS(4436), - [anon_sym_BANG] = ACTIONS(4436), - [anon_sym_go] = ACTIONS(4436), - [anon_sym_spawn] = ACTIONS(4436), - [anon_sym_json_DOTdecode] = ACTIONS(4436), - [anon_sym_LBRACK2] = ACTIONS(4436), - [anon_sym_TILDE] = ACTIONS(4436), - [anon_sym_CARET] = ACTIONS(4436), - [anon_sym_AMP] = ACTIONS(4436), - [anon_sym_LT_DASH] = ACTIONS(4436), - [sym_none] = ACTIONS(4436), - [sym_true] = ACTIONS(4436), - [sym_false] = ACTIONS(4436), - [sym_nil] = ACTIONS(4436), - [anon_sym_if] = ACTIONS(4436), - [anon_sym_DOLLARif] = ACTIONS(4436), - [anon_sym_match] = ACTIONS(4436), - [anon_sym_select] = ACTIONS(4436), - [anon_sym_lock] = ACTIONS(4436), - [anon_sym_rlock] = ACTIONS(4436), - [anon_sym_unsafe] = ACTIONS(4436), - [anon_sym_sql] = ACTIONS(4436), - [sym_int_literal] = ACTIONS(4436), - [sym_float_literal] = ACTIONS(4436), - [sym_rune_literal] = ACTIONS(4436), - [anon_sym_SQUOTE] = ACTIONS(4436), - [anon_sym_DQUOTE] = ACTIONS(4436), - [anon_sym_c_SQUOTE] = ACTIONS(4436), - [anon_sym_c_DQUOTE] = ACTIONS(4436), - [anon_sym_r_SQUOTE] = ACTIONS(4436), - [anon_sym_r_DQUOTE] = ACTIONS(4436), - [sym_pseudo_compile_time_identifier] = ACTIONS(4436), - [anon_sym_shared] = ACTIONS(4436), - [anon_sym_map_LBRACK] = ACTIONS(4436), - [anon_sym_chan] = ACTIONS(4436), - [anon_sym_thread] = ACTIONS(4436), - [anon_sym_atomic] = ACTIONS(4436), - [anon_sym_assert] = ACTIONS(4436), - [anon_sym_defer] = ACTIONS(4436), - [anon_sym_goto] = ACTIONS(4436), - [anon_sym_break] = ACTIONS(4436), - [anon_sym_continue] = ACTIONS(4436), - [anon_sym_return] = ACTIONS(4436), - [anon_sym_DOLLARfor] = ACTIONS(4436), - [anon_sym_for] = ACTIONS(4436), - [anon_sym_POUND] = ACTIONS(4436), - [anon_sym_asm] = ACTIONS(4436), - [anon_sym_AT_LBRACK] = ACTIONS(4436), + [anon_sym_DOT] = ACTIONS(4440), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_LPAREN] = ACTIONS(4440), + [anon_sym___global] = ACTIONS(4440), + [anon_sym_type] = ACTIONS(4440), + [anon_sym_fn] = ACTIONS(4440), + [anon_sym_PLUS] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4440), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [anon_sym_pub] = ACTIONS(4440), + [anon_sym_mut] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_interface] = ACTIONS(4440), + [anon_sym_QMARK] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4440), + [anon_sym_go] = ACTIONS(4440), + [anon_sym_spawn] = ACTIONS(4440), + [anon_sym_json_DOTdecode] = ACTIONS(4440), + [anon_sym_LBRACK2] = ACTIONS(4440), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_CARET] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_LT_DASH] = ACTIONS(4440), + [sym_none] = ACTIONS(4440), + [sym_true] = ACTIONS(4440), + [sym_false] = ACTIONS(4440), + [sym_nil] = ACTIONS(4440), + [anon_sym_if] = ACTIONS(4440), + [anon_sym_DOLLARif] = ACTIONS(4440), + [anon_sym_match] = ACTIONS(4440), + [anon_sym_select] = ACTIONS(4440), + [anon_sym_lock] = ACTIONS(4440), + [anon_sym_rlock] = ACTIONS(4440), + [anon_sym_unsafe] = ACTIONS(4440), + [anon_sym_sql] = ACTIONS(4440), + [sym_int_literal] = ACTIONS(4440), + [sym_float_literal] = ACTIONS(4440), + [sym_rune_literal] = ACTIONS(4440), + [anon_sym_SQUOTE] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [anon_sym_c_SQUOTE] = ACTIONS(4440), + [anon_sym_c_DQUOTE] = ACTIONS(4440), + [anon_sym_r_SQUOTE] = ACTIONS(4440), + [anon_sym_r_DQUOTE] = ACTIONS(4440), + [sym_pseudo_compile_time_identifier] = ACTIONS(4440), + [anon_sym_shared] = ACTIONS(4440), + [anon_sym_map_LBRACK] = ACTIONS(4440), + [anon_sym_chan] = ACTIONS(4440), + [anon_sym_thread] = ACTIONS(4440), + [anon_sym_atomic] = ACTIONS(4440), + [anon_sym_assert] = ACTIONS(4440), + [anon_sym_defer] = ACTIONS(4440), + [anon_sym_goto] = ACTIONS(4440), + [anon_sym_break] = ACTIONS(4440), + [anon_sym_continue] = ACTIONS(4440), + [anon_sym_return] = ACTIONS(4440), + [anon_sym_DOLLARfor] = ACTIONS(4440), + [anon_sym_for] = ACTIONS(4440), + [anon_sym_POUND] = ACTIONS(4440), + [anon_sym_asm] = ACTIONS(4440), + [anon_sym_AT_LBRACK] = ACTIONS(4440), }, [1751] = { [sym_line_comment] = STATE(1751), [sym_block_comment] = STATE(1751), - [sym_block] = STATE(1789), - [ts_builtin_sym_end] = ACTIONS(4440), - [sym_identifier] = ACTIONS(4442), - [anon_sym_LF] = ACTIONS(4442), - [anon_sym_CR] = ACTIONS(4442), - [anon_sym_CR_LF] = ACTIONS(4442), + [sym_block] = STATE(1846), + [ts_builtin_sym_end] = ACTIONS(4442), + [sym_identifier] = ACTIONS(4444), + [anon_sym_LF] = ACTIONS(4444), + [anon_sym_CR] = ACTIONS(4444), + [anon_sym_CR_LF] = ACTIONS(4444), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4442), - [anon_sym___global] = ACTIONS(4442), - [anon_sym_type] = ACTIONS(4442), - [anon_sym_fn] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_struct] = ACTIONS(4442), - [anon_sym_union] = ACTIONS(4442), - [anon_sym_pub] = ACTIONS(4442), - [anon_sym_mut] = ACTIONS(4442), - [anon_sym_enum] = ACTIONS(4442), - [anon_sym_interface] = ACTIONS(4442), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_go] = ACTIONS(4442), - [anon_sym_spawn] = ACTIONS(4442), - [anon_sym_json_DOTdecode] = ACTIONS(4442), - [anon_sym_LBRACK2] = ACTIONS(4442), - [anon_sym_TILDE] = ACTIONS(4442), - [anon_sym_CARET] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_DASH] = ACTIONS(4442), - [sym_none] = ACTIONS(4442), - [sym_true] = ACTIONS(4442), - [sym_false] = ACTIONS(4442), - [sym_nil] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_DOLLARif] = ACTIONS(4442), - [anon_sym_match] = ACTIONS(4442), - [anon_sym_select] = ACTIONS(4442), - [anon_sym_lock] = ACTIONS(4442), - [anon_sym_rlock] = ACTIONS(4442), - [anon_sym_unsafe] = ACTIONS(4442), - [anon_sym_sql] = ACTIONS(4442), - [sym_int_literal] = ACTIONS(4442), - [sym_float_literal] = ACTIONS(4442), - [sym_rune_literal] = ACTIONS(4442), - [anon_sym_SQUOTE] = ACTIONS(4442), - [anon_sym_DQUOTE] = ACTIONS(4442), - [anon_sym_c_SQUOTE] = ACTIONS(4442), - [anon_sym_c_DQUOTE] = ACTIONS(4442), - [anon_sym_r_SQUOTE] = ACTIONS(4442), - [anon_sym_r_DQUOTE] = ACTIONS(4442), - [sym_pseudo_compile_time_identifier] = ACTIONS(4442), - [anon_sym_shared] = ACTIONS(4442), - [anon_sym_map_LBRACK] = ACTIONS(4442), - [anon_sym_chan] = ACTIONS(4442), - [anon_sym_thread] = ACTIONS(4442), - [anon_sym_atomic] = ACTIONS(4442), - [anon_sym_assert] = ACTIONS(4442), - [anon_sym_defer] = ACTIONS(4442), - [anon_sym_goto] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_DOLLARfor] = ACTIONS(4442), - [anon_sym_for] = ACTIONS(4442), - [anon_sym_POUND] = ACTIONS(4442), - [anon_sym_asm] = ACTIONS(4442), - [anon_sym_AT_LBRACK] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(4444), + [anon_sym___global] = ACTIONS(4444), + [anon_sym_type] = ACTIONS(4444), + [anon_sym_fn] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_union] = ACTIONS(4444), + [anon_sym_pub] = ACTIONS(4444), + [anon_sym_mut] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_interface] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_go] = ACTIONS(4444), + [anon_sym_spawn] = ACTIONS(4444), + [anon_sym_json_DOTdecode] = ACTIONS(4444), + [anon_sym_LBRACK2] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4444), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_LT_DASH] = ACTIONS(4444), + [sym_none] = ACTIONS(4444), + [sym_true] = ACTIONS(4444), + [sym_false] = ACTIONS(4444), + [sym_nil] = ACTIONS(4444), + [anon_sym_if] = ACTIONS(4444), + [anon_sym_DOLLARif] = ACTIONS(4444), + [anon_sym_match] = ACTIONS(4444), + [anon_sym_select] = ACTIONS(4444), + [anon_sym_lock] = ACTIONS(4444), + [anon_sym_rlock] = ACTIONS(4444), + [anon_sym_unsafe] = ACTIONS(4444), + [anon_sym_sql] = ACTIONS(4444), + [sym_int_literal] = ACTIONS(4444), + [sym_float_literal] = ACTIONS(4444), + [sym_rune_literal] = ACTIONS(4444), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_DQUOTE] = ACTIONS(4444), + [anon_sym_c_SQUOTE] = ACTIONS(4444), + [anon_sym_c_DQUOTE] = ACTIONS(4444), + [anon_sym_r_SQUOTE] = ACTIONS(4444), + [anon_sym_r_DQUOTE] = ACTIONS(4444), + [sym_pseudo_compile_time_identifier] = ACTIONS(4444), + [anon_sym_shared] = ACTIONS(4444), + [anon_sym_map_LBRACK] = ACTIONS(4444), + [anon_sym_chan] = ACTIONS(4444), + [anon_sym_thread] = ACTIONS(4444), + [anon_sym_atomic] = ACTIONS(4444), + [anon_sym_assert] = ACTIONS(4444), + [anon_sym_defer] = ACTIONS(4444), + [anon_sym_goto] = ACTIONS(4444), + [anon_sym_break] = ACTIONS(4444), + [anon_sym_continue] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4444), + [anon_sym_DOLLARfor] = ACTIONS(4444), + [anon_sym_for] = ACTIONS(4444), + [anon_sym_POUND] = ACTIONS(4444), + [anon_sym_asm] = ACTIONS(4444), + [anon_sym_AT_LBRACK] = ACTIONS(4444), }, [1752] = { [sym_line_comment] = STATE(1752), [sym_block_comment] = STATE(1752), - [sym_block] = STATE(1846), - [ts_builtin_sym_end] = ACTIONS(4444), - [sym_identifier] = ACTIONS(4446), - [anon_sym_LF] = ACTIONS(4446), - [anon_sym_CR] = ACTIONS(4446), - [anon_sym_CR_LF] = ACTIONS(4446), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4446), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym___global] = ACTIONS(4446), - [anon_sym_type] = ACTIONS(4446), - [anon_sym_fn] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_struct] = ACTIONS(4446), - [anon_sym_union] = ACTIONS(4446), - [anon_sym_pub] = ACTIONS(4446), - [anon_sym_mut] = ACTIONS(4446), - [anon_sym_enum] = ACTIONS(4446), - [anon_sym_interface] = ACTIONS(4446), - [anon_sym_QMARK] = ACTIONS(4446), - [anon_sym_BANG] = ACTIONS(4446), - [anon_sym_go] = ACTIONS(4446), - [anon_sym_spawn] = ACTIONS(4446), - [anon_sym_json_DOTdecode] = ACTIONS(4446), - [anon_sym_LBRACK2] = ACTIONS(4446), - [anon_sym_TILDE] = ACTIONS(4446), - [anon_sym_CARET] = ACTIONS(4446), - [anon_sym_AMP] = ACTIONS(4446), - [anon_sym_LT_DASH] = ACTIONS(4446), - [sym_none] = ACTIONS(4446), - [sym_true] = ACTIONS(4446), - [sym_false] = ACTIONS(4446), - [sym_nil] = ACTIONS(4446), - [anon_sym_if] = ACTIONS(4446), - [anon_sym_DOLLARif] = ACTIONS(4446), - [anon_sym_match] = ACTIONS(4446), - [anon_sym_select] = ACTIONS(4446), - [anon_sym_lock] = ACTIONS(4446), - [anon_sym_rlock] = ACTIONS(4446), - [anon_sym_unsafe] = ACTIONS(4446), - [anon_sym_sql] = ACTIONS(4446), - [sym_int_literal] = ACTIONS(4446), - [sym_float_literal] = ACTIONS(4446), - [sym_rune_literal] = ACTIONS(4446), - [anon_sym_SQUOTE] = ACTIONS(4446), - [anon_sym_DQUOTE] = ACTIONS(4446), - [anon_sym_c_SQUOTE] = ACTIONS(4446), - [anon_sym_c_DQUOTE] = ACTIONS(4446), - [anon_sym_r_SQUOTE] = ACTIONS(4446), - [anon_sym_r_DQUOTE] = ACTIONS(4446), - [sym_pseudo_compile_time_identifier] = ACTIONS(4446), - [anon_sym_shared] = ACTIONS(4446), - [anon_sym_map_LBRACK] = ACTIONS(4446), - [anon_sym_chan] = ACTIONS(4446), - [anon_sym_thread] = ACTIONS(4446), - [anon_sym_atomic] = ACTIONS(4446), - [anon_sym_assert] = ACTIONS(4446), - [anon_sym_defer] = ACTIONS(4446), - [anon_sym_goto] = ACTIONS(4446), - [anon_sym_break] = ACTIONS(4446), - [anon_sym_continue] = ACTIONS(4446), - [anon_sym_return] = ACTIONS(4446), - [anon_sym_DOLLARfor] = ACTIONS(4446), - [anon_sym_for] = ACTIONS(4446), - [anon_sym_POUND] = ACTIONS(4446), - [anon_sym_asm] = ACTIONS(4446), - [anon_sym_AT_LBRACK] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), }, [1753] = { [sym_line_comment] = STATE(1753), [sym_block_comment] = STATE(1753), - [sym_block] = STATE(1854), - [ts_builtin_sym_end] = ACTIONS(4448), - [sym_identifier] = ACTIONS(4450), - [anon_sym_LF] = ACTIONS(4450), - [anon_sym_CR] = ACTIONS(4450), - [anon_sym_CR_LF] = ACTIONS(4450), + [sym_block] = STATE(1879), + [ts_builtin_sym_end] = ACTIONS(4446), + [sym_identifier] = ACTIONS(4448), + [anon_sym_LF] = ACTIONS(4448), + [anon_sym_CR] = ACTIONS(4448), + [anon_sym_CR_LF] = ACTIONS(4448), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym___global] = ACTIONS(4450), - [anon_sym_type] = ACTIONS(4450), - [anon_sym_fn] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4450), - [anon_sym_DASH] = ACTIONS(4450), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_struct] = ACTIONS(4450), - [anon_sym_union] = ACTIONS(4450), - [anon_sym_pub] = ACTIONS(4450), - [anon_sym_mut] = ACTIONS(4450), - [anon_sym_enum] = ACTIONS(4450), - [anon_sym_interface] = ACTIONS(4450), - [anon_sym_QMARK] = ACTIONS(4450), - [anon_sym_BANG] = ACTIONS(4450), - [anon_sym_go] = ACTIONS(4450), - [anon_sym_spawn] = ACTIONS(4450), - [anon_sym_json_DOTdecode] = ACTIONS(4450), - [anon_sym_LBRACK2] = ACTIONS(4450), - [anon_sym_TILDE] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_AMP] = ACTIONS(4450), - [anon_sym_LT_DASH] = ACTIONS(4450), - [sym_none] = ACTIONS(4450), - [sym_true] = ACTIONS(4450), - [sym_false] = ACTIONS(4450), - [sym_nil] = ACTIONS(4450), - [anon_sym_if] = ACTIONS(4450), - [anon_sym_DOLLARif] = ACTIONS(4450), - [anon_sym_match] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [anon_sym_lock] = ACTIONS(4450), - [anon_sym_rlock] = ACTIONS(4450), - [anon_sym_unsafe] = ACTIONS(4450), - [anon_sym_sql] = ACTIONS(4450), - [sym_int_literal] = ACTIONS(4450), - [sym_float_literal] = ACTIONS(4450), - [sym_rune_literal] = ACTIONS(4450), - [anon_sym_SQUOTE] = ACTIONS(4450), - [anon_sym_DQUOTE] = ACTIONS(4450), - [anon_sym_c_SQUOTE] = ACTIONS(4450), - [anon_sym_c_DQUOTE] = ACTIONS(4450), - [anon_sym_r_SQUOTE] = ACTIONS(4450), - [anon_sym_r_DQUOTE] = ACTIONS(4450), - [sym_pseudo_compile_time_identifier] = ACTIONS(4450), - [anon_sym_shared] = ACTIONS(4450), - [anon_sym_map_LBRACK] = ACTIONS(4450), - [anon_sym_chan] = ACTIONS(4450), - [anon_sym_thread] = ACTIONS(4450), - [anon_sym_atomic] = ACTIONS(4450), - [anon_sym_assert] = ACTIONS(4450), - [anon_sym_defer] = ACTIONS(4450), - [anon_sym_goto] = ACTIONS(4450), - [anon_sym_break] = ACTIONS(4450), - [anon_sym_continue] = ACTIONS(4450), - [anon_sym_return] = ACTIONS(4450), - [anon_sym_DOLLARfor] = ACTIONS(4450), - [anon_sym_for] = ACTIONS(4450), - [anon_sym_POUND] = ACTIONS(4450), - [anon_sym_asm] = ACTIONS(4450), - [anon_sym_AT_LBRACK] = ACTIONS(4450), + [anon_sym_DOT] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_LPAREN] = ACTIONS(4448), + [anon_sym___global] = ACTIONS(4448), + [anon_sym_type] = ACTIONS(4448), + [anon_sym_fn] = ACTIONS(4448), + [anon_sym_PLUS] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), + [anon_sym_STAR] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [anon_sym_pub] = ACTIONS(4448), + [anon_sym_mut] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_interface] = ACTIONS(4448), + [anon_sym_QMARK] = ACTIONS(4448), + [anon_sym_BANG] = ACTIONS(4448), + [anon_sym_go] = ACTIONS(4448), + [anon_sym_spawn] = ACTIONS(4448), + [anon_sym_json_DOTdecode] = ACTIONS(4448), + [anon_sym_LBRACK2] = ACTIONS(4448), + [anon_sym_TILDE] = ACTIONS(4448), + [anon_sym_CARET] = ACTIONS(4448), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_LT_DASH] = ACTIONS(4448), + [sym_none] = ACTIONS(4448), + [sym_true] = ACTIONS(4448), + [sym_false] = ACTIONS(4448), + [sym_nil] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4448), + [anon_sym_DOLLARif] = ACTIONS(4448), + [anon_sym_match] = ACTIONS(4448), + [anon_sym_select] = ACTIONS(4448), + [anon_sym_lock] = ACTIONS(4448), + [anon_sym_rlock] = ACTIONS(4448), + [anon_sym_unsafe] = ACTIONS(4448), + [anon_sym_sql] = ACTIONS(4448), + [sym_int_literal] = ACTIONS(4448), + [sym_float_literal] = ACTIONS(4448), + [sym_rune_literal] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4448), + [anon_sym_DQUOTE] = ACTIONS(4448), + [anon_sym_c_SQUOTE] = ACTIONS(4448), + [anon_sym_c_DQUOTE] = ACTIONS(4448), + [anon_sym_r_SQUOTE] = ACTIONS(4448), + [anon_sym_r_DQUOTE] = ACTIONS(4448), + [sym_pseudo_compile_time_identifier] = ACTIONS(4448), + [anon_sym_shared] = ACTIONS(4448), + [anon_sym_map_LBRACK] = ACTIONS(4448), + [anon_sym_chan] = ACTIONS(4448), + [anon_sym_thread] = ACTIONS(4448), + [anon_sym_atomic] = ACTIONS(4448), + [anon_sym_assert] = ACTIONS(4448), + [anon_sym_defer] = ACTIONS(4448), + [anon_sym_goto] = ACTIONS(4448), + [anon_sym_break] = ACTIONS(4448), + [anon_sym_continue] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4448), + [anon_sym_DOLLARfor] = ACTIONS(4448), + [anon_sym_for] = ACTIONS(4448), + [anon_sym_POUND] = ACTIONS(4448), + [anon_sym_asm] = ACTIONS(4448), + [anon_sym_AT_LBRACK] = ACTIONS(4448), }, [1754] = { [sym_line_comment] = STATE(1754), [sym_block_comment] = STATE(1754), - [sym_block] = STATE(1904), - [ts_builtin_sym_end] = ACTIONS(4452), - [sym_identifier] = ACTIONS(4454), - [anon_sym_LF] = ACTIONS(4454), - [anon_sym_CR] = ACTIONS(4454), - [anon_sym_CR_LF] = ACTIONS(4454), + [sym_block] = STATE(1868), + [ts_builtin_sym_end] = ACTIONS(4450), + [sym_identifier] = ACTIONS(4452), + [anon_sym_LF] = ACTIONS(4452), + [anon_sym_CR] = ACTIONS(4452), + [anon_sym_CR_LF] = ACTIONS(4452), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym___global] = ACTIONS(4454), - [anon_sym_type] = ACTIONS(4454), - [anon_sym_fn] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_struct] = ACTIONS(4454), - [anon_sym_union] = ACTIONS(4454), - [anon_sym_pub] = ACTIONS(4454), - [anon_sym_mut] = ACTIONS(4454), - [anon_sym_enum] = ACTIONS(4454), - [anon_sym_interface] = ACTIONS(4454), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_go] = ACTIONS(4454), - [anon_sym_spawn] = ACTIONS(4454), - [anon_sym_json_DOTdecode] = ACTIONS(4454), - [anon_sym_LBRACK2] = ACTIONS(4454), - [anon_sym_TILDE] = ACTIONS(4454), - [anon_sym_CARET] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_LT_DASH] = ACTIONS(4454), - [sym_none] = ACTIONS(4454), - [sym_true] = ACTIONS(4454), - [sym_false] = ACTIONS(4454), - [sym_nil] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_DOLLARif] = ACTIONS(4454), - [anon_sym_match] = ACTIONS(4454), - [anon_sym_select] = ACTIONS(4454), - [anon_sym_lock] = ACTIONS(4454), - [anon_sym_rlock] = ACTIONS(4454), - [anon_sym_unsafe] = ACTIONS(4454), - [anon_sym_sql] = ACTIONS(4454), - [sym_int_literal] = ACTIONS(4454), - [sym_float_literal] = ACTIONS(4454), - [sym_rune_literal] = ACTIONS(4454), - [anon_sym_SQUOTE] = ACTIONS(4454), - [anon_sym_DQUOTE] = ACTIONS(4454), - [anon_sym_c_SQUOTE] = ACTIONS(4454), - [anon_sym_c_DQUOTE] = ACTIONS(4454), - [anon_sym_r_SQUOTE] = ACTIONS(4454), - [anon_sym_r_DQUOTE] = ACTIONS(4454), - [sym_pseudo_compile_time_identifier] = ACTIONS(4454), - [anon_sym_shared] = ACTIONS(4454), - [anon_sym_map_LBRACK] = ACTIONS(4454), - [anon_sym_chan] = ACTIONS(4454), - [anon_sym_thread] = ACTIONS(4454), - [anon_sym_atomic] = ACTIONS(4454), - [anon_sym_assert] = ACTIONS(4454), - [anon_sym_defer] = ACTIONS(4454), - [anon_sym_goto] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_DOLLARfor] = ACTIONS(4454), - [anon_sym_for] = ACTIONS(4454), - [anon_sym_POUND] = ACTIONS(4454), - [anon_sym_asm] = ACTIONS(4454), - [anon_sym_AT_LBRACK] = ACTIONS(4454), + [anon_sym_DOT] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_LPAREN] = ACTIONS(4452), + [anon_sym___global] = ACTIONS(4452), + [anon_sym_type] = ACTIONS(4452), + [anon_sym_fn] = ACTIONS(4452), + [anon_sym_PLUS] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4452), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [anon_sym_pub] = ACTIONS(4452), + [anon_sym_mut] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_interface] = ACTIONS(4452), + [anon_sym_QMARK] = ACTIONS(4452), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_go] = ACTIONS(4452), + [anon_sym_spawn] = ACTIONS(4452), + [anon_sym_json_DOTdecode] = ACTIONS(4452), + [anon_sym_LBRACK2] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [anon_sym_CARET] = ACTIONS(4452), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_LT_DASH] = ACTIONS(4452), + [sym_none] = ACTIONS(4452), + [sym_true] = ACTIONS(4452), + [sym_false] = ACTIONS(4452), + [sym_nil] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(4452), + [anon_sym_DOLLARif] = ACTIONS(4452), + [anon_sym_match] = ACTIONS(4452), + [anon_sym_select] = ACTIONS(4452), + [anon_sym_lock] = ACTIONS(4452), + [anon_sym_rlock] = ACTIONS(4452), + [anon_sym_unsafe] = ACTIONS(4452), + [anon_sym_sql] = ACTIONS(4452), + [sym_int_literal] = ACTIONS(4452), + [sym_float_literal] = ACTIONS(4452), + [sym_rune_literal] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE] = ACTIONS(4452), + [anon_sym_c_SQUOTE] = ACTIONS(4452), + [anon_sym_c_DQUOTE] = ACTIONS(4452), + [anon_sym_r_SQUOTE] = ACTIONS(4452), + [anon_sym_r_DQUOTE] = ACTIONS(4452), + [sym_pseudo_compile_time_identifier] = ACTIONS(4452), + [anon_sym_shared] = ACTIONS(4452), + [anon_sym_map_LBRACK] = ACTIONS(4452), + [anon_sym_chan] = ACTIONS(4452), + [anon_sym_thread] = ACTIONS(4452), + [anon_sym_atomic] = ACTIONS(4452), + [anon_sym_assert] = ACTIONS(4452), + [anon_sym_defer] = ACTIONS(4452), + [anon_sym_goto] = ACTIONS(4452), + [anon_sym_break] = ACTIONS(4452), + [anon_sym_continue] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4452), + [anon_sym_DOLLARfor] = ACTIONS(4452), + [anon_sym_for] = ACTIONS(4452), + [anon_sym_POUND] = ACTIONS(4452), + [anon_sym_asm] = ACTIONS(4452), + [anon_sym_AT_LBRACK] = ACTIONS(4452), }, [1755] = { [sym_line_comment] = STATE(1755), [sym_block_comment] = STATE(1755), - [sym_block] = STATE(1860), - [ts_builtin_sym_end] = ACTIONS(4456), - [sym_identifier] = ACTIONS(4458), - [anon_sym_LF] = ACTIONS(4458), - [anon_sym_CR] = ACTIONS(4458), - [anon_sym_CR_LF] = ACTIONS(4458), + [sym_block] = STATE(1845), + [ts_builtin_sym_end] = ACTIONS(4454), + [sym_identifier] = ACTIONS(4456), + [anon_sym_LF] = ACTIONS(4456), + [anon_sym_CR] = ACTIONS(4456), + [anon_sym_CR_LF] = ACTIONS(4456), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym___global] = ACTIONS(4458), - [anon_sym_type] = ACTIONS(4458), - [anon_sym_fn] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4458), - [anon_sym_struct] = ACTIONS(4458), - [anon_sym_union] = ACTIONS(4458), - [anon_sym_pub] = ACTIONS(4458), - [anon_sym_mut] = ACTIONS(4458), - [anon_sym_enum] = ACTIONS(4458), - [anon_sym_interface] = ACTIONS(4458), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_go] = ACTIONS(4458), - [anon_sym_spawn] = ACTIONS(4458), - [anon_sym_json_DOTdecode] = ACTIONS(4458), - [anon_sym_LBRACK2] = ACTIONS(4458), - [anon_sym_TILDE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_DASH] = ACTIONS(4458), - [sym_none] = ACTIONS(4458), - [sym_true] = ACTIONS(4458), - [sym_false] = ACTIONS(4458), - [sym_nil] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_DOLLARif] = ACTIONS(4458), - [anon_sym_match] = ACTIONS(4458), - [anon_sym_select] = ACTIONS(4458), - [anon_sym_lock] = ACTIONS(4458), - [anon_sym_rlock] = ACTIONS(4458), - [anon_sym_unsafe] = ACTIONS(4458), - [anon_sym_sql] = ACTIONS(4458), - [sym_int_literal] = ACTIONS(4458), - [sym_float_literal] = ACTIONS(4458), - [sym_rune_literal] = ACTIONS(4458), - [anon_sym_SQUOTE] = ACTIONS(4458), - [anon_sym_DQUOTE] = ACTIONS(4458), - [anon_sym_c_SQUOTE] = ACTIONS(4458), - [anon_sym_c_DQUOTE] = ACTIONS(4458), - [anon_sym_r_SQUOTE] = ACTIONS(4458), - [anon_sym_r_DQUOTE] = ACTIONS(4458), - [sym_pseudo_compile_time_identifier] = ACTIONS(4458), - [anon_sym_shared] = ACTIONS(4458), - [anon_sym_map_LBRACK] = ACTIONS(4458), - [anon_sym_chan] = ACTIONS(4458), - [anon_sym_thread] = ACTIONS(4458), - [anon_sym_atomic] = ACTIONS(4458), - [anon_sym_assert] = ACTIONS(4458), - [anon_sym_defer] = ACTIONS(4458), - [anon_sym_goto] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_DOLLARfor] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_POUND] = ACTIONS(4458), - [anon_sym_asm] = ACTIONS(4458), - [anon_sym_AT_LBRACK] = ACTIONS(4458), + [anon_sym_DOT] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_LPAREN] = ACTIONS(4456), + [anon_sym___global] = ACTIONS(4456), + [anon_sym_type] = ACTIONS(4456), + [anon_sym_fn] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [anon_sym_pub] = ACTIONS(4456), + [anon_sym_mut] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_interface] = ACTIONS(4456), + [anon_sym_QMARK] = ACTIONS(4456), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_go] = ACTIONS(4456), + [anon_sym_spawn] = ACTIONS(4456), + [anon_sym_json_DOTdecode] = ACTIONS(4456), + [anon_sym_LBRACK2] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_CARET] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_LT_DASH] = ACTIONS(4456), + [sym_none] = ACTIONS(4456), + [sym_true] = ACTIONS(4456), + [sym_false] = ACTIONS(4456), + [sym_nil] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_DOLLARif] = ACTIONS(4456), + [anon_sym_match] = ACTIONS(4456), + [anon_sym_select] = ACTIONS(4456), + [anon_sym_lock] = ACTIONS(4456), + [anon_sym_rlock] = ACTIONS(4456), + [anon_sym_unsafe] = ACTIONS(4456), + [anon_sym_sql] = ACTIONS(4456), + [sym_int_literal] = ACTIONS(4456), + [sym_float_literal] = ACTIONS(4456), + [sym_rune_literal] = ACTIONS(4456), + [anon_sym_SQUOTE] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [anon_sym_c_SQUOTE] = ACTIONS(4456), + [anon_sym_c_DQUOTE] = ACTIONS(4456), + [anon_sym_r_SQUOTE] = ACTIONS(4456), + [anon_sym_r_DQUOTE] = ACTIONS(4456), + [sym_pseudo_compile_time_identifier] = ACTIONS(4456), + [anon_sym_shared] = ACTIONS(4456), + [anon_sym_map_LBRACK] = ACTIONS(4456), + [anon_sym_chan] = ACTIONS(4456), + [anon_sym_thread] = ACTIONS(4456), + [anon_sym_atomic] = ACTIONS(4456), + [anon_sym_assert] = ACTIONS(4456), + [anon_sym_defer] = ACTIONS(4456), + [anon_sym_goto] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_DOLLARfor] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_POUND] = ACTIONS(4456), + [anon_sym_asm] = ACTIONS(4456), + [anon_sym_AT_LBRACK] = ACTIONS(4456), }, [1756] = { [sym_line_comment] = STATE(1756), [sym_block_comment] = STATE(1756), - [sym_block] = STATE(1787), - [ts_builtin_sym_end] = ACTIONS(4460), - [sym_identifier] = ACTIONS(4462), - [anon_sym_LF] = ACTIONS(4462), - [anon_sym_CR] = ACTIONS(4462), - [anon_sym_CR_LF] = ACTIONS(4462), + [sym_block] = STATE(1860), + [ts_builtin_sym_end] = ACTIONS(4458), + [sym_identifier] = ACTIONS(4460), + [anon_sym_LF] = ACTIONS(4460), + [anon_sym_CR] = ACTIONS(4460), + [anon_sym_CR_LF] = ACTIONS(4460), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4462), - [anon_sym___global] = ACTIONS(4462), - [anon_sym_type] = ACTIONS(4462), - [anon_sym_fn] = ACTIONS(4462), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4462), - [anon_sym_struct] = ACTIONS(4462), - [anon_sym_union] = ACTIONS(4462), - [anon_sym_pub] = ACTIONS(4462), - [anon_sym_mut] = ACTIONS(4462), - [anon_sym_enum] = ACTIONS(4462), - [anon_sym_interface] = ACTIONS(4462), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_go] = ACTIONS(4462), - [anon_sym_spawn] = ACTIONS(4462), - [anon_sym_json_DOTdecode] = ACTIONS(4462), - [anon_sym_LBRACK2] = ACTIONS(4462), - [anon_sym_TILDE] = ACTIONS(4462), - [anon_sym_CARET] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_DASH] = ACTIONS(4462), - [sym_none] = ACTIONS(4462), - [sym_true] = ACTIONS(4462), - [sym_false] = ACTIONS(4462), - [sym_nil] = ACTIONS(4462), - [anon_sym_if] = ACTIONS(4462), - [anon_sym_DOLLARif] = ACTIONS(4462), - [anon_sym_match] = ACTIONS(4462), - [anon_sym_select] = ACTIONS(4462), - [anon_sym_lock] = ACTIONS(4462), - [anon_sym_rlock] = ACTIONS(4462), - [anon_sym_unsafe] = ACTIONS(4462), - [anon_sym_sql] = ACTIONS(4462), - [sym_int_literal] = ACTIONS(4462), - [sym_float_literal] = ACTIONS(4462), - [sym_rune_literal] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym_DQUOTE] = ACTIONS(4462), - [anon_sym_c_SQUOTE] = ACTIONS(4462), - [anon_sym_c_DQUOTE] = ACTIONS(4462), - [anon_sym_r_SQUOTE] = ACTIONS(4462), - [anon_sym_r_DQUOTE] = ACTIONS(4462), - [sym_pseudo_compile_time_identifier] = ACTIONS(4462), - [anon_sym_shared] = ACTIONS(4462), - [anon_sym_map_LBRACK] = ACTIONS(4462), - [anon_sym_chan] = ACTIONS(4462), - [anon_sym_thread] = ACTIONS(4462), - [anon_sym_atomic] = ACTIONS(4462), - [anon_sym_assert] = ACTIONS(4462), - [anon_sym_defer] = ACTIONS(4462), - [anon_sym_goto] = ACTIONS(4462), - [anon_sym_break] = ACTIONS(4462), - [anon_sym_continue] = ACTIONS(4462), - [anon_sym_return] = ACTIONS(4462), - [anon_sym_DOLLARfor] = ACTIONS(4462), - [anon_sym_for] = ACTIONS(4462), - [anon_sym_POUND] = ACTIONS(4462), - [anon_sym_asm] = ACTIONS(4462), - [anon_sym_AT_LBRACK] = ACTIONS(4462), + [anon_sym_DOT] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_LPAREN] = ACTIONS(4460), + [anon_sym___global] = ACTIONS(4460), + [anon_sym_type] = ACTIONS(4460), + [anon_sym_fn] = ACTIONS(4460), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [anon_sym_pub] = ACTIONS(4460), + [anon_sym_mut] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_interface] = ACTIONS(4460), + [anon_sym_QMARK] = ACTIONS(4460), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_go] = ACTIONS(4460), + [anon_sym_spawn] = ACTIONS(4460), + [anon_sym_json_DOTdecode] = ACTIONS(4460), + [anon_sym_LBRACK2] = ACTIONS(4460), + [anon_sym_TILDE] = ACTIONS(4460), + [anon_sym_CARET] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_LT_DASH] = ACTIONS(4460), + [sym_none] = ACTIONS(4460), + [sym_true] = ACTIONS(4460), + [sym_false] = ACTIONS(4460), + [sym_nil] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_DOLLARif] = ACTIONS(4460), + [anon_sym_match] = ACTIONS(4460), + [anon_sym_select] = ACTIONS(4460), + [anon_sym_lock] = ACTIONS(4460), + [anon_sym_rlock] = ACTIONS(4460), + [anon_sym_unsafe] = ACTIONS(4460), + [anon_sym_sql] = ACTIONS(4460), + [sym_int_literal] = ACTIONS(4460), + [sym_float_literal] = ACTIONS(4460), + [sym_rune_literal] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4460), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_c_SQUOTE] = ACTIONS(4460), + [anon_sym_c_DQUOTE] = ACTIONS(4460), + [anon_sym_r_SQUOTE] = ACTIONS(4460), + [anon_sym_r_DQUOTE] = ACTIONS(4460), + [sym_pseudo_compile_time_identifier] = ACTIONS(4460), + [anon_sym_shared] = ACTIONS(4460), + [anon_sym_map_LBRACK] = ACTIONS(4460), + [anon_sym_chan] = ACTIONS(4460), + [anon_sym_thread] = ACTIONS(4460), + [anon_sym_atomic] = ACTIONS(4460), + [anon_sym_assert] = ACTIONS(4460), + [anon_sym_defer] = ACTIONS(4460), + [anon_sym_goto] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_DOLLARfor] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_POUND] = ACTIONS(4460), + [anon_sym_asm] = ACTIONS(4460), + [anon_sym_AT_LBRACK] = ACTIONS(4460), }, [1757] = { [sym_line_comment] = STATE(1757), [sym_block_comment] = STATE(1757), - [sym_block] = STATE(1844), - [ts_builtin_sym_end] = ACTIONS(4464), - [sym_identifier] = ACTIONS(4466), - [anon_sym_LF] = ACTIONS(4466), - [anon_sym_CR] = ACTIONS(4466), - [anon_sym_CR_LF] = ACTIONS(4466), + [sym_block] = STATE(1887), + [ts_builtin_sym_end] = ACTIONS(4462), + [sym_identifier] = ACTIONS(4464), + [anon_sym_LF] = ACTIONS(4464), + [anon_sym_CR] = ACTIONS(4464), + [anon_sym_CR_LF] = ACTIONS(4464), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym___global] = ACTIONS(4466), - [anon_sym_type] = ACTIONS(4466), - [anon_sym_fn] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_struct] = ACTIONS(4466), - [anon_sym_union] = ACTIONS(4466), - [anon_sym_pub] = ACTIONS(4466), - [anon_sym_mut] = ACTIONS(4466), - [anon_sym_enum] = ACTIONS(4466), - [anon_sym_interface] = ACTIONS(4466), - [anon_sym_QMARK] = ACTIONS(4466), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_go] = ACTIONS(4466), - [anon_sym_spawn] = ACTIONS(4466), - [anon_sym_json_DOTdecode] = ACTIONS(4466), - [anon_sym_LBRACK2] = ACTIONS(4466), - [anon_sym_TILDE] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_AMP] = ACTIONS(4466), - [anon_sym_LT_DASH] = ACTIONS(4466), - [sym_none] = ACTIONS(4466), - [sym_true] = ACTIONS(4466), - [sym_false] = ACTIONS(4466), - [sym_nil] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_DOLLARif] = ACTIONS(4466), - [anon_sym_match] = ACTIONS(4466), - [anon_sym_select] = ACTIONS(4466), - [anon_sym_lock] = ACTIONS(4466), - [anon_sym_rlock] = ACTIONS(4466), - [anon_sym_unsafe] = ACTIONS(4466), - [anon_sym_sql] = ACTIONS(4466), - [sym_int_literal] = ACTIONS(4466), - [sym_float_literal] = ACTIONS(4466), - [sym_rune_literal] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(4466), - [anon_sym_c_SQUOTE] = ACTIONS(4466), - [anon_sym_c_DQUOTE] = ACTIONS(4466), - [anon_sym_r_SQUOTE] = ACTIONS(4466), - [anon_sym_r_DQUOTE] = ACTIONS(4466), - [sym_pseudo_compile_time_identifier] = ACTIONS(4466), - [anon_sym_shared] = ACTIONS(4466), - [anon_sym_map_LBRACK] = ACTIONS(4466), - [anon_sym_chan] = ACTIONS(4466), - [anon_sym_thread] = ACTIONS(4466), - [anon_sym_atomic] = ACTIONS(4466), - [anon_sym_assert] = ACTIONS(4466), - [anon_sym_defer] = ACTIONS(4466), - [anon_sym_goto] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_DOLLARfor] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_POUND] = ACTIONS(4466), - [anon_sym_asm] = ACTIONS(4466), - [anon_sym_AT_LBRACK] = ACTIONS(4466), + [anon_sym_DOT] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym___global] = ACTIONS(4464), + [anon_sym_type] = ACTIONS(4464), + [anon_sym_fn] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [anon_sym_pub] = ACTIONS(4464), + [anon_sym_mut] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_interface] = ACTIONS(4464), + [anon_sym_QMARK] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_go] = ACTIONS(4464), + [anon_sym_spawn] = ACTIONS(4464), + [anon_sym_json_DOTdecode] = ACTIONS(4464), + [anon_sym_LBRACK2] = ACTIONS(4464), + [anon_sym_TILDE] = ACTIONS(4464), + [anon_sym_CARET] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_LT_DASH] = ACTIONS(4464), + [sym_none] = ACTIONS(4464), + [sym_true] = ACTIONS(4464), + [sym_false] = ACTIONS(4464), + [sym_nil] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_DOLLARif] = ACTIONS(4464), + [anon_sym_match] = ACTIONS(4464), + [anon_sym_select] = ACTIONS(4464), + [anon_sym_lock] = ACTIONS(4464), + [anon_sym_rlock] = ACTIONS(4464), + [anon_sym_unsafe] = ACTIONS(4464), + [anon_sym_sql] = ACTIONS(4464), + [sym_int_literal] = ACTIONS(4464), + [sym_float_literal] = ACTIONS(4464), + [sym_rune_literal] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [anon_sym_c_SQUOTE] = ACTIONS(4464), + [anon_sym_c_DQUOTE] = ACTIONS(4464), + [anon_sym_r_SQUOTE] = ACTIONS(4464), + [anon_sym_r_DQUOTE] = ACTIONS(4464), + [sym_pseudo_compile_time_identifier] = ACTIONS(4464), + [anon_sym_shared] = ACTIONS(4464), + [anon_sym_map_LBRACK] = ACTIONS(4464), + [anon_sym_chan] = ACTIONS(4464), + [anon_sym_thread] = ACTIONS(4464), + [anon_sym_atomic] = ACTIONS(4464), + [anon_sym_assert] = ACTIONS(4464), + [anon_sym_defer] = ACTIONS(4464), + [anon_sym_goto] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_DOLLARfor] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_POUND] = ACTIONS(4464), + [anon_sym_asm] = ACTIONS(4464), + [anon_sym_AT_LBRACK] = ACTIONS(4464), }, [1758] = { [sym_line_comment] = STATE(1758), [sym_block_comment] = STATE(1758), - [sym_block] = STATE(1858), - [ts_builtin_sym_end] = ACTIONS(4468), - [sym_identifier] = ACTIONS(4470), - [anon_sym_LF] = ACTIONS(4470), - [anon_sym_CR] = ACTIONS(4470), - [anon_sym_CR_LF] = ACTIONS(4470), + [sym_block] = STATE(1882), + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4468), + [anon_sym_LF] = ACTIONS(4468), + [anon_sym_CR] = ACTIONS(4468), + [anon_sym_CR_LF] = ACTIONS(4468), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym___global] = ACTIONS(4470), - [anon_sym_type] = ACTIONS(4470), - [anon_sym_fn] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_struct] = ACTIONS(4470), - [anon_sym_union] = ACTIONS(4470), - [anon_sym_pub] = ACTIONS(4470), - [anon_sym_mut] = ACTIONS(4470), - [anon_sym_enum] = ACTIONS(4470), - [anon_sym_interface] = ACTIONS(4470), - [anon_sym_QMARK] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_go] = ACTIONS(4470), - [anon_sym_spawn] = ACTIONS(4470), - [anon_sym_json_DOTdecode] = ACTIONS(4470), - [anon_sym_LBRACK2] = ACTIONS(4470), - [anon_sym_TILDE] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_AMP] = ACTIONS(4470), - [anon_sym_LT_DASH] = ACTIONS(4470), - [sym_none] = ACTIONS(4470), - [sym_true] = ACTIONS(4470), - [sym_false] = ACTIONS(4470), - [sym_nil] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_DOLLARif] = ACTIONS(4470), - [anon_sym_match] = ACTIONS(4470), - [anon_sym_select] = ACTIONS(4470), - [anon_sym_lock] = ACTIONS(4470), - [anon_sym_rlock] = ACTIONS(4470), - [anon_sym_unsafe] = ACTIONS(4470), - [anon_sym_sql] = ACTIONS(4470), - [sym_int_literal] = ACTIONS(4470), - [sym_float_literal] = ACTIONS(4470), - [sym_rune_literal] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4470), - [anon_sym_DQUOTE] = ACTIONS(4470), - [anon_sym_c_SQUOTE] = ACTIONS(4470), - [anon_sym_c_DQUOTE] = ACTIONS(4470), - [anon_sym_r_SQUOTE] = ACTIONS(4470), - [anon_sym_r_DQUOTE] = ACTIONS(4470), - [sym_pseudo_compile_time_identifier] = ACTIONS(4470), - [anon_sym_shared] = ACTIONS(4470), - [anon_sym_map_LBRACK] = ACTIONS(4470), - [anon_sym_chan] = ACTIONS(4470), - [anon_sym_thread] = ACTIONS(4470), - [anon_sym_atomic] = ACTIONS(4470), - [anon_sym_assert] = ACTIONS(4470), - [anon_sym_defer] = ACTIONS(4470), - [anon_sym_goto] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_DOLLARfor] = ACTIONS(4470), - [anon_sym_for] = ACTIONS(4470), - [anon_sym_POUND] = ACTIONS(4470), - [anon_sym_asm] = ACTIONS(4470), - [anon_sym_AT_LBRACK] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4468), + [anon_sym___global] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_fn] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_pub] = ACTIONS(4468), + [anon_sym_mut] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_interface] = ACTIONS(4468), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_go] = ACTIONS(4468), + [anon_sym_spawn] = ACTIONS(4468), + [anon_sym_json_DOTdecode] = ACTIONS(4468), + [anon_sym_LBRACK2] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LT_DASH] = ACTIONS(4468), + [sym_none] = ACTIONS(4468), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [sym_nil] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_DOLLARif] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_select] = ACTIONS(4468), + [anon_sym_lock] = ACTIONS(4468), + [anon_sym_rlock] = ACTIONS(4468), + [anon_sym_unsafe] = ACTIONS(4468), + [anon_sym_sql] = ACTIONS(4468), + [sym_int_literal] = ACTIONS(4468), + [sym_float_literal] = ACTIONS(4468), + [sym_rune_literal] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [anon_sym_c_SQUOTE] = ACTIONS(4468), + [anon_sym_c_DQUOTE] = ACTIONS(4468), + [anon_sym_r_SQUOTE] = ACTIONS(4468), + [anon_sym_r_DQUOTE] = ACTIONS(4468), + [sym_pseudo_compile_time_identifier] = ACTIONS(4468), + [anon_sym_shared] = ACTIONS(4468), + [anon_sym_map_LBRACK] = ACTIONS(4468), + [anon_sym_chan] = ACTIONS(4468), + [anon_sym_thread] = ACTIONS(4468), + [anon_sym_atomic] = ACTIONS(4468), + [anon_sym_assert] = ACTIONS(4468), + [anon_sym_defer] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_DOLLARfor] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_POUND] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym_AT_LBRACK] = ACTIONS(4468), }, [1759] = { [sym_line_comment] = STATE(1759), [sym_block_comment] = STATE(1759), - [sym_block] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(4472), - [sym_identifier] = ACTIONS(4474), - [anon_sym_LF] = ACTIONS(4474), - [anon_sym_CR] = ACTIONS(4474), - [anon_sym_CR_LF] = ACTIONS(4474), + [sym_block] = STATE(1897), + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [anon_sym_LF] = ACTIONS(4472), + [anon_sym_CR] = ACTIONS(4472), + [anon_sym_CR_LF] = ACTIONS(4472), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4474), - [anon_sym_LPAREN] = ACTIONS(4474), - [anon_sym___global] = ACTIONS(4474), - [anon_sym_type] = ACTIONS(4474), - [anon_sym_fn] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_struct] = ACTIONS(4474), - [anon_sym_union] = ACTIONS(4474), - [anon_sym_pub] = ACTIONS(4474), - [anon_sym_mut] = ACTIONS(4474), - [anon_sym_enum] = ACTIONS(4474), - [anon_sym_interface] = ACTIONS(4474), - [anon_sym_QMARK] = ACTIONS(4474), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_go] = ACTIONS(4474), - [anon_sym_spawn] = ACTIONS(4474), - [anon_sym_json_DOTdecode] = ACTIONS(4474), - [anon_sym_LBRACK2] = ACTIONS(4474), - [anon_sym_TILDE] = ACTIONS(4474), - [anon_sym_CARET] = ACTIONS(4474), - [anon_sym_AMP] = ACTIONS(4474), - [anon_sym_LT_DASH] = ACTIONS(4474), - [sym_none] = ACTIONS(4474), - [sym_true] = ACTIONS(4474), - [sym_false] = ACTIONS(4474), - [sym_nil] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_DOLLARif] = ACTIONS(4474), - [anon_sym_match] = ACTIONS(4474), - [anon_sym_select] = ACTIONS(4474), - [anon_sym_lock] = ACTIONS(4474), - [anon_sym_rlock] = ACTIONS(4474), - [anon_sym_unsafe] = ACTIONS(4474), - [anon_sym_sql] = ACTIONS(4474), - [sym_int_literal] = ACTIONS(4474), - [sym_float_literal] = ACTIONS(4474), - [sym_rune_literal] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(4474), - [anon_sym_c_SQUOTE] = ACTIONS(4474), - [anon_sym_c_DQUOTE] = ACTIONS(4474), - [anon_sym_r_SQUOTE] = ACTIONS(4474), - [anon_sym_r_DQUOTE] = ACTIONS(4474), - [sym_pseudo_compile_time_identifier] = ACTIONS(4474), - [anon_sym_shared] = ACTIONS(4474), - [anon_sym_map_LBRACK] = ACTIONS(4474), - [anon_sym_chan] = ACTIONS(4474), - [anon_sym_thread] = ACTIONS(4474), - [anon_sym_atomic] = ACTIONS(4474), - [anon_sym_assert] = ACTIONS(4474), - [anon_sym_defer] = ACTIONS(4474), - [anon_sym_goto] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_DOLLARfor] = ACTIONS(4474), - [anon_sym_for] = ACTIONS(4474), - [anon_sym_POUND] = ACTIONS(4474), - [anon_sym_asm] = ACTIONS(4474), - [anon_sym_AT_LBRACK] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym___global] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_fn] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_pub] = ACTIONS(4472), + [anon_sym_mut] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_interface] = ACTIONS(4472), + [anon_sym_QMARK] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_go] = ACTIONS(4472), + [anon_sym_spawn] = ACTIONS(4472), + [anon_sym_json_DOTdecode] = ACTIONS(4472), + [anon_sym_LBRACK2] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_LT_DASH] = ACTIONS(4472), + [sym_none] = ACTIONS(4472), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [sym_nil] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_DOLLARif] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_select] = ACTIONS(4472), + [anon_sym_lock] = ACTIONS(4472), + [anon_sym_rlock] = ACTIONS(4472), + [anon_sym_unsafe] = ACTIONS(4472), + [anon_sym_sql] = ACTIONS(4472), + [sym_int_literal] = ACTIONS(4472), + [sym_float_literal] = ACTIONS(4472), + [sym_rune_literal] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_c_SQUOTE] = ACTIONS(4472), + [anon_sym_c_DQUOTE] = ACTIONS(4472), + [anon_sym_r_SQUOTE] = ACTIONS(4472), + [anon_sym_r_DQUOTE] = ACTIONS(4472), + [sym_pseudo_compile_time_identifier] = ACTIONS(4472), + [anon_sym_shared] = ACTIONS(4472), + [anon_sym_map_LBRACK] = ACTIONS(4472), + [anon_sym_chan] = ACTIONS(4472), + [anon_sym_thread] = ACTIONS(4472), + [anon_sym_atomic] = ACTIONS(4472), + [anon_sym_assert] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_DOLLARfor] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_POUND] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym_AT_LBRACK] = ACTIONS(4472), }, [1760] = { [sym_line_comment] = STATE(1760), [sym_block_comment] = STATE(1760), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), + [sym_block] = STATE(1808), + [ts_builtin_sym_end] = ACTIONS(4474), + [sym_identifier] = ACTIONS(4476), + [anon_sym_LF] = ACTIONS(4476), + [anon_sym_CR] = ACTIONS(4476), + [anon_sym_CR_LF] = ACTIONS(4476), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4476), + [anon_sym___global] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_fn] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_union] = ACTIONS(4476), + [anon_sym_pub] = ACTIONS(4476), + [anon_sym_mut] = ACTIONS(4476), + [anon_sym_enum] = ACTIONS(4476), + [anon_sym_interface] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_go] = ACTIONS(4476), + [anon_sym_spawn] = ACTIONS(4476), + [anon_sym_json_DOTdecode] = ACTIONS(4476), + [anon_sym_LBRACK2] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_LT_DASH] = ACTIONS(4476), + [sym_none] = ACTIONS(4476), + [sym_true] = ACTIONS(4476), + [sym_false] = ACTIONS(4476), + [sym_nil] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_DOLLARif] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_select] = ACTIONS(4476), + [anon_sym_lock] = ACTIONS(4476), + [anon_sym_rlock] = ACTIONS(4476), + [anon_sym_unsafe] = ACTIONS(4476), + [anon_sym_sql] = ACTIONS(4476), + [sym_int_literal] = ACTIONS(4476), + [sym_float_literal] = ACTIONS(4476), + [sym_rune_literal] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4476), + [anon_sym_c_SQUOTE] = ACTIONS(4476), + [anon_sym_c_DQUOTE] = ACTIONS(4476), + [anon_sym_r_SQUOTE] = ACTIONS(4476), + [anon_sym_r_DQUOTE] = ACTIONS(4476), + [sym_pseudo_compile_time_identifier] = ACTIONS(4476), + [anon_sym_shared] = ACTIONS(4476), + [anon_sym_map_LBRACK] = ACTIONS(4476), + [anon_sym_chan] = ACTIONS(4476), + [anon_sym_thread] = ACTIONS(4476), + [anon_sym_atomic] = ACTIONS(4476), + [anon_sym_assert] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_goto] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_DOLLARfor] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_POUND] = ACTIONS(4476), + [anon_sym_asm] = ACTIONS(4476), + [anon_sym_AT_LBRACK] = ACTIONS(4476), }, [1761] = { [sym_line_comment] = STATE(1761), [sym_block_comment] = STATE(1761), - [sym_label_reference] = STATE(1874), - [ts_builtin_sym_end] = ACTIONS(4476), - [sym_identifier] = ACTIONS(4478), + [sym_block] = STATE(1884), + [ts_builtin_sym_end] = ACTIONS(4478), + [sym_identifier] = ACTIONS(4480), [anon_sym_LF] = ACTIONS(4480), [anon_sym_CR] = ACTIONS(4480), [anon_sym_CR_LF] = ACTIONS(4480), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4480), [anon_sym_LPAREN] = ACTIONS(4480), [anon_sym___global] = ACTIONS(4480), @@ -209757,7 +209995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1762] = { [sym_line_comment] = STATE(1762), [sym_block_comment] = STATE(1762), - [sym_block] = STATE(1863), + [sym_block] = STATE(1867), [ts_builtin_sym_end] = ACTIONS(4482), [sym_identifier] = ACTIONS(4484), [anon_sym_LF] = ACTIONS(4484), @@ -209766,7 +210004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4484), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4484), [anon_sym_LPAREN] = ACTIONS(4484), [anon_sym___global] = ACTIONS(4484), @@ -209833,7 +210071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1763] = { [sym_line_comment] = STATE(1763), [sym_block_comment] = STATE(1763), - [sym_block] = STATE(1815), + [sym_block] = STATE(1869), [ts_builtin_sym_end] = ACTIONS(4486), [sym_identifier] = ACTIONS(4488), [anon_sym_LF] = ACTIONS(4488), @@ -209842,7 +210080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4488), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4488), [anon_sym_LPAREN] = ACTIONS(4488), [anon_sym___global] = ACTIONS(4488), @@ -209909,7 +210147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1764] = { [sym_line_comment] = STATE(1764), [sym_block_comment] = STATE(1764), - [sym_block] = STATE(1902), + [sym_block] = STATE(1873), [ts_builtin_sym_end] = ACTIONS(4490), [sym_identifier] = ACTIONS(4492), [anon_sym_LF] = ACTIONS(4492), @@ -209918,7 +210156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4492), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4492), [anon_sym_LPAREN] = ACTIONS(4492), [anon_sym___global] = ACTIONS(4492), @@ -209985,7 +210223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1765] = { [sym_line_comment] = STATE(1765), [sym_block_comment] = STATE(1765), - [sym_block] = STATE(1843), + [sym_block] = STATE(1847), [ts_builtin_sym_end] = ACTIONS(4494), [sym_identifier] = ACTIONS(4496), [anon_sym_LF] = ACTIONS(4496), @@ -209994,7 +210232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4496), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4496), [anon_sym_LPAREN] = ACTIONS(4496), [anon_sym___global] = ACTIONS(4496), @@ -210061,7 +210299,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1766] = { [sym_line_comment] = STATE(1766), [sym_block_comment] = STATE(1766), - [sym_block] = STATE(1866), + [ts_builtin_sym_end] = ACTIONS(3908), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym___global] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_interface] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), + [anon_sym_LBRACK2] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_LT_DASH] = ACTIONS(2001), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), + [anon_sym_AT_LBRACK] = ACTIONS(2001), + }, + [1767] = { + [sym_line_comment] = STATE(1767), + [sym_block_comment] = STATE(1767), + [sym_block] = STATE(1898), [ts_builtin_sym_end] = ACTIONS(4498), [sym_identifier] = ACTIONS(4500), [anon_sym_LF] = ACTIONS(4500), @@ -210070,7 +210384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4500), [anon_sym_LPAREN] = ACTIONS(4500), [anon_sym___global] = ACTIONS(4500), @@ -210134,10 +210448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4500), [anon_sym_AT_LBRACK] = ACTIONS(4500), }, - [1767] = { - [sym_line_comment] = STATE(1767), - [sym_block_comment] = STATE(1767), - [sym_block] = STATE(1869), + [1768] = { + [sym_line_comment] = STATE(1768), + [sym_block_comment] = STATE(1768), + [sym_block] = STATE(1817), [ts_builtin_sym_end] = ACTIONS(4502), [sym_identifier] = ACTIONS(4504), [anon_sym_LF] = ACTIONS(4504), @@ -210146,7 +210460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4504), [anon_sym_LPAREN] = ACTIONS(4504), [anon_sym___global] = ACTIONS(4504), @@ -210210,10 +210524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4504), [anon_sym_AT_LBRACK] = ACTIONS(4504), }, - [1768] = { - [sym_line_comment] = STATE(1768), - [sym_block_comment] = STATE(1768), - [sym_block] = STATE(1889), + [1769] = { + [sym_line_comment] = STATE(1769), + [sym_block_comment] = STATE(1769), + [sym_block] = STATE(1864), [ts_builtin_sym_end] = ACTIONS(4506), [sym_identifier] = ACTIONS(4508), [anon_sym_LF] = ACTIONS(4508), @@ -210222,7 +210536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4508), [anon_sym_LPAREN] = ACTIONS(4508), [anon_sym___global] = ACTIONS(4508), @@ -210286,10 +210600,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4508), [anon_sym_AT_LBRACK] = ACTIONS(4508), }, - [1769] = { - [sym_line_comment] = STATE(1769), - [sym_block_comment] = STATE(1769), - [sym_block] = STATE(1816), + [1770] = { + [sym_line_comment] = STATE(1770), + [sym_block_comment] = STATE(1770), + [sym_block] = STATE(1818), [ts_builtin_sym_end] = ACTIONS(4510), [sym_identifier] = ACTIONS(4512), [anon_sym_LF] = ACTIONS(4512), @@ -210298,7 +210612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4512), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4512), [anon_sym_LPAREN] = ACTIONS(4512), [anon_sym___global] = ACTIONS(4512), @@ -210362,162 +210676,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4512), [anon_sym_AT_LBRACK] = ACTIONS(4512), }, - [1770] = { - [sym_line_comment] = STATE(1770), - [sym_block_comment] = STATE(1770), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_LF] = ACTIONS(2451), - [anon_sym_CR] = ACTIONS(2451), - [anon_sym_CR_LF] = ACTIONS(2451), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym___global] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_interface] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_go] = ACTIONS(2451), - [anon_sym_spawn] = ACTIONS(2451), - [anon_sym_json_DOTdecode] = ACTIONS(2451), - [anon_sym_LBRACK2] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_LT_DASH] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_nil] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_DOLLARif] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_select] = ACTIONS(2451), - [anon_sym_lock] = ACTIONS(2451), - [anon_sym_rlock] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_sql] = ACTIONS(2451), - [sym_int_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_rune_literal] = ACTIONS(2451), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_c_SQUOTE] = ACTIONS(2451), - [anon_sym_c_DQUOTE] = ACTIONS(2451), - [anon_sym_r_SQUOTE] = ACTIONS(2451), - [anon_sym_r_DQUOTE] = ACTIONS(2451), - [sym_pseudo_compile_time_identifier] = ACTIONS(2451), - [anon_sym_shared] = ACTIONS(2451), - [anon_sym_map_LBRACK] = ACTIONS(2451), - [anon_sym_chan] = ACTIONS(2451), - [anon_sym_thread] = ACTIONS(2451), - [anon_sym_atomic] = ACTIONS(2451), - [anon_sym_assert] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_DOLLARfor] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_asm] = ACTIONS(2451), - [anon_sym_AT_LBRACK] = ACTIONS(2451), - }, [1771] = { [sym_line_comment] = STATE(1771), [sym_block_comment] = STATE(1771), - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LF] = ACTIONS(2465), - [anon_sym_CR] = ACTIONS(2465), - [anon_sym_CR_LF] = ACTIONS(2465), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym___global] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_pub] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_go] = ACTIONS(2465), - [anon_sym_spawn] = ACTIONS(2465), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_LT_DASH] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_nil] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_DOLLARif] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_lock] = ACTIONS(2465), - [anon_sym_rlock] = ACTIONS(2465), - [anon_sym_unsafe] = ACTIONS(2465), - [anon_sym_sql] = ACTIONS(2465), - [sym_int_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [anon_sym_c_SQUOTE] = ACTIONS(2465), - [anon_sym_c_DQUOTE] = ACTIONS(2465), - [anon_sym_r_SQUOTE] = ACTIONS(2465), - [anon_sym_r_DQUOTE] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2465), - [anon_sym_shared] = ACTIONS(2465), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2465), - [anon_sym_thread] = ACTIONS(2465), - [anon_sym_atomic] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_goto] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_DOLLARfor] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_asm] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(2465), - }, - [1772] = { - [sym_line_comment] = STATE(1772), - [sym_block_comment] = STATE(1772), - [sym_block] = STATE(1822), + [sym_block] = STATE(1843), [ts_builtin_sym_end] = ACTIONS(4514), [sym_identifier] = ACTIONS(4516), [anon_sym_LF] = ACTIONS(4516), @@ -210526,7 +210688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4516), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4516), [anon_sym_LPAREN] = ACTIONS(4516), [anon_sym___global] = ACTIONS(4516), @@ -210590,10 +210752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4516), [anon_sym_AT_LBRACK] = ACTIONS(4516), }, - [1773] = { - [sym_line_comment] = STATE(1773), - [sym_block_comment] = STATE(1773), - [sym_block] = STATE(1821), + [1772] = { + [sym_line_comment] = STATE(1772), + [sym_block_comment] = STATE(1772), + [sym_block] = STATE(1865), [ts_builtin_sym_end] = ACTIONS(4518), [sym_identifier] = ACTIONS(4520), [anon_sym_LF] = ACTIONS(4520), @@ -210602,7 +210764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), [anon_sym_const] = ACTIONS(4520), [anon_sym_LPAREN] = ACTIONS(4520), [anon_sym___global] = ACTIONS(4520), @@ -210666,660 +210828,736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4520), [anon_sym_AT_LBRACK] = ACTIONS(4520), }, + [1773] = { + [sym_line_comment] = STATE(1773), + [sym_block_comment] = STATE(1773), + [sym_label_reference] = STATE(1901), + [ts_builtin_sym_end] = ACTIONS(4522), + [sym_identifier] = ACTIONS(4524), + [anon_sym_LF] = ACTIONS(4526), + [anon_sym_CR] = ACTIONS(4526), + [anon_sym_CR_LF] = ACTIONS(4526), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4526), + [anon_sym_const] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4526), + [anon_sym___global] = ACTIONS(4526), + [anon_sym_type] = ACTIONS(4526), + [anon_sym_fn] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_union] = ACTIONS(4526), + [anon_sym_pub] = ACTIONS(4526), + [anon_sym_mut] = ACTIONS(4526), + [anon_sym_enum] = ACTIONS(4526), + [anon_sym_interface] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_go] = ACTIONS(4526), + [anon_sym_spawn] = ACTIONS(4526), + [anon_sym_json_DOTdecode] = ACTIONS(4526), + [anon_sym_LBRACK2] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_LT_DASH] = ACTIONS(4526), + [sym_none] = ACTIONS(4526), + [sym_true] = ACTIONS(4526), + [sym_false] = ACTIONS(4526), + [sym_nil] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_DOLLARif] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_select] = ACTIONS(4526), + [anon_sym_lock] = ACTIONS(4526), + [anon_sym_rlock] = ACTIONS(4526), + [anon_sym_unsafe] = ACTIONS(4526), + [anon_sym_sql] = ACTIONS(4526), + [sym_int_literal] = ACTIONS(4526), + [sym_float_literal] = ACTIONS(4526), + [sym_rune_literal] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_c_SQUOTE] = ACTIONS(4526), + [anon_sym_c_DQUOTE] = ACTIONS(4526), + [anon_sym_r_SQUOTE] = ACTIONS(4526), + [anon_sym_r_DQUOTE] = ACTIONS(4526), + [sym_pseudo_compile_time_identifier] = ACTIONS(4526), + [anon_sym_shared] = ACTIONS(4526), + [anon_sym_map_LBRACK] = ACTIONS(4526), + [anon_sym_chan] = ACTIONS(4526), + [anon_sym_thread] = ACTIONS(4526), + [anon_sym_atomic] = ACTIONS(4526), + [anon_sym_assert] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_goto] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_DOLLARfor] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_POUND] = ACTIONS(4526), + [anon_sym_asm] = ACTIONS(4526), + [anon_sym_AT_LBRACK] = ACTIONS(4526), + }, [1774] = { [sym_line_comment] = STATE(1774), [sym_block_comment] = STATE(1774), - [sym_block] = STATE(1824), - [ts_builtin_sym_end] = ACTIONS(4522), - [sym_identifier] = ACTIONS(4524), - [anon_sym_LF] = ACTIONS(4524), - [anon_sym_CR] = ACTIONS(4524), - [anon_sym_CR_LF] = ACTIONS(4524), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4524), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4524), - [anon_sym_LPAREN] = ACTIONS(4524), - [anon_sym___global] = ACTIONS(4524), - [anon_sym_type] = ACTIONS(4524), - [anon_sym_fn] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4524), - [anon_sym_DASH] = ACTIONS(4524), - [anon_sym_STAR] = ACTIONS(4524), - [anon_sym_struct] = ACTIONS(4524), - [anon_sym_union] = ACTIONS(4524), - [anon_sym_pub] = ACTIONS(4524), - [anon_sym_mut] = ACTIONS(4524), - [anon_sym_enum] = ACTIONS(4524), - [anon_sym_interface] = ACTIONS(4524), - [anon_sym_QMARK] = ACTIONS(4524), - [anon_sym_BANG] = ACTIONS(4524), - [anon_sym_go] = ACTIONS(4524), - [anon_sym_spawn] = ACTIONS(4524), - [anon_sym_json_DOTdecode] = ACTIONS(4524), - [anon_sym_LBRACK2] = ACTIONS(4524), - [anon_sym_TILDE] = ACTIONS(4524), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4524), - [anon_sym_LT_DASH] = ACTIONS(4524), - [sym_none] = ACTIONS(4524), - [sym_true] = ACTIONS(4524), - [sym_false] = ACTIONS(4524), - [sym_nil] = ACTIONS(4524), - [anon_sym_if] = ACTIONS(4524), - [anon_sym_DOLLARif] = ACTIONS(4524), - [anon_sym_match] = ACTIONS(4524), - [anon_sym_select] = ACTIONS(4524), - [anon_sym_lock] = ACTIONS(4524), - [anon_sym_rlock] = ACTIONS(4524), - [anon_sym_unsafe] = ACTIONS(4524), - [anon_sym_sql] = ACTIONS(4524), - [sym_int_literal] = ACTIONS(4524), - [sym_float_literal] = ACTIONS(4524), - [sym_rune_literal] = ACTIONS(4524), - [anon_sym_SQUOTE] = ACTIONS(4524), - [anon_sym_DQUOTE] = ACTIONS(4524), - [anon_sym_c_SQUOTE] = ACTIONS(4524), - [anon_sym_c_DQUOTE] = ACTIONS(4524), - [anon_sym_r_SQUOTE] = ACTIONS(4524), - [anon_sym_r_DQUOTE] = ACTIONS(4524), - [sym_pseudo_compile_time_identifier] = ACTIONS(4524), - [anon_sym_shared] = ACTIONS(4524), - [anon_sym_map_LBRACK] = ACTIONS(4524), - [anon_sym_chan] = ACTIONS(4524), - [anon_sym_thread] = ACTIONS(4524), - [anon_sym_atomic] = ACTIONS(4524), - [anon_sym_assert] = ACTIONS(4524), - [anon_sym_defer] = ACTIONS(4524), - [anon_sym_goto] = ACTIONS(4524), - [anon_sym_break] = ACTIONS(4524), - [anon_sym_continue] = ACTIONS(4524), - [anon_sym_return] = ACTIONS(4524), - [anon_sym_DOLLARfor] = ACTIONS(4524), - [anon_sym_for] = ACTIONS(4524), - [anon_sym_POUND] = ACTIONS(4524), - [anon_sym_asm] = ACTIONS(4524), - [anon_sym_AT_LBRACK] = ACTIONS(4524), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), }, [1775] = { [sym_line_comment] = STATE(1775), [sym_block_comment] = STATE(1775), - [sym_block] = STATE(1779), - [ts_builtin_sym_end] = ACTIONS(4526), - [sym_identifier] = ACTIONS(4528), - [anon_sym_LF] = ACTIONS(4528), - [anon_sym_CR] = ACTIONS(4528), - [anon_sym_CR_LF] = ACTIONS(4528), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_CR] = ACTIONS(2373), + [anon_sym_CR_LF] = ACTIONS(2373), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4528), - [anon_sym_LPAREN] = ACTIONS(4528), - [anon_sym___global] = ACTIONS(4528), - [anon_sym_type] = ACTIONS(4528), - [anon_sym_fn] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_struct] = ACTIONS(4528), - [anon_sym_union] = ACTIONS(4528), - [anon_sym_pub] = ACTIONS(4528), - [anon_sym_mut] = ACTIONS(4528), - [anon_sym_enum] = ACTIONS(4528), - [anon_sym_interface] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_go] = ACTIONS(4528), - [anon_sym_spawn] = ACTIONS(4528), - [anon_sym_json_DOTdecode] = ACTIONS(4528), - [anon_sym_LBRACK2] = ACTIONS(4528), - [anon_sym_TILDE] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_DASH] = ACTIONS(4528), - [sym_none] = ACTIONS(4528), - [sym_true] = ACTIONS(4528), - [sym_false] = ACTIONS(4528), - [sym_nil] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_DOLLARif] = ACTIONS(4528), - [anon_sym_match] = ACTIONS(4528), - [anon_sym_select] = ACTIONS(4528), - [anon_sym_lock] = ACTIONS(4528), - [anon_sym_rlock] = ACTIONS(4528), - [anon_sym_unsafe] = ACTIONS(4528), - [anon_sym_sql] = ACTIONS(4528), - [sym_int_literal] = ACTIONS(4528), - [sym_float_literal] = ACTIONS(4528), - [sym_rune_literal] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4528), - [anon_sym_DQUOTE] = ACTIONS(4528), - [anon_sym_c_SQUOTE] = ACTIONS(4528), - [anon_sym_c_DQUOTE] = ACTIONS(4528), - [anon_sym_r_SQUOTE] = ACTIONS(4528), - [anon_sym_r_DQUOTE] = ACTIONS(4528), - [sym_pseudo_compile_time_identifier] = ACTIONS(4528), - [anon_sym_shared] = ACTIONS(4528), - [anon_sym_map_LBRACK] = ACTIONS(4528), - [anon_sym_chan] = ACTIONS(4528), - [anon_sym_thread] = ACTIONS(4528), - [anon_sym_atomic] = ACTIONS(4528), - [anon_sym_assert] = ACTIONS(4528), - [anon_sym_defer] = ACTIONS(4528), - [anon_sym_goto] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_DOLLARfor] = ACTIONS(4528), - [anon_sym_for] = ACTIONS(4528), - [anon_sym_POUND] = ACTIONS(4528), - [anon_sym_asm] = ACTIONS(4528), - [anon_sym_AT_LBRACK] = ACTIONS(4528), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym___global] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_go] = ACTIONS(2373), + [anon_sym_spawn] = ACTIONS(2373), + [anon_sym_json_DOTdecode] = ACTIONS(2373), + [anon_sym_LBRACK2] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [sym_none] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_nil] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_DOLLARif] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2373), + [anon_sym_lock] = ACTIONS(2373), + [anon_sym_rlock] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_sql] = ACTIONS(2373), + [sym_int_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_rune_literal] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_c_SQUOTE] = ACTIONS(2373), + [anon_sym_c_DQUOTE] = ACTIONS(2373), + [anon_sym_r_SQUOTE] = ACTIONS(2373), + [anon_sym_r_DQUOTE] = ACTIONS(2373), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2373), + [anon_sym_map_LBRACK] = ACTIONS(2373), + [anon_sym_chan] = ACTIONS(2373), + [anon_sym_thread] = ACTIONS(2373), + [anon_sym_atomic] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_defer] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_DOLLARfor] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym_AT_LBRACK] = ACTIONS(2373), }, [1776] = { [sym_line_comment] = STATE(1776), [sym_block_comment] = STATE(1776), - [sym_block] = STATE(1828), - [ts_builtin_sym_end] = ACTIONS(4530), - [sym_identifier] = ACTIONS(4532), - [anon_sym_LF] = ACTIONS(4532), - [anon_sym_CR] = ACTIONS(4532), - [anon_sym_CR_LF] = ACTIONS(4532), + [sym_block] = STATE(1823), + [ts_builtin_sym_end] = ACTIONS(4528), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LF] = ACTIONS(4530), + [anon_sym_CR] = ACTIONS(4530), + [anon_sym_CR_LF] = ACTIONS(4530), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym___global] = ACTIONS(4532), - [anon_sym_type] = ACTIONS(4532), - [anon_sym_fn] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_struct] = ACTIONS(4532), - [anon_sym_union] = ACTIONS(4532), - [anon_sym_pub] = ACTIONS(4532), - [anon_sym_mut] = ACTIONS(4532), - [anon_sym_enum] = ACTIONS(4532), - [anon_sym_interface] = ACTIONS(4532), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_go] = ACTIONS(4532), - [anon_sym_spawn] = ACTIONS(4532), - [anon_sym_json_DOTdecode] = ACTIONS(4532), - [anon_sym_LBRACK2] = ACTIONS(4532), - [anon_sym_TILDE] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_DASH] = ACTIONS(4532), - [sym_none] = ACTIONS(4532), - [sym_true] = ACTIONS(4532), - [sym_false] = ACTIONS(4532), - [sym_nil] = ACTIONS(4532), - [anon_sym_if] = ACTIONS(4532), - [anon_sym_DOLLARif] = ACTIONS(4532), - [anon_sym_match] = ACTIONS(4532), - [anon_sym_select] = ACTIONS(4532), - [anon_sym_lock] = ACTIONS(4532), - [anon_sym_rlock] = ACTIONS(4532), - [anon_sym_unsafe] = ACTIONS(4532), - [anon_sym_sql] = ACTIONS(4532), - [sym_int_literal] = ACTIONS(4532), - [sym_float_literal] = ACTIONS(4532), - [sym_rune_literal] = ACTIONS(4532), - [anon_sym_SQUOTE] = ACTIONS(4532), - [anon_sym_DQUOTE] = ACTIONS(4532), - [anon_sym_c_SQUOTE] = ACTIONS(4532), - [anon_sym_c_DQUOTE] = ACTIONS(4532), - [anon_sym_r_SQUOTE] = ACTIONS(4532), - [anon_sym_r_DQUOTE] = ACTIONS(4532), - [sym_pseudo_compile_time_identifier] = ACTIONS(4532), - [anon_sym_shared] = ACTIONS(4532), - [anon_sym_map_LBRACK] = ACTIONS(4532), - [anon_sym_chan] = ACTIONS(4532), - [anon_sym_thread] = ACTIONS(4532), - [anon_sym_atomic] = ACTIONS(4532), - [anon_sym_assert] = ACTIONS(4532), - [anon_sym_defer] = ACTIONS(4532), - [anon_sym_goto] = ACTIONS(4532), - [anon_sym_break] = ACTIONS(4532), - [anon_sym_continue] = ACTIONS(4532), - [anon_sym_return] = ACTIONS(4532), - [anon_sym_DOLLARfor] = ACTIONS(4532), - [anon_sym_for] = ACTIONS(4532), - [anon_sym_POUND] = ACTIONS(4532), - [anon_sym_asm] = ACTIONS(4532), - [anon_sym_AT_LBRACK] = ACTIONS(4532), + [anon_sym_DOT] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4530), + [anon_sym_LPAREN] = ACTIONS(4530), + [anon_sym___global] = ACTIONS(4530), + [anon_sym_type] = ACTIONS(4530), + [anon_sym_fn] = ACTIONS(4530), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4530), + [anon_sym_struct] = ACTIONS(4530), + [anon_sym_union] = ACTIONS(4530), + [anon_sym_pub] = ACTIONS(4530), + [anon_sym_mut] = ACTIONS(4530), + [anon_sym_enum] = ACTIONS(4530), + [anon_sym_interface] = ACTIONS(4530), + [anon_sym_QMARK] = ACTIONS(4530), + [anon_sym_BANG] = ACTIONS(4530), + [anon_sym_go] = ACTIONS(4530), + [anon_sym_spawn] = ACTIONS(4530), + [anon_sym_json_DOTdecode] = ACTIONS(4530), + [anon_sym_LBRACK2] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [anon_sym_CARET] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4530), + [anon_sym_LT_DASH] = ACTIONS(4530), + [sym_none] = ACTIONS(4530), + [sym_true] = ACTIONS(4530), + [sym_false] = ACTIONS(4530), + [sym_nil] = ACTIONS(4530), + [anon_sym_if] = ACTIONS(4530), + [anon_sym_DOLLARif] = ACTIONS(4530), + [anon_sym_match] = ACTIONS(4530), + [anon_sym_select] = ACTIONS(4530), + [anon_sym_lock] = ACTIONS(4530), + [anon_sym_rlock] = ACTIONS(4530), + [anon_sym_unsafe] = ACTIONS(4530), + [anon_sym_sql] = ACTIONS(4530), + [sym_int_literal] = ACTIONS(4530), + [sym_float_literal] = ACTIONS(4530), + [sym_rune_literal] = ACTIONS(4530), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE] = ACTIONS(4530), + [anon_sym_c_SQUOTE] = ACTIONS(4530), + [anon_sym_c_DQUOTE] = ACTIONS(4530), + [anon_sym_r_SQUOTE] = ACTIONS(4530), + [anon_sym_r_DQUOTE] = ACTIONS(4530), + [sym_pseudo_compile_time_identifier] = ACTIONS(4530), + [anon_sym_shared] = ACTIONS(4530), + [anon_sym_map_LBRACK] = ACTIONS(4530), + [anon_sym_chan] = ACTIONS(4530), + [anon_sym_thread] = ACTIONS(4530), + [anon_sym_atomic] = ACTIONS(4530), + [anon_sym_assert] = ACTIONS(4530), + [anon_sym_defer] = ACTIONS(4530), + [anon_sym_goto] = ACTIONS(4530), + [anon_sym_break] = ACTIONS(4530), + [anon_sym_continue] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4530), + [anon_sym_DOLLARfor] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4530), + [anon_sym_POUND] = ACTIONS(4530), + [anon_sym_asm] = ACTIONS(4530), + [anon_sym_AT_LBRACK] = ACTIONS(4530), }, [1777] = { [sym_line_comment] = STATE(1777), [sym_block_comment] = STATE(1777), - [sym_block] = STATE(1829), - [ts_builtin_sym_end] = ACTIONS(4534), - [sym_identifier] = ACTIONS(4536), - [anon_sym_LF] = ACTIONS(4536), - [anon_sym_CR] = ACTIONS(4536), - [anon_sym_CR_LF] = ACTIONS(4536), + [sym_label_reference] = STATE(1900), + [ts_builtin_sym_end] = ACTIONS(4532), + [sym_identifier] = ACTIONS(4524), + [anon_sym_LF] = ACTIONS(4534), + [anon_sym_CR] = ACTIONS(4534), + [anon_sym_CR_LF] = ACTIONS(4534), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_LBRACE] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym___global] = ACTIONS(4536), - [anon_sym_type] = ACTIONS(4536), - [anon_sym_fn] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_struct] = ACTIONS(4536), - [anon_sym_union] = ACTIONS(4536), - [anon_sym_pub] = ACTIONS(4536), - [anon_sym_mut] = ACTIONS(4536), - [anon_sym_enum] = ACTIONS(4536), - [anon_sym_interface] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_go] = ACTIONS(4536), - [anon_sym_spawn] = ACTIONS(4536), - [anon_sym_json_DOTdecode] = ACTIONS(4536), - [anon_sym_LBRACK2] = ACTIONS(4536), - [anon_sym_TILDE] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4536), - [anon_sym_LT_DASH] = ACTIONS(4536), - [sym_none] = ACTIONS(4536), - [sym_true] = ACTIONS(4536), - [sym_false] = ACTIONS(4536), - [sym_nil] = ACTIONS(4536), - [anon_sym_if] = ACTIONS(4536), - [anon_sym_DOLLARif] = ACTIONS(4536), - [anon_sym_match] = ACTIONS(4536), - [anon_sym_select] = ACTIONS(4536), - [anon_sym_lock] = ACTIONS(4536), - [anon_sym_rlock] = ACTIONS(4536), - [anon_sym_unsafe] = ACTIONS(4536), - [anon_sym_sql] = ACTIONS(4536), - [sym_int_literal] = ACTIONS(4536), - [sym_float_literal] = ACTIONS(4536), - [sym_rune_literal] = ACTIONS(4536), - [anon_sym_SQUOTE] = ACTIONS(4536), - [anon_sym_DQUOTE] = ACTIONS(4536), - [anon_sym_c_SQUOTE] = ACTIONS(4536), - [anon_sym_c_DQUOTE] = ACTIONS(4536), - [anon_sym_r_SQUOTE] = ACTIONS(4536), - [anon_sym_r_DQUOTE] = ACTIONS(4536), - [sym_pseudo_compile_time_identifier] = ACTIONS(4536), - [anon_sym_shared] = ACTIONS(4536), - [anon_sym_map_LBRACK] = ACTIONS(4536), - [anon_sym_chan] = ACTIONS(4536), - [anon_sym_thread] = ACTIONS(4536), - [anon_sym_atomic] = ACTIONS(4536), - [anon_sym_assert] = ACTIONS(4536), - [anon_sym_defer] = ACTIONS(4536), - [anon_sym_goto] = ACTIONS(4536), - [anon_sym_break] = ACTIONS(4536), - [anon_sym_continue] = ACTIONS(4536), - [anon_sym_return] = ACTIONS(4536), - [anon_sym_DOLLARfor] = ACTIONS(4536), - [anon_sym_for] = ACTIONS(4536), - [anon_sym_POUND] = ACTIONS(4536), - [anon_sym_asm] = ACTIONS(4536), - [anon_sym_AT_LBRACK] = ACTIONS(4536), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_const] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym___global] = ACTIONS(4534), + [anon_sym_type] = ACTIONS(4534), + [anon_sym_fn] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_union] = ACTIONS(4534), + [anon_sym_pub] = ACTIONS(4534), + [anon_sym_mut] = ACTIONS(4534), + [anon_sym_enum] = ACTIONS(4534), + [anon_sym_interface] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_go] = ACTIONS(4534), + [anon_sym_spawn] = ACTIONS(4534), + [anon_sym_json_DOTdecode] = ACTIONS(4534), + [anon_sym_LBRACK2] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_LT_DASH] = ACTIONS(4534), + [sym_none] = ACTIONS(4534), + [sym_true] = ACTIONS(4534), + [sym_false] = ACTIONS(4534), + [sym_nil] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_DOLLARif] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_select] = ACTIONS(4534), + [anon_sym_lock] = ACTIONS(4534), + [anon_sym_rlock] = ACTIONS(4534), + [anon_sym_unsafe] = ACTIONS(4534), + [anon_sym_sql] = ACTIONS(4534), + [sym_int_literal] = ACTIONS(4534), + [sym_float_literal] = ACTIONS(4534), + [sym_rune_literal] = ACTIONS(4534), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_c_SQUOTE] = ACTIONS(4534), + [anon_sym_c_DQUOTE] = ACTIONS(4534), + [anon_sym_r_SQUOTE] = ACTIONS(4534), + [anon_sym_r_DQUOTE] = ACTIONS(4534), + [sym_pseudo_compile_time_identifier] = ACTIONS(4534), + [anon_sym_shared] = ACTIONS(4534), + [anon_sym_map_LBRACK] = ACTIONS(4534), + [anon_sym_chan] = ACTIONS(4534), + [anon_sym_thread] = ACTIONS(4534), + [anon_sym_atomic] = ACTIONS(4534), + [anon_sym_assert] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_goto] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_DOLLARfor] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_asm] = ACTIONS(4534), + [anon_sym_AT_LBRACK] = ACTIONS(4534), }, [1778] = { [sym_line_comment] = STATE(1778), [sym_block_comment] = STATE(1778), - [sym_label_reference] = STATE(1878), - [ts_builtin_sym_end] = ACTIONS(4538), - [sym_identifier] = ACTIONS(4478), - [anon_sym_LF] = ACTIONS(4540), - [anon_sym_CR] = ACTIONS(4540), - [anon_sym_CR_LF] = ACTIONS(4540), + [sym_block] = STATE(1821), + [ts_builtin_sym_end] = ACTIONS(4536), + [sym_identifier] = ACTIONS(4538), + [anon_sym_LF] = ACTIONS(4538), + [anon_sym_CR] = ACTIONS(4538), + [anon_sym_CR_LF] = ACTIONS(4538), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_const] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym___global] = ACTIONS(4540), - [anon_sym_type] = ACTIONS(4540), - [anon_sym_fn] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_struct] = ACTIONS(4540), - [anon_sym_union] = ACTIONS(4540), - [anon_sym_pub] = ACTIONS(4540), - [anon_sym_mut] = ACTIONS(4540), - [anon_sym_enum] = ACTIONS(4540), - [anon_sym_interface] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_go] = ACTIONS(4540), - [anon_sym_spawn] = ACTIONS(4540), - [anon_sym_json_DOTdecode] = ACTIONS(4540), - [anon_sym_LBRACK2] = ACTIONS(4540), - [anon_sym_TILDE] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_DASH] = ACTIONS(4540), - [sym_none] = ACTIONS(4540), - [sym_true] = ACTIONS(4540), - [sym_false] = ACTIONS(4540), - [sym_nil] = ACTIONS(4540), - [anon_sym_if] = ACTIONS(4540), - [anon_sym_DOLLARif] = ACTIONS(4540), - [anon_sym_match] = ACTIONS(4540), - [anon_sym_select] = ACTIONS(4540), - [anon_sym_lock] = ACTIONS(4540), - [anon_sym_rlock] = ACTIONS(4540), - [anon_sym_unsafe] = ACTIONS(4540), - [anon_sym_sql] = ACTIONS(4540), - [sym_int_literal] = ACTIONS(4540), - [sym_float_literal] = ACTIONS(4540), - [sym_rune_literal] = ACTIONS(4540), - [anon_sym_SQUOTE] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [anon_sym_c_SQUOTE] = ACTIONS(4540), - [anon_sym_c_DQUOTE] = ACTIONS(4540), - [anon_sym_r_SQUOTE] = ACTIONS(4540), - [anon_sym_r_DQUOTE] = ACTIONS(4540), - [sym_pseudo_compile_time_identifier] = ACTIONS(4540), - [anon_sym_shared] = ACTIONS(4540), - [anon_sym_map_LBRACK] = ACTIONS(4540), - [anon_sym_chan] = ACTIONS(4540), - [anon_sym_thread] = ACTIONS(4540), - [anon_sym_atomic] = ACTIONS(4540), - [anon_sym_assert] = ACTIONS(4540), - [anon_sym_defer] = ACTIONS(4540), - [anon_sym_goto] = ACTIONS(4540), - [anon_sym_break] = ACTIONS(4540), - [anon_sym_continue] = ACTIONS(4540), - [anon_sym_return] = ACTIONS(4540), - [anon_sym_DOLLARfor] = ACTIONS(4540), - [anon_sym_for] = ACTIONS(4540), - [anon_sym_POUND] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(4540), - [anon_sym_AT_LBRACK] = ACTIONS(4540), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym___global] = ACTIONS(4538), + [anon_sym_type] = ACTIONS(4538), + [anon_sym_fn] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_union] = ACTIONS(4538), + [anon_sym_pub] = ACTIONS(4538), + [anon_sym_mut] = ACTIONS(4538), + [anon_sym_enum] = ACTIONS(4538), + [anon_sym_interface] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(4538), + [anon_sym_BANG] = ACTIONS(4538), + [anon_sym_go] = ACTIONS(4538), + [anon_sym_spawn] = ACTIONS(4538), + [anon_sym_json_DOTdecode] = ACTIONS(4538), + [anon_sym_LBRACK2] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_LT_DASH] = ACTIONS(4538), + [sym_none] = ACTIONS(4538), + [sym_true] = ACTIONS(4538), + [sym_false] = ACTIONS(4538), + [sym_nil] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_DOLLARif] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_select] = ACTIONS(4538), + [anon_sym_lock] = ACTIONS(4538), + [anon_sym_rlock] = ACTIONS(4538), + [anon_sym_unsafe] = ACTIONS(4538), + [anon_sym_sql] = ACTIONS(4538), + [sym_int_literal] = ACTIONS(4538), + [sym_float_literal] = ACTIONS(4538), + [sym_rune_literal] = ACTIONS(4538), + [anon_sym_SQUOTE] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4538), + [anon_sym_c_SQUOTE] = ACTIONS(4538), + [anon_sym_c_DQUOTE] = ACTIONS(4538), + [anon_sym_r_SQUOTE] = ACTIONS(4538), + [anon_sym_r_DQUOTE] = ACTIONS(4538), + [sym_pseudo_compile_time_identifier] = ACTIONS(4538), + [anon_sym_shared] = ACTIONS(4538), + [anon_sym_map_LBRACK] = ACTIONS(4538), + [anon_sym_chan] = ACTIONS(4538), + [anon_sym_thread] = ACTIONS(4538), + [anon_sym_atomic] = ACTIONS(4538), + [anon_sym_assert] = ACTIONS(4538), + [anon_sym_defer] = ACTIONS(4538), + [anon_sym_goto] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_DOLLARfor] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_POUND] = ACTIONS(4538), + [anon_sym_asm] = ACTIONS(4538), + [anon_sym_AT_LBRACK] = ACTIONS(4538), }, [1779] = { [sym_line_comment] = STATE(1779), [sym_block_comment] = STATE(1779), - [ts_builtin_sym_end] = ACTIONS(4542), - [sym_identifier] = ACTIONS(4544), - [anon_sym_LF] = ACTIONS(4544), - [anon_sym_CR] = ACTIONS(4544), - [anon_sym_CR_LF] = ACTIONS(4544), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4544), - [anon_sym_LBRACE] = ACTIONS(4544), - [anon_sym_const] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym___global] = ACTIONS(4544), - [anon_sym_type] = ACTIONS(4544), - [anon_sym_fn] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4544), - [anon_sym_DASH] = ACTIONS(4544), - [anon_sym_STAR] = ACTIONS(4544), - [anon_sym_struct] = ACTIONS(4544), - [anon_sym_union] = ACTIONS(4544), - [anon_sym_pub] = ACTIONS(4544), - [anon_sym_mut] = ACTIONS(4544), - [anon_sym_enum] = ACTIONS(4544), - [anon_sym_interface] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4544), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_go] = ACTIONS(4544), - [anon_sym_spawn] = ACTIONS(4544), - [anon_sym_json_DOTdecode] = ACTIONS(4544), - [anon_sym_LBRACK2] = ACTIONS(4544), - [anon_sym_TILDE] = ACTIONS(4544), - [anon_sym_CARET] = ACTIONS(4544), - [anon_sym_AMP] = ACTIONS(4544), - [anon_sym_LT_DASH] = ACTIONS(4544), - [sym_none] = ACTIONS(4544), - [sym_true] = ACTIONS(4544), - [sym_false] = ACTIONS(4544), - [sym_nil] = ACTIONS(4544), - [anon_sym_if] = ACTIONS(4544), - [anon_sym_DOLLARif] = ACTIONS(4544), - [anon_sym_match] = ACTIONS(4544), - [anon_sym_select] = ACTIONS(4544), - [anon_sym_lock] = ACTIONS(4544), - [anon_sym_rlock] = ACTIONS(4544), - [anon_sym_unsafe] = ACTIONS(4544), - [anon_sym_sql] = ACTIONS(4544), - [sym_int_literal] = ACTIONS(4544), - [sym_float_literal] = ACTIONS(4544), - [sym_rune_literal] = ACTIONS(4544), - [anon_sym_SQUOTE] = ACTIONS(4544), - [anon_sym_DQUOTE] = ACTIONS(4544), - [anon_sym_c_SQUOTE] = ACTIONS(4544), - [anon_sym_c_DQUOTE] = ACTIONS(4544), - [anon_sym_r_SQUOTE] = ACTIONS(4544), - [anon_sym_r_DQUOTE] = ACTIONS(4544), - [sym_pseudo_compile_time_identifier] = ACTIONS(4544), - [anon_sym_shared] = ACTIONS(4544), - [anon_sym_map_LBRACK] = ACTIONS(4544), - [anon_sym_chan] = ACTIONS(4544), - [anon_sym_thread] = ACTIONS(4544), - [anon_sym_atomic] = ACTIONS(4544), - [anon_sym_assert] = ACTIONS(4544), - [anon_sym_defer] = ACTIONS(4544), - [anon_sym_goto] = ACTIONS(4544), - [anon_sym_break] = ACTIONS(4544), - [anon_sym_continue] = ACTIONS(4544), - [anon_sym_return] = ACTIONS(4544), - [anon_sym_DOLLARfor] = ACTIONS(4544), - [anon_sym_for] = ACTIONS(4544), - [anon_sym_POUND] = ACTIONS(4544), - [anon_sym_asm] = ACTIONS(4544), - [anon_sym_AT_LBRACK] = ACTIONS(4544), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym___global] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_pub] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3266), + [anon_sym_r_SQUOTE] = ACTIONS(3266), + [anon_sym_r_DQUOTE] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym_AT_LBRACK] = ACTIONS(3266), }, [1780] = { [sym_line_comment] = STATE(1780), [sym_block_comment] = STATE(1780), - [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(4540), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LF] = ACTIONS(4542), + [anon_sym_CR] = ACTIONS(4542), + [anon_sym_CR_LF] = ACTIONS(4542), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4411), - [anon_sym_c_SQUOTE] = ACTIONS(4411), - [anon_sym_c_DQUOTE] = ACTIONS(4411), - [anon_sym_r_SQUOTE] = ACTIONS(4411), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_LBRACE] = ACTIONS(4542), + [anon_sym_const] = ACTIONS(4542), + [anon_sym_LPAREN] = ACTIONS(4542), + [anon_sym___global] = ACTIONS(4542), + [anon_sym_type] = ACTIONS(4542), + [anon_sym_fn] = ACTIONS(4542), + [anon_sym_PLUS] = ACTIONS(4542), + [anon_sym_DASH] = ACTIONS(4542), + [anon_sym_STAR] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_union] = ACTIONS(4542), + [anon_sym_pub] = ACTIONS(4542), + [anon_sym_mut] = ACTIONS(4542), + [anon_sym_enum] = ACTIONS(4542), + [anon_sym_interface] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4542), + [anon_sym_BANG] = ACTIONS(4542), + [anon_sym_go] = ACTIONS(4542), + [anon_sym_spawn] = ACTIONS(4542), + [anon_sym_json_DOTdecode] = ACTIONS(4542), + [anon_sym_LBRACK2] = ACTIONS(4542), + [anon_sym_TILDE] = ACTIONS(4542), + [anon_sym_CARET] = ACTIONS(4542), + [anon_sym_AMP] = ACTIONS(4542), + [anon_sym_LT_DASH] = ACTIONS(4542), + [sym_none] = ACTIONS(4542), + [sym_true] = ACTIONS(4542), + [sym_false] = ACTIONS(4542), + [sym_nil] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(4542), + [anon_sym_DOLLARif] = ACTIONS(4542), + [anon_sym_match] = ACTIONS(4542), + [anon_sym_select] = ACTIONS(4542), + [anon_sym_lock] = ACTIONS(4542), + [anon_sym_rlock] = ACTIONS(4542), + [anon_sym_unsafe] = ACTIONS(4542), + [anon_sym_sql] = ACTIONS(4542), + [sym_int_literal] = ACTIONS(4542), + [sym_float_literal] = ACTIONS(4542), + [sym_rune_literal] = ACTIONS(4542), + [anon_sym_SQUOTE] = ACTIONS(4542), + [anon_sym_DQUOTE] = ACTIONS(4542), + [anon_sym_c_SQUOTE] = ACTIONS(4542), + [anon_sym_c_DQUOTE] = ACTIONS(4542), + [anon_sym_r_SQUOTE] = ACTIONS(4542), + [anon_sym_r_DQUOTE] = ACTIONS(4542), + [sym_pseudo_compile_time_identifier] = ACTIONS(4542), + [anon_sym_shared] = ACTIONS(4542), + [anon_sym_map_LBRACK] = ACTIONS(4542), + [anon_sym_chan] = ACTIONS(4542), + [anon_sym_thread] = ACTIONS(4542), + [anon_sym_atomic] = ACTIONS(4542), + [anon_sym_assert] = ACTIONS(4542), + [anon_sym_defer] = ACTIONS(4542), + [anon_sym_goto] = ACTIONS(4542), + [anon_sym_break] = ACTIONS(4542), + [anon_sym_continue] = ACTIONS(4542), + [anon_sym_return] = ACTIONS(4542), + [anon_sym_DOLLARfor] = ACTIONS(4542), + [anon_sym_for] = ACTIONS(4542), + [anon_sym_POUND] = ACTIONS(4542), + [anon_sym_asm] = ACTIONS(4542), + [anon_sym_AT_LBRACK] = ACTIONS(4542), }, [1781] = { [sym_line_comment] = STATE(1781), [sym_block_comment] = STATE(1781), - [ts_builtin_sym_end] = ACTIONS(4546), - [sym_identifier] = ACTIONS(4548), - [anon_sym_LF] = ACTIONS(4548), - [anon_sym_CR] = ACTIONS(4548), - [anon_sym_CR_LF] = ACTIONS(4548), + [ts_builtin_sym_end] = ACTIONS(4544), + [sym_identifier] = ACTIONS(4546), + [anon_sym_LF] = ACTIONS(4546), + [anon_sym_CR] = ACTIONS(4546), + [anon_sym_CR_LF] = ACTIONS(4546), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_LBRACE] = ACTIONS(4548), - [anon_sym_const] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym___global] = ACTIONS(4548), - [anon_sym_type] = ACTIONS(4548), - [anon_sym_fn] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_struct] = ACTIONS(4548), - [anon_sym_union] = ACTIONS(4548), - [anon_sym_pub] = ACTIONS(4548), - [anon_sym_mut] = ACTIONS(4548), - [anon_sym_enum] = ACTIONS(4548), - [anon_sym_interface] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_go] = ACTIONS(4548), - [anon_sym_spawn] = ACTIONS(4548), - [anon_sym_json_DOTdecode] = ACTIONS(4548), - [anon_sym_LBRACK2] = ACTIONS(4548), - [anon_sym_TILDE] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_DASH] = ACTIONS(4548), - [sym_none] = ACTIONS(4548), - [sym_true] = ACTIONS(4548), - [sym_false] = ACTIONS(4548), - [sym_nil] = ACTIONS(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_DOLLARif] = ACTIONS(4548), - [anon_sym_match] = ACTIONS(4548), - [anon_sym_select] = ACTIONS(4548), - [anon_sym_lock] = ACTIONS(4548), - [anon_sym_rlock] = ACTIONS(4548), - [anon_sym_unsafe] = ACTIONS(4548), - [anon_sym_sql] = ACTIONS(4548), - [sym_int_literal] = ACTIONS(4548), - [sym_float_literal] = ACTIONS(4548), - [sym_rune_literal] = ACTIONS(4548), - [anon_sym_SQUOTE] = ACTIONS(4548), - [anon_sym_DQUOTE] = ACTIONS(4548), - [anon_sym_c_SQUOTE] = ACTIONS(4548), - [anon_sym_c_DQUOTE] = ACTIONS(4548), - [anon_sym_r_SQUOTE] = ACTIONS(4548), - [anon_sym_r_DQUOTE] = ACTIONS(4548), - [sym_pseudo_compile_time_identifier] = ACTIONS(4548), - [anon_sym_shared] = ACTIONS(4548), - [anon_sym_map_LBRACK] = ACTIONS(4548), - [anon_sym_chan] = ACTIONS(4548), - [anon_sym_thread] = ACTIONS(4548), - [anon_sym_atomic] = ACTIONS(4548), - [anon_sym_assert] = ACTIONS(4548), - [anon_sym_defer] = ACTIONS(4548), - [anon_sym_goto] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_DOLLARfor] = ACTIONS(4548), - [anon_sym_for] = ACTIONS(4548), - [anon_sym_POUND] = ACTIONS(4548), - [anon_sym_asm] = ACTIONS(4548), - [anon_sym_AT_LBRACK] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_LPAREN] = ACTIONS(4546), + [anon_sym___global] = ACTIONS(4546), + [anon_sym_type] = ACTIONS(4546), + [anon_sym_fn] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_union] = ACTIONS(4546), + [anon_sym_pub] = ACTIONS(4546), + [anon_sym_mut] = ACTIONS(4546), + [anon_sym_enum] = ACTIONS(4546), + [anon_sym_interface] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_BANG] = ACTIONS(4546), + [anon_sym_go] = ACTIONS(4546), + [anon_sym_spawn] = ACTIONS(4546), + [anon_sym_json_DOTdecode] = ACTIONS(4546), + [anon_sym_LBRACK2] = ACTIONS(4546), + [anon_sym_TILDE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_LT_DASH] = ACTIONS(4546), + [sym_none] = ACTIONS(4546), + [sym_true] = ACTIONS(4546), + [sym_false] = ACTIONS(4546), + [sym_nil] = ACTIONS(4546), + [anon_sym_if] = ACTIONS(4546), + [anon_sym_DOLLARif] = ACTIONS(4546), + [anon_sym_match] = ACTIONS(4546), + [anon_sym_select] = ACTIONS(4546), + [anon_sym_lock] = ACTIONS(4546), + [anon_sym_rlock] = ACTIONS(4546), + [anon_sym_unsafe] = ACTIONS(4546), + [anon_sym_sql] = ACTIONS(4546), + [sym_int_literal] = ACTIONS(4546), + [sym_float_literal] = ACTIONS(4546), + [sym_rune_literal] = ACTIONS(4546), + [anon_sym_SQUOTE] = ACTIONS(4546), + [anon_sym_DQUOTE] = ACTIONS(4546), + [anon_sym_c_SQUOTE] = ACTIONS(4546), + [anon_sym_c_DQUOTE] = ACTIONS(4546), + [anon_sym_r_SQUOTE] = ACTIONS(4546), + [anon_sym_r_DQUOTE] = ACTIONS(4546), + [sym_pseudo_compile_time_identifier] = ACTIONS(4546), + [anon_sym_shared] = ACTIONS(4546), + [anon_sym_map_LBRACK] = ACTIONS(4546), + [anon_sym_chan] = ACTIONS(4546), + [anon_sym_thread] = ACTIONS(4546), + [anon_sym_atomic] = ACTIONS(4546), + [anon_sym_assert] = ACTIONS(4546), + [anon_sym_defer] = ACTIONS(4546), + [anon_sym_goto] = ACTIONS(4546), + [anon_sym_break] = ACTIONS(4546), + [anon_sym_continue] = ACTIONS(4546), + [anon_sym_return] = ACTIONS(4546), + [anon_sym_DOLLARfor] = ACTIONS(4546), + [anon_sym_for] = ACTIONS(4546), + [anon_sym_POUND] = ACTIONS(4546), + [anon_sym_asm] = ACTIONS(4546), + [anon_sym_AT_LBRACK] = ACTIONS(4546), }, [1782] = { [sym_line_comment] = STATE(1782), [sym_block_comment] = STATE(1782), - [sym_import_declaration] = STATE(1919), - [aux_sym_import_list_repeat1] = STATE(1782), - [ts_builtin_sym_end] = ACTIONS(4550), - [sym_identifier] = ACTIONS(4552), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4554), - [anon_sym_DOT] = ACTIONS(4552), + [ts_builtin_sym_end] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4550), + [anon_sym_LF] = ACTIONS(4550), + [anon_sym_CR] = ACTIONS(4550), + [anon_sym_CR_LF] = ACTIONS(4550), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4550), [anon_sym_LBRACE] = ACTIONS(4550), - [anon_sym_const] = ACTIONS(4552), + [anon_sym_const] = ACTIONS(4550), [anon_sym_LPAREN] = ACTIONS(4550), - [anon_sym___global] = ACTIONS(4552), - [anon_sym_type] = ACTIONS(4552), - [anon_sym_fn] = ACTIONS(4552), + [anon_sym___global] = ACTIONS(4550), + [anon_sym_type] = ACTIONS(4550), + [anon_sym_fn] = ACTIONS(4550), [anon_sym_PLUS] = ACTIONS(4550), [anon_sym_DASH] = ACTIONS(4550), [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_struct] = ACTIONS(4552), - [anon_sym_union] = ACTIONS(4552), - [anon_sym_pub] = ACTIONS(4552), - [anon_sym_mut] = ACTIONS(4552), - [anon_sym_enum] = ACTIONS(4552), - [anon_sym_interface] = ACTIONS(4552), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_union] = ACTIONS(4550), + [anon_sym_pub] = ACTIONS(4550), + [anon_sym_mut] = ACTIONS(4550), + [anon_sym_enum] = ACTIONS(4550), + [anon_sym_interface] = ACTIONS(4550), [anon_sym_QMARK] = ACTIONS(4550), [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_go] = ACTIONS(4552), - [anon_sym_spawn] = ACTIONS(4552), + [anon_sym_go] = ACTIONS(4550), + [anon_sym_spawn] = ACTIONS(4550), [anon_sym_json_DOTdecode] = ACTIONS(4550), [anon_sym_LBRACK2] = ACTIONS(4550), [anon_sym_TILDE] = ACTIONS(4550), [anon_sym_CARET] = ACTIONS(4550), [anon_sym_AMP] = ACTIONS(4550), [anon_sym_LT_DASH] = ACTIONS(4550), - [sym_none] = ACTIONS(4552), - [sym_true] = ACTIONS(4552), - [sym_false] = ACTIONS(4552), - [sym_nil] = ACTIONS(4552), - [anon_sym_if] = ACTIONS(4552), - [anon_sym_DOLLARif] = ACTIONS(4552), - [anon_sym_match] = ACTIONS(4552), - [anon_sym_select] = ACTIONS(4552), - [anon_sym_lock] = ACTIONS(4552), - [anon_sym_rlock] = ACTIONS(4552), - [anon_sym_unsafe] = ACTIONS(4552), - [anon_sym_sql] = ACTIONS(4552), - [sym_int_literal] = ACTIONS(4552), + [sym_none] = ACTIONS(4550), + [sym_true] = ACTIONS(4550), + [sym_false] = ACTIONS(4550), + [sym_nil] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_DOLLARif] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_select] = ACTIONS(4550), + [anon_sym_lock] = ACTIONS(4550), + [anon_sym_rlock] = ACTIONS(4550), + [anon_sym_unsafe] = ACTIONS(4550), + [anon_sym_sql] = ACTIONS(4550), + [sym_int_literal] = ACTIONS(4550), [sym_float_literal] = ACTIONS(4550), [sym_rune_literal] = ACTIONS(4550), [anon_sym_SQUOTE] = ACTIONS(4550), @@ -211328,252 +211566,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_DQUOTE] = ACTIONS(4550), [anon_sym_r_SQUOTE] = ACTIONS(4550), [anon_sym_r_DQUOTE] = ACTIONS(4550), - [sym_pseudo_compile_time_identifier] = ACTIONS(4552), - [anon_sym_shared] = ACTIONS(4552), + [sym_pseudo_compile_time_identifier] = ACTIONS(4550), + [anon_sym_shared] = ACTIONS(4550), [anon_sym_map_LBRACK] = ACTIONS(4550), - [anon_sym_chan] = ACTIONS(4552), - [anon_sym_thread] = ACTIONS(4552), - [anon_sym_atomic] = ACTIONS(4552), - [anon_sym_assert] = ACTIONS(4552), - [anon_sym_defer] = ACTIONS(4552), - [anon_sym_goto] = ACTIONS(4552), - [anon_sym_break] = ACTIONS(4552), - [anon_sym_continue] = ACTIONS(4552), - [anon_sym_return] = ACTIONS(4552), - [anon_sym_DOLLARfor] = ACTIONS(4552), - [anon_sym_for] = ACTIONS(4552), + [anon_sym_chan] = ACTIONS(4550), + [anon_sym_thread] = ACTIONS(4550), + [anon_sym_atomic] = ACTIONS(4550), + [anon_sym_assert] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_goto] = ACTIONS(4550), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_DOLLARfor] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), [anon_sym_POUND] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(4552), + [anon_sym_asm] = ACTIONS(4550), [anon_sym_AT_LBRACK] = ACTIONS(4550), }, [1783] = { [sym_line_comment] = STATE(1783), [sym_block_comment] = STATE(1783), - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_LF] = ACTIONS(3300), - [anon_sym_CR] = ACTIONS(3300), - [anon_sym_CR_LF] = ACTIONS(3300), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3300), - [anon_sym___global] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_pub] = ACTIONS(3300), - [anon_sym_mut] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_QMARK] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_go] = ACTIONS(3300), - [anon_sym_spawn] = ACTIONS(3300), - [anon_sym_json_DOTdecode] = ACTIONS(3300), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_LT_DASH] = ACTIONS(3300), - [sym_none] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_nil] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_DOLLARif] = ACTIONS(3300), - [anon_sym_match] = ACTIONS(3300), - [anon_sym_select] = ACTIONS(3300), - [anon_sym_lock] = ACTIONS(3300), - [anon_sym_rlock] = ACTIONS(3300), - [anon_sym_unsafe] = ACTIONS(3300), - [anon_sym_sql] = ACTIONS(3300), - [sym_int_literal] = ACTIONS(3300), - [sym_float_literal] = ACTIONS(3300), - [sym_rune_literal] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [anon_sym_c_SQUOTE] = ACTIONS(3300), - [anon_sym_c_DQUOTE] = ACTIONS(3300), - [anon_sym_r_SQUOTE] = ACTIONS(3300), - [anon_sym_r_DQUOTE] = ACTIONS(3300), - [sym_pseudo_compile_time_identifier] = ACTIONS(3300), - [anon_sym_shared] = ACTIONS(3300), - [anon_sym_map_LBRACK] = ACTIONS(3300), - [anon_sym_chan] = ACTIONS(3300), - [anon_sym_thread] = ACTIONS(3300), - [anon_sym_atomic] = ACTIONS(3300), - [anon_sym_assert] = ACTIONS(3300), - [anon_sym_defer] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_DOLLARfor] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym_AT_LBRACK] = ACTIONS(3300), + [sym_import_declaration] = STATE(1920), + [aux_sym_import_list_repeat1] = STATE(1783), + [ts_builtin_sym_end] = ACTIONS(4552), + [sym_identifier] = ACTIONS(4554), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_LBRACE] = ACTIONS(4552), + [anon_sym_const] = ACTIONS(4554), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym___global] = ACTIONS(4554), + [anon_sym_type] = ACTIONS(4554), + [anon_sym_fn] = ACTIONS(4554), + [anon_sym_PLUS] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_struct] = ACTIONS(4554), + [anon_sym_union] = ACTIONS(4554), + [anon_sym_pub] = ACTIONS(4554), + [anon_sym_mut] = ACTIONS(4554), + [anon_sym_enum] = ACTIONS(4554), + [anon_sym_interface] = ACTIONS(4554), + [anon_sym_QMARK] = ACTIONS(4552), + [anon_sym_BANG] = ACTIONS(4552), + [anon_sym_go] = ACTIONS(4554), + [anon_sym_spawn] = ACTIONS(4554), + [anon_sym_json_DOTdecode] = ACTIONS(4552), + [anon_sym_LBRACK2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_LT_DASH] = ACTIONS(4552), + [sym_none] = ACTIONS(4554), + [sym_true] = ACTIONS(4554), + [sym_false] = ACTIONS(4554), + [sym_nil] = ACTIONS(4554), + [anon_sym_if] = ACTIONS(4554), + [anon_sym_DOLLARif] = ACTIONS(4554), + [anon_sym_match] = ACTIONS(4554), + [anon_sym_select] = ACTIONS(4554), + [anon_sym_lock] = ACTIONS(4554), + [anon_sym_rlock] = ACTIONS(4554), + [anon_sym_unsafe] = ACTIONS(4554), + [anon_sym_sql] = ACTIONS(4554), + [sym_int_literal] = ACTIONS(4554), + [sym_float_literal] = ACTIONS(4552), + [sym_rune_literal] = ACTIONS(4552), + [anon_sym_SQUOTE] = ACTIONS(4552), + [anon_sym_DQUOTE] = ACTIONS(4552), + [anon_sym_c_SQUOTE] = ACTIONS(4552), + [anon_sym_c_DQUOTE] = ACTIONS(4552), + [anon_sym_r_SQUOTE] = ACTIONS(4552), + [anon_sym_r_DQUOTE] = ACTIONS(4552), + [sym_pseudo_compile_time_identifier] = ACTIONS(4554), + [anon_sym_shared] = ACTIONS(4554), + [anon_sym_map_LBRACK] = ACTIONS(4552), + [anon_sym_chan] = ACTIONS(4554), + [anon_sym_thread] = ACTIONS(4554), + [anon_sym_atomic] = ACTIONS(4554), + [anon_sym_assert] = ACTIONS(4554), + [anon_sym_defer] = ACTIONS(4554), + [anon_sym_goto] = ACTIONS(4554), + [anon_sym_break] = ACTIONS(4554), + [anon_sym_continue] = ACTIONS(4554), + [anon_sym_return] = ACTIONS(4554), + [anon_sym_DOLLARfor] = ACTIONS(4554), + [anon_sym_for] = ACTIONS(4554), + [anon_sym_POUND] = ACTIONS(4552), + [anon_sym_asm] = ACTIONS(4554), + [anon_sym_AT_LBRACK] = ACTIONS(4552), }, [1784] = { [sym_line_comment] = STATE(1784), [sym_block_comment] = STATE(1784), - [sym_import_declaration] = STATE(1919), - [aux_sym_import_list_repeat1] = STATE(1782), - [ts_builtin_sym_end] = ACTIONS(4557), - [sym_identifier] = ACTIONS(4559), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4557), - [anon_sym_const] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4557), - [anon_sym___global] = ACTIONS(4559), - [anon_sym_type] = ACTIONS(4559), - [anon_sym_fn] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4557), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_STAR] = ACTIONS(4557), - [anon_sym_struct] = ACTIONS(4559), - [anon_sym_union] = ACTIONS(4559), - [anon_sym_pub] = ACTIONS(4559), - [anon_sym_mut] = ACTIONS(4559), - [anon_sym_enum] = ACTIONS(4559), - [anon_sym_interface] = ACTIONS(4559), - [anon_sym_QMARK] = ACTIONS(4557), - [anon_sym_BANG] = ACTIONS(4557), - [anon_sym_go] = ACTIONS(4559), - [anon_sym_spawn] = ACTIONS(4559), - [anon_sym_json_DOTdecode] = ACTIONS(4557), - [anon_sym_LBRACK2] = ACTIONS(4557), - [anon_sym_TILDE] = ACTIONS(4557), - [anon_sym_CARET] = ACTIONS(4557), - [anon_sym_AMP] = ACTIONS(4557), - [anon_sym_LT_DASH] = ACTIONS(4557), - [sym_none] = ACTIONS(4559), - [sym_true] = ACTIONS(4559), - [sym_false] = ACTIONS(4559), - [sym_nil] = ACTIONS(4559), - [anon_sym_if] = ACTIONS(4559), - [anon_sym_DOLLARif] = ACTIONS(4559), - [anon_sym_match] = ACTIONS(4559), - [anon_sym_select] = ACTIONS(4559), - [anon_sym_lock] = ACTIONS(4559), - [anon_sym_rlock] = ACTIONS(4559), - [anon_sym_unsafe] = ACTIONS(4559), - [anon_sym_sql] = ACTIONS(4559), - [sym_int_literal] = ACTIONS(4559), - [sym_float_literal] = ACTIONS(4557), - [sym_rune_literal] = ACTIONS(4557), - [anon_sym_SQUOTE] = ACTIONS(4557), - [anon_sym_DQUOTE] = ACTIONS(4557), - [anon_sym_c_SQUOTE] = ACTIONS(4557), - [anon_sym_c_DQUOTE] = ACTIONS(4557), - [anon_sym_r_SQUOTE] = ACTIONS(4557), - [anon_sym_r_DQUOTE] = ACTIONS(4557), - [sym_pseudo_compile_time_identifier] = ACTIONS(4559), - [anon_sym_shared] = ACTIONS(4559), - [anon_sym_map_LBRACK] = ACTIONS(4557), - [anon_sym_chan] = ACTIONS(4559), - [anon_sym_thread] = ACTIONS(4559), - [anon_sym_atomic] = ACTIONS(4559), - [anon_sym_assert] = ACTIONS(4559), - [anon_sym_defer] = ACTIONS(4559), - [anon_sym_goto] = ACTIONS(4559), - [anon_sym_break] = ACTIONS(4559), - [anon_sym_continue] = ACTIONS(4559), - [anon_sym_return] = ACTIONS(4559), - [anon_sym_DOLLARfor] = ACTIONS(4559), - [anon_sym_for] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(4557), - [anon_sym_asm] = ACTIONS(4559), - [anon_sym_AT_LBRACK] = ACTIONS(4557), + [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(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_const] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym___global] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4413), + [anon_sym_fn] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4413), + [anon_sym_union] = ACTIONS(4413), + [anon_sym_pub] = ACTIONS(4413), + [anon_sym_mut] = ACTIONS(4413), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_interface] = ACTIONS(4413), + [anon_sym_QMARK] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_go] = ACTIONS(4413), + [anon_sym_spawn] = ACTIONS(4413), + [anon_sym_json_DOTdecode] = ACTIONS(4413), + [anon_sym_LBRACK2] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(4413), + [anon_sym_CARET] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(4413), + [anon_sym_LT_DASH] = ACTIONS(4413), + [sym_none] = ACTIONS(4413), + [sym_true] = ACTIONS(4413), + [sym_false] = ACTIONS(4413), + [sym_nil] = ACTIONS(4413), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_DOLLARif] = ACTIONS(4413), + [anon_sym_match] = ACTIONS(4413), + [anon_sym_select] = ACTIONS(4413), + [anon_sym_lock] = ACTIONS(4413), + [anon_sym_rlock] = ACTIONS(4413), + [anon_sym_unsafe] = ACTIONS(4413), + [anon_sym_sql] = ACTIONS(4413), + [sym_int_literal] = ACTIONS(4413), + [sym_float_literal] = ACTIONS(4413), + [sym_rune_literal] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4413), + [anon_sym_DQUOTE] = ACTIONS(4413), + [anon_sym_c_SQUOTE] = ACTIONS(4413), + [anon_sym_c_DQUOTE] = ACTIONS(4413), + [anon_sym_r_SQUOTE] = ACTIONS(4413), + [anon_sym_r_DQUOTE] = ACTIONS(4413), + [sym_pseudo_compile_time_identifier] = ACTIONS(4413), + [anon_sym_shared] = ACTIONS(4413), + [anon_sym_map_LBRACK] = ACTIONS(4413), + [anon_sym_chan] = ACTIONS(4413), + [anon_sym_thread] = ACTIONS(4413), + [anon_sym_atomic] = ACTIONS(4413), + [anon_sym_assert] = ACTIONS(4413), + [anon_sym_defer] = ACTIONS(4413), + [anon_sym_goto] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_DOLLARfor] = ACTIONS(4413), + [anon_sym_for] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(4413), + [anon_sym_asm] = ACTIONS(4413), + [anon_sym_AT_LBRACK] = ACTIONS(4413), }, [1785] = { [sym_line_comment] = STATE(1785), [sym_block_comment] = STATE(1785), - [ts_builtin_sym_end] = ACTIONS(4561), - [sym_identifier] = ACTIONS(4563), - [anon_sym_LF] = ACTIONS(4565), - [anon_sym_CR] = ACTIONS(4565), - [anon_sym_CR_LF] = ACTIONS(4565), + [ts_builtin_sym_end] = ACTIONS(4559), + [sym_identifier] = ACTIONS(4561), + [anon_sym_LF] = ACTIONS(4561), + [anon_sym_CR] = ACTIONS(4561), + [anon_sym_CR_LF] = ACTIONS(4561), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_const] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym___global] = ACTIONS(4563), - [anon_sym_type] = ACTIONS(4563), - [anon_sym_fn] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4563), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4563), - [anon_sym_union] = ACTIONS(4563), - [anon_sym_pub] = ACTIONS(4563), - [anon_sym_mut] = ACTIONS(4563), - [anon_sym_enum] = ACTIONS(4563), - [anon_sym_interface] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_go] = ACTIONS(4563), - [anon_sym_spawn] = ACTIONS(4563), - [anon_sym_json_DOTdecode] = ACTIONS(4563), - [anon_sym_LBRACK2] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_CARET] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym_LT_DASH] = ACTIONS(4563), - [sym_none] = ACTIONS(4563), - [sym_true] = ACTIONS(4563), - [sym_false] = ACTIONS(4563), - [sym_nil] = ACTIONS(4563), - [anon_sym_if] = ACTIONS(4563), - [anon_sym_DOLLARif] = ACTIONS(4563), - [anon_sym_match] = ACTIONS(4563), - [anon_sym_select] = ACTIONS(4563), - [anon_sym_lock] = ACTIONS(4563), - [anon_sym_rlock] = ACTIONS(4563), - [anon_sym_unsafe] = ACTIONS(4563), - [anon_sym_sql] = ACTIONS(4563), - [sym_int_literal] = ACTIONS(4563), - [sym_float_literal] = ACTIONS(4563), - [sym_rune_literal] = ACTIONS(4563), - [anon_sym_SQUOTE] = ACTIONS(4563), - [anon_sym_DQUOTE] = ACTIONS(4563), - [anon_sym_c_SQUOTE] = ACTIONS(4563), - [anon_sym_c_DQUOTE] = ACTIONS(4563), - [anon_sym_r_SQUOTE] = ACTIONS(4563), - [anon_sym_r_DQUOTE] = ACTIONS(4563), - [sym_pseudo_compile_time_identifier] = ACTIONS(4563), - [anon_sym_shared] = ACTIONS(4563), - [anon_sym_map_LBRACK] = ACTIONS(4563), - [anon_sym_chan] = ACTIONS(4563), - [anon_sym_thread] = ACTIONS(4563), - [anon_sym_atomic] = ACTIONS(4563), - [anon_sym_assert] = ACTIONS(4563), - [anon_sym_defer] = ACTIONS(4563), - [anon_sym_goto] = ACTIONS(4563), - [anon_sym_break] = ACTIONS(4563), - [anon_sym_continue] = ACTIONS(4563), - [anon_sym_return] = ACTIONS(4563), - [anon_sym_DOLLARfor] = ACTIONS(4563), - [anon_sym_for] = ACTIONS(4563), - [anon_sym_POUND] = ACTIONS(4563), - [anon_sym_asm] = ACTIONS(4563), - [anon_sym_AT_LBRACK] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_LBRACE] = ACTIONS(4561), + [anon_sym_const] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym___global] = ACTIONS(4561), + [anon_sym_type] = ACTIONS(4561), + [anon_sym_fn] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4561), + [anon_sym_STAR] = ACTIONS(4561), + [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(4561), + [anon_sym_BANG] = ACTIONS(4561), + [anon_sym_go] = ACTIONS(4561), + [anon_sym_spawn] = ACTIONS(4561), + [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(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(4561), + [sym_rune_literal] = ACTIONS(4561), + [anon_sym_SQUOTE] = ACTIONS(4561), + [anon_sym_DQUOTE] = ACTIONS(4561), + [anon_sym_c_SQUOTE] = ACTIONS(4561), + [anon_sym_c_DQUOTE] = ACTIONS(4561), + [anon_sym_r_SQUOTE] = ACTIONS(4561), + [anon_sym_r_DQUOTE] = ACTIONS(4561), + [sym_pseudo_compile_time_identifier] = ACTIONS(4561), + [anon_sym_shared] = ACTIONS(4561), + [anon_sym_map_LBRACK] = ACTIONS(4561), + [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(4561), + [anon_sym_asm] = ACTIONS(4561), + [anon_sym_AT_LBRACK] = ACTIONS(4561), }, [1786] = { [sym_line_comment] = STATE(1786), [sym_block_comment] = STATE(1786), + [ts_builtin_sym_end] = ACTIONS(4563), + [sym_identifier] = ACTIONS(4565), + [anon_sym_LF] = ACTIONS(4565), + [anon_sym_CR] = ACTIONS(4565), + [anon_sym_CR_LF] = ACTIONS(4565), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_const] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym___global] = ACTIONS(4565), + [anon_sym_type] = ACTIONS(4565), + [anon_sym_fn] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [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(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_go] = ACTIONS(4565), + [anon_sym_spawn] = ACTIONS(4565), + [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(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(4565), + [sym_rune_literal] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DQUOTE] = ACTIONS(4565), + [anon_sym_c_SQUOTE] = ACTIONS(4565), + [anon_sym_c_DQUOTE] = ACTIONS(4565), + [anon_sym_r_SQUOTE] = ACTIONS(4565), + [anon_sym_r_DQUOTE] = ACTIONS(4565), + [sym_pseudo_compile_time_identifier] = ACTIONS(4565), + [anon_sym_shared] = ACTIONS(4565), + [anon_sym_map_LBRACK] = ACTIONS(4565), + [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(4565), + [anon_sym_asm] = ACTIONS(4565), + [anon_sym_AT_LBRACK] = ACTIONS(4565), + }, + [1787] = { + [sym_line_comment] = STATE(1787), + [sym_block_comment] = STATE(1787), [ts_builtin_sym_end] = ACTIONS(4567), [sym_identifier] = ACTIONS(4569), [anon_sym_LF] = ACTIONS(4569), @@ -211646,14 +211959,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4569), [anon_sym_AT_LBRACK] = ACTIONS(4569), }, - [1787] = { - [sym_line_comment] = STATE(1787), - [sym_block_comment] = STATE(1787), + [1788] = { + [sym_line_comment] = STATE(1788), + [sym_block_comment] = STATE(1788), [ts_builtin_sym_end] = ACTIONS(4571), [sym_identifier] = ACTIONS(4573), - [anon_sym_LF] = ACTIONS(4573), - [anon_sym_CR] = ACTIONS(4573), - [anon_sym_CR_LF] = ACTIONS(4573), + [anon_sym_LF] = ACTIONS(4575), + [anon_sym_CR] = ACTIONS(4575), + [anon_sym_CR_LF] = ACTIONS(4575), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), [anon_sym_DOT] = ACTIONS(4573), @@ -211721,1405 +212034,1255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4573), [anon_sym_AT_LBRACK] = ACTIONS(4573), }, - [1788] = { - [sym_line_comment] = STATE(1788), - [sym_block_comment] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(4575), - [sym_identifier] = ACTIONS(4577), - [anon_sym_LF] = ACTIONS(4577), - [anon_sym_CR] = ACTIONS(4577), - [anon_sym_CR_LF] = ACTIONS(4577), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_LBRACE] = ACTIONS(4577), - [anon_sym_const] = ACTIONS(4577), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym___global] = ACTIONS(4577), - [anon_sym_type] = ACTIONS(4577), - [anon_sym_fn] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_STAR] = ACTIONS(4577), - [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(4577), - [anon_sym_BANG] = ACTIONS(4577), - [anon_sym_go] = ACTIONS(4577), - [anon_sym_spawn] = ACTIONS(4577), - [anon_sym_json_DOTdecode] = ACTIONS(4577), - [anon_sym_LBRACK2] = ACTIONS(4577), - [anon_sym_TILDE] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_LT_DASH] = ACTIONS(4577), - [sym_none] = ACTIONS(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(4577), - [sym_rune_literal] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4577), - [anon_sym_DQUOTE] = ACTIONS(4577), - [anon_sym_c_SQUOTE] = ACTIONS(4577), - [anon_sym_c_DQUOTE] = ACTIONS(4577), - [anon_sym_r_SQUOTE] = ACTIONS(4577), - [anon_sym_r_DQUOTE] = ACTIONS(4577), - [sym_pseudo_compile_time_identifier] = ACTIONS(4577), - [anon_sym_shared] = ACTIONS(4577), - [anon_sym_map_LBRACK] = ACTIONS(4577), - [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(4577), - [anon_sym_asm] = ACTIONS(4577), - [anon_sym_AT_LBRACK] = ACTIONS(4577), - }, [1789] = { [sym_line_comment] = STATE(1789), [sym_block_comment] = STATE(1789), - [ts_builtin_sym_end] = ACTIONS(4579), - [sym_identifier] = ACTIONS(4581), - [anon_sym_LF] = ACTIONS(4581), - [anon_sym_CR] = ACTIONS(4581), - [anon_sym_CR_LF] = ACTIONS(4581), + [ts_builtin_sym_end] = ACTIONS(4577), + [sym_identifier] = ACTIONS(4579), + [anon_sym_LF] = ACTIONS(4579), + [anon_sym_CR] = ACTIONS(4579), + [anon_sym_CR_LF] = ACTIONS(4579), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4581), - [anon_sym_LBRACE] = ACTIONS(4581), - [anon_sym_const] = ACTIONS(4581), - [anon_sym_LPAREN] = ACTIONS(4581), - [anon_sym___global] = ACTIONS(4581), - [anon_sym_type] = ACTIONS(4581), - [anon_sym_fn] = ACTIONS(4581), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_STAR] = ACTIONS(4581), - [anon_sym_struct] = ACTIONS(4581), - [anon_sym_union] = ACTIONS(4581), - [anon_sym_pub] = ACTIONS(4581), - [anon_sym_mut] = ACTIONS(4581), - [anon_sym_enum] = ACTIONS(4581), - [anon_sym_interface] = ACTIONS(4581), - [anon_sym_QMARK] = ACTIONS(4581), - [anon_sym_BANG] = ACTIONS(4581), - [anon_sym_go] = ACTIONS(4581), - [anon_sym_spawn] = ACTIONS(4581), - [anon_sym_json_DOTdecode] = ACTIONS(4581), - [anon_sym_LBRACK2] = ACTIONS(4581), - [anon_sym_TILDE] = ACTIONS(4581), - [anon_sym_CARET] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(4581), - [anon_sym_LT_DASH] = ACTIONS(4581), - [sym_none] = ACTIONS(4581), - [sym_true] = ACTIONS(4581), - [sym_false] = ACTIONS(4581), - [sym_nil] = ACTIONS(4581), - [anon_sym_if] = ACTIONS(4581), - [anon_sym_DOLLARif] = ACTIONS(4581), - [anon_sym_match] = ACTIONS(4581), - [anon_sym_select] = ACTIONS(4581), - [anon_sym_lock] = ACTIONS(4581), - [anon_sym_rlock] = ACTIONS(4581), - [anon_sym_unsafe] = ACTIONS(4581), - [anon_sym_sql] = ACTIONS(4581), - [sym_int_literal] = ACTIONS(4581), - [sym_float_literal] = ACTIONS(4581), - [sym_rune_literal] = ACTIONS(4581), - [anon_sym_SQUOTE] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(4581), - [anon_sym_c_SQUOTE] = ACTIONS(4581), - [anon_sym_c_DQUOTE] = ACTIONS(4581), - [anon_sym_r_SQUOTE] = ACTIONS(4581), - [anon_sym_r_DQUOTE] = ACTIONS(4581), - [sym_pseudo_compile_time_identifier] = ACTIONS(4581), - [anon_sym_shared] = ACTIONS(4581), - [anon_sym_map_LBRACK] = ACTIONS(4581), - [anon_sym_chan] = ACTIONS(4581), - [anon_sym_thread] = ACTIONS(4581), - [anon_sym_atomic] = ACTIONS(4581), - [anon_sym_assert] = ACTIONS(4581), - [anon_sym_defer] = ACTIONS(4581), - [anon_sym_goto] = ACTIONS(4581), - [anon_sym_break] = ACTIONS(4581), - [anon_sym_continue] = ACTIONS(4581), - [anon_sym_return] = ACTIONS(4581), - [anon_sym_DOLLARfor] = ACTIONS(4581), - [anon_sym_for] = ACTIONS(4581), - [anon_sym_POUND] = ACTIONS(4581), - [anon_sym_asm] = ACTIONS(4581), - [anon_sym_AT_LBRACK] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_const] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym___global] = ACTIONS(4579), + [anon_sym_type] = ACTIONS(4579), + [anon_sym_fn] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4579), + [anon_sym_DASH] = ACTIONS(4579), + [anon_sym_STAR] = ACTIONS(4579), + [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(4579), + [anon_sym_BANG] = ACTIONS(4579), + [anon_sym_go] = ACTIONS(4579), + [anon_sym_spawn] = ACTIONS(4579), + [anon_sym_json_DOTdecode] = ACTIONS(4579), + [anon_sym_LBRACK2] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4579), + [anon_sym_CARET] = ACTIONS(4579), + [anon_sym_AMP] = ACTIONS(4579), + [anon_sym_LT_DASH] = ACTIONS(4579), + [sym_none] = ACTIONS(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(4579), + [sym_rune_literal] = ACTIONS(4579), + [anon_sym_SQUOTE] = ACTIONS(4579), + [anon_sym_DQUOTE] = ACTIONS(4579), + [anon_sym_c_SQUOTE] = ACTIONS(4579), + [anon_sym_c_DQUOTE] = ACTIONS(4579), + [anon_sym_r_SQUOTE] = ACTIONS(4579), + [anon_sym_r_DQUOTE] = ACTIONS(4579), + [sym_pseudo_compile_time_identifier] = ACTIONS(4579), + [anon_sym_shared] = ACTIONS(4579), + [anon_sym_map_LBRACK] = ACTIONS(4579), + [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(4579), + [anon_sym_asm] = ACTIONS(4579), + [anon_sym_AT_LBRACK] = ACTIONS(4579), }, [1790] = { [sym_line_comment] = STATE(1790), [sym_block_comment] = STATE(1790), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_CR] = ACTIONS(1997), - [anon_sym_CR_LF] = ACTIONS(1997), + [ts_builtin_sym_end] = ACTIONS(4581), + [sym_identifier] = ACTIONS(4583), + [anon_sym_LF] = ACTIONS(4583), + [anon_sym_CR] = ACTIONS(4583), + [anon_sym_CR_LF] = ACTIONS(4583), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym___global] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1997), - [anon_sym_fn] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_union] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_enum] = ACTIONS(1997), - [anon_sym_interface] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_go] = ACTIONS(1997), - [anon_sym_spawn] = ACTIONS(1997), - [anon_sym_json_DOTdecode] = ACTIONS(1997), - [anon_sym_LBRACK2] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_LT_DASH] = ACTIONS(1997), - [sym_none] = ACTIONS(1997), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [sym_nil] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_DOLLARif] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(1997), - [anon_sym_lock] = ACTIONS(1997), - [anon_sym_rlock] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_sql] = ACTIONS(1997), - [sym_int_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_rune_literal] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [anon_sym_c_SQUOTE] = ACTIONS(1997), - [anon_sym_c_DQUOTE] = ACTIONS(1997), - [anon_sym_r_SQUOTE] = ACTIONS(1997), - [anon_sym_r_DQUOTE] = ACTIONS(1997), - [sym_pseudo_compile_time_identifier] = ACTIONS(1997), - [anon_sym_shared] = ACTIONS(1997), - [anon_sym_map_LBRACK] = ACTIONS(1997), - [anon_sym_chan] = ACTIONS(1997), - [anon_sym_thread] = ACTIONS(1997), - [anon_sym_atomic] = ACTIONS(1997), - [anon_sym_assert] = ACTIONS(1997), - [anon_sym_defer] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_DOLLARfor] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), - [anon_sym_AT_LBRACK] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym___global] = ACTIONS(4583), + [anon_sym_type] = ACTIONS(4583), + [anon_sym_fn] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_struct] = ACTIONS(4583), + [anon_sym_union] = ACTIONS(4583), + [anon_sym_pub] = ACTIONS(4583), + [anon_sym_mut] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4583), + [anon_sym_interface] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_go] = ACTIONS(4583), + [anon_sym_spawn] = ACTIONS(4583), + [anon_sym_json_DOTdecode] = ACTIONS(4583), + [anon_sym_LBRACK2] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_LT_DASH] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_nil] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_DOLLARif] = ACTIONS(4583), + [anon_sym_match] = ACTIONS(4583), + [anon_sym_select] = ACTIONS(4583), + [anon_sym_lock] = ACTIONS(4583), + [anon_sym_rlock] = ACTIONS(4583), + [anon_sym_unsafe] = ACTIONS(4583), + [anon_sym_sql] = ACTIONS(4583), + [sym_int_literal] = ACTIONS(4583), + [sym_float_literal] = ACTIONS(4583), + [sym_rune_literal] = ACTIONS(4583), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_c_SQUOTE] = ACTIONS(4583), + [anon_sym_c_DQUOTE] = ACTIONS(4583), + [anon_sym_r_SQUOTE] = ACTIONS(4583), + [anon_sym_r_DQUOTE] = ACTIONS(4583), + [sym_pseudo_compile_time_identifier] = ACTIONS(4583), + [anon_sym_shared] = ACTIONS(4583), + [anon_sym_map_LBRACK] = ACTIONS(4583), + [anon_sym_chan] = ACTIONS(4583), + [anon_sym_thread] = ACTIONS(4583), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_assert] = ACTIONS(4583), + [anon_sym_defer] = ACTIONS(4583), + [anon_sym_goto] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_DOLLARfor] = ACTIONS(4583), + [anon_sym_for] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_asm] = ACTIONS(4583), + [anon_sym_AT_LBRACK] = ACTIONS(4583), }, [1791] = { [sym_line_comment] = STATE(1791), [sym_block_comment] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(4583), - [sym_identifier] = ACTIONS(4585), - [anon_sym_LF] = ACTIONS(4585), - [anon_sym_CR] = ACTIONS(4585), - [anon_sym_CR_LF] = ACTIONS(4585), + [ts_builtin_sym_end] = ACTIONS(4585), + [sym_identifier] = ACTIONS(4587), + [anon_sym_LF] = ACTIONS(4587), + [anon_sym_CR] = ACTIONS(4587), + [anon_sym_CR_LF] = ACTIONS(4587), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(4585), - [anon_sym_const] = ACTIONS(4585), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym___global] = ACTIONS(4585), - [anon_sym_type] = ACTIONS(4585), - [anon_sym_fn] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_STAR] = ACTIONS(4585), - [anon_sym_struct] = ACTIONS(4585), - [anon_sym_union] = ACTIONS(4585), - [anon_sym_pub] = ACTIONS(4585), - [anon_sym_mut] = ACTIONS(4585), - [anon_sym_enum] = ACTIONS(4585), - [anon_sym_interface] = ACTIONS(4585), - [anon_sym_QMARK] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(4585), - [anon_sym_go] = ACTIONS(4585), - [anon_sym_spawn] = ACTIONS(4585), - [anon_sym_json_DOTdecode] = ACTIONS(4585), - [anon_sym_LBRACK2] = ACTIONS(4585), - [anon_sym_TILDE] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_LT_DASH] = ACTIONS(4585), - [sym_none] = ACTIONS(4585), - [sym_true] = ACTIONS(4585), - [sym_false] = ACTIONS(4585), - [sym_nil] = ACTIONS(4585), - [anon_sym_if] = ACTIONS(4585), - [anon_sym_DOLLARif] = ACTIONS(4585), - [anon_sym_match] = ACTIONS(4585), - [anon_sym_select] = ACTIONS(4585), - [anon_sym_lock] = ACTIONS(4585), - [anon_sym_rlock] = ACTIONS(4585), - [anon_sym_unsafe] = ACTIONS(4585), - [anon_sym_sql] = ACTIONS(4585), - [sym_int_literal] = ACTIONS(4585), - [sym_float_literal] = ACTIONS(4585), - [sym_rune_literal] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4585), - [anon_sym_DQUOTE] = ACTIONS(4585), - [anon_sym_c_SQUOTE] = ACTIONS(4585), - [anon_sym_c_DQUOTE] = ACTIONS(4585), - [anon_sym_r_SQUOTE] = ACTIONS(4585), - [anon_sym_r_DQUOTE] = ACTIONS(4585), - [sym_pseudo_compile_time_identifier] = ACTIONS(4585), - [anon_sym_shared] = ACTIONS(4585), - [anon_sym_map_LBRACK] = ACTIONS(4585), - [anon_sym_chan] = ACTIONS(4585), - [anon_sym_thread] = ACTIONS(4585), - [anon_sym_atomic] = ACTIONS(4585), - [anon_sym_assert] = ACTIONS(4585), - [anon_sym_defer] = ACTIONS(4585), - [anon_sym_goto] = ACTIONS(4585), - [anon_sym_break] = ACTIONS(4585), - [anon_sym_continue] = ACTIONS(4585), - [anon_sym_return] = ACTIONS(4585), - [anon_sym_DOLLARfor] = ACTIONS(4585), - [anon_sym_for] = ACTIONS(4585), - [anon_sym_POUND] = ACTIONS(4585), - [anon_sym_asm] = ACTIONS(4585), - [anon_sym_AT_LBRACK] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym___global] = ACTIONS(4587), + [anon_sym_type] = ACTIONS(4587), + [anon_sym_fn] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_struct] = ACTIONS(4587), + [anon_sym_union] = ACTIONS(4587), + [anon_sym_pub] = ACTIONS(4587), + [anon_sym_mut] = ACTIONS(4587), + [anon_sym_enum] = ACTIONS(4587), + [anon_sym_interface] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_go] = ACTIONS(4587), + [anon_sym_spawn] = ACTIONS(4587), + [anon_sym_json_DOTdecode] = ACTIONS(4587), + [anon_sym_LBRACK2] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_CARET] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_LT_DASH] = ACTIONS(4587), + [sym_none] = ACTIONS(4587), + [sym_true] = ACTIONS(4587), + [sym_false] = ACTIONS(4587), + [sym_nil] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_DOLLARif] = ACTIONS(4587), + [anon_sym_match] = ACTIONS(4587), + [anon_sym_select] = ACTIONS(4587), + [anon_sym_lock] = ACTIONS(4587), + [anon_sym_rlock] = ACTIONS(4587), + [anon_sym_unsafe] = ACTIONS(4587), + [anon_sym_sql] = ACTIONS(4587), + [sym_int_literal] = ACTIONS(4587), + [sym_float_literal] = ACTIONS(4587), + [sym_rune_literal] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_c_SQUOTE] = ACTIONS(4587), + [anon_sym_c_DQUOTE] = ACTIONS(4587), + [anon_sym_r_SQUOTE] = ACTIONS(4587), + [anon_sym_r_DQUOTE] = ACTIONS(4587), + [sym_pseudo_compile_time_identifier] = ACTIONS(4587), + [anon_sym_shared] = ACTIONS(4587), + [anon_sym_map_LBRACK] = ACTIONS(4587), + [anon_sym_chan] = ACTIONS(4587), + [anon_sym_thread] = ACTIONS(4587), + [anon_sym_atomic] = ACTIONS(4587), + [anon_sym_assert] = ACTIONS(4587), + [anon_sym_defer] = ACTIONS(4587), + [anon_sym_goto] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_DOLLARfor] = ACTIONS(4587), + [anon_sym_for] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_asm] = ACTIONS(4587), + [anon_sym_AT_LBRACK] = ACTIONS(4587), }, [1792] = { [sym_line_comment] = STATE(1792), [sym_block_comment] = STATE(1792), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(4589), + [sym_identifier] = ACTIONS(4591), + [anon_sym_LF] = ACTIONS(4591), + [anon_sym_CR] = ACTIONS(4591), + [anon_sym_CR_LF] = ACTIONS(4591), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_const] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym___global] = ACTIONS(4591), + [anon_sym_type] = ACTIONS(4591), + [anon_sym_fn] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_struct] = ACTIONS(4591), + [anon_sym_union] = ACTIONS(4591), + [anon_sym_pub] = ACTIONS(4591), + [anon_sym_mut] = ACTIONS(4591), + [anon_sym_enum] = ACTIONS(4591), + [anon_sym_interface] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_go] = ACTIONS(4591), + [anon_sym_spawn] = ACTIONS(4591), + [anon_sym_json_DOTdecode] = ACTIONS(4591), + [anon_sym_LBRACK2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4591), + [anon_sym_LT_DASH] = ACTIONS(4591), + [sym_none] = ACTIONS(4591), + [sym_true] = ACTIONS(4591), + [sym_false] = ACTIONS(4591), + [sym_nil] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(4591), + [anon_sym_DOLLARif] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(4591), + [anon_sym_select] = ACTIONS(4591), + [anon_sym_lock] = ACTIONS(4591), + [anon_sym_rlock] = ACTIONS(4591), + [anon_sym_unsafe] = ACTIONS(4591), + [anon_sym_sql] = ACTIONS(4591), + [sym_int_literal] = ACTIONS(4591), + [sym_float_literal] = ACTIONS(4591), + [sym_rune_literal] = ACTIONS(4591), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_c_SQUOTE] = ACTIONS(4591), + [anon_sym_c_DQUOTE] = ACTIONS(4591), + [anon_sym_r_SQUOTE] = ACTIONS(4591), + [anon_sym_r_DQUOTE] = ACTIONS(4591), + [sym_pseudo_compile_time_identifier] = ACTIONS(4591), + [anon_sym_shared] = ACTIONS(4591), + [anon_sym_map_LBRACK] = ACTIONS(4591), + [anon_sym_chan] = ACTIONS(4591), + [anon_sym_thread] = ACTIONS(4591), + [anon_sym_atomic] = ACTIONS(4591), + [anon_sym_assert] = ACTIONS(4591), + [anon_sym_defer] = ACTIONS(4591), + [anon_sym_goto] = ACTIONS(4591), + [anon_sym_break] = ACTIONS(4591), + [anon_sym_continue] = ACTIONS(4591), + [anon_sym_return] = ACTIONS(4591), + [anon_sym_DOLLARfor] = ACTIONS(4591), + [anon_sym_for] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_asm] = ACTIONS(4591), + [anon_sym_AT_LBRACK] = ACTIONS(4591), }, [1793] = { [sym_line_comment] = STATE(1793), [sym_block_comment] = STATE(1793), - [ts_builtin_sym_end] = ACTIONS(4587), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LF] = ACTIONS(4589), - [anon_sym_CR] = ACTIONS(4589), - [anon_sym_CR_LF] = ACTIONS(4589), + [ts_builtin_sym_end] = ACTIONS(4593), + [sym_identifier] = ACTIONS(4595), + [anon_sym_LF] = ACTIONS(4595), + [anon_sym_CR] = ACTIONS(4595), + [anon_sym_CR_LF] = ACTIONS(4595), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4589), - [anon_sym_const] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym___global] = ACTIONS(4589), - [anon_sym_type] = ACTIONS(4589), - [anon_sym_fn] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_STAR] = ACTIONS(4589), - [anon_sym_struct] = ACTIONS(4589), - [anon_sym_union] = ACTIONS(4589), - [anon_sym_pub] = ACTIONS(4589), - [anon_sym_mut] = ACTIONS(4589), - [anon_sym_enum] = ACTIONS(4589), - [anon_sym_interface] = ACTIONS(4589), - [anon_sym_QMARK] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(4589), - [anon_sym_go] = ACTIONS(4589), - [anon_sym_spawn] = ACTIONS(4589), - [anon_sym_json_DOTdecode] = ACTIONS(4589), - [anon_sym_LBRACK2] = ACTIONS(4589), - [anon_sym_TILDE] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_LT_DASH] = ACTIONS(4589), - [sym_none] = ACTIONS(4589), - [sym_true] = ACTIONS(4589), - [sym_false] = ACTIONS(4589), - [sym_nil] = ACTIONS(4589), - [anon_sym_if] = ACTIONS(4589), - [anon_sym_DOLLARif] = ACTIONS(4589), - [anon_sym_match] = ACTIONS(4589), - [anon_sym_select] = ACTIONS(4589), - [anon_sym_lock] = ACTIONS(4589), - [anon_sym_rlock] = ACTIONS(4589), - [anon_sym_unsafe] = ACTIONS(4589), - [anon_sym_sql] = ACTIONS(4589), - [sym_int_literal] = ACTIONS(4589), - [sym_float_literal] = ACTIONS(4589), - [sym_rune_literal] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4589), - [anon_sym_DQUOTE] = ACTIONS(4589), - [anon_sym_c_SQUOTE] = ACTIONS(4589), - [anon_sym_c_DQUOTE] = ACTIONS(4589), - [anon_sym_r_SQUOTE] = ACTIONS(4589), - [anon_sym_r_DQUOTE] = ACTIONS(4589), - [sym_pseudo_compile_time_identifier] = ACTIONS(4589), - [anon_sym_shared] = ACTIONS(4589), - [anon_sym_map_LBRACK] = ACTIONS(4589), - [anon_sym_chan] = ACTIONS(4589), - [anon_sym_thread] = ACTIONS(4589), - [anon_sym_atomic] = ACTIONS(4589), - [anon_sym_assert] = ACTIONS(4589), - [anon_sym_defer] = ACTIONS(4589), - [anon_sym_goto] = ACTIONS(4589), - [anon_sym_break] = ACTIONS(4589), - [anon_sym_continue] = ACTIONS(4589), - [anon_sym_return] = ACTIONS(4589), - [anon_sym_DOLLARfor] = ACTIONS(4589), - [anon_sym_for] = ACTIONS(4589), - [anon_sym_POUND] = ACTIONS(4589), - [anon_sym_asm] = ACTIONS(4589), - [anon_sym_AT_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_const] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym___global] = ACTIONS(4595), + [anon_sym_type] = ACTIONS(4595), + [anon_sym_fn] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_struct] = ACTIONS(4595), + [anon_sym_union] = ACTIONS(4595), + [anon_sym_pub] = ACTIONS(4595), + [anon_sym_mut] = ACTIONS(4595), + [anon_sym_enum] = ACTIONS(4595), + [anon_sym_interface] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_go] = ACTIONS(4595), + [anon_sym_spawn] = ACTIONS(4595), + [anon_sym_json_DOTdecode] = ACTIONS(4595), + [anon_sym_LBRACK2] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_LT_DASH] = ACTIONS(4595), + [sym_none] = ACTIONS(4595), + [sym_true] = ACTIONS(4595), + [sym_false] = ACTIONS(4595), + [sym_nil] = ACTIONS(4595), + [anon_sym_if] = ACTIONS(4595), + [anon_sym_DOLLARif] = ACTIONS(4595), + [anon_sym_match] = ACTIONS(4595), + [anon_sym_select] = ACTIONS(4595), + [anon_sym_lock] = ACTIONS(4595), + [anon_sym_rlock] = ACTIONS(4595), + [anon_sym_unsafe] = ACTIONS(4595), + [anon_sym_sql] = ACTIONS(4595), + [sym_int_literal] = ACTIONS(4595), + [sym_float_literal] = ACTIONS(4595), + [sym_rune_literal] = ACTIONS(4595), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_c_SQUOTE] = ACTIONS(4595), + [anon_sym_c_DQUOTE] = ACTIONS(4595), + [anon_sym_r_SQUOTE] = ACTIONS(4595), + [anon_sym_r_DQUOTE] = ACTIONS(4595), + [sym_pseudo_compile_time_identifier] = ACTIONS(4595), + [anon_sym_shared] = ACTIONS(4595), + [anon_sym_map_LBRACK] = ACTIONS(4595), + [anon_sym_chan] = ACTIONS(4595), + [anon_sym_thread] = ACTIONS(4595), + [anon_sym_atomic] = ACTIONS(4595), + [anon_sym_assert] = ACTIONS(4595), + [anon_sym_defer] = ACTIONS(4595), + [anon_sym_goto] = ACTIONS(4595), + [anon_sym_break] = ACTIONS(4595), + [anon_sym_continue] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4595), + [anon_sym_DOLLARfor] = ACTIONS(4595), + [anon_sym_for] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_asm] = ACTIONS(4595), + [anon_sym_AT_LBRACK] = ACTIONS(4595), }, [1794] = { [sym_line_comment] = STATE(1794), [sym_block_comment] = STATE(1794), - [ts_builtin_sym_end] = ACTIONS(4591), - [sym_identifier] = ACTIONS(4593), - [anon_sym_LF] = ACTIONS(4593), - [anon_sym_CR] = ACTIONS(4593), - [anon_sym_CR_LF] = ACTIONS(4593), + [ts_builtin_sym_end] = ACTIONS(4597), + [sym_identifier] = ACTIONS(4599), + [anon_sym_LF] = ACTIONS(4599), + [anon_sym_CR] = ACTIONS(4599), + [anon_sym_CR_LF] = ACTIONS(4599), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(4593), - [anon_sym_const] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym___global] = ACTIONS(4593), - [anon_sym_type] = ACTIONS(4593), - [anon_sym_fn] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_union] = ACTIONS(4593), - [anon_sym_pub] = ACTIONS(4593), - [anon_sym_mut] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_interface] = ACTIONS(4593), - [anon_sym_QMARK] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(4593), - [anon_sym_go] = ACTIONS(4593), - [anon_sym_spawn] = ACTIONS(4593), - [anon_sym_json_DOTdecode] = ACTIONS(4593), - [anon_sym_LBRACK2] = ACTIONS(4593), - [anon_sym_TILDE] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_LT_DASH] = ACTIONS(4593), - [sym_none] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [sym_nil] = ACTIONS(4593), - [anon_sym_if] = ACTIONS(4593), - [anon_sym_DOLLARif] = ACTIONS(4593), - [anon_sym_match] = ACTIONS(4593), - [anon_sym_select] = ACTIONS(4593), - [anon_sym_lock] = ACTIONS(4593), - [anon_sym_rlock] = ACTIONS(4593), - [anon_sym_unsafe] = ACTIONS(4593), - [anon_sym_sql] = ACTIONS(4593), - [sym_int_literal] = ACTIONS(4593), - [sym_float_literal] = ACTIONS(4593), - [sym_rune_literal] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4593), - [anon_sym_DQUOTE] = ACTIONS(4593), - [anon_sym_c_SQUOTE] = ACTIONS(4593), - [anon_sym_c_DQUOTE] = ACTIONS(4593), - [anon_sym_r_SQUOTE] = ACTIONS(4593), - [anon_sym_r_DQUOTE] = ACTIONS(4593), - [sym_pseudo_compile_time_identifier] = ACTIONS(4593), - [anon_sym_shared] = ACTIONS(4593), - [anon_sym_map_LBRACK] = ACTIONS(4593), - [anon_sym_chan] = ACTIONS(4593), - [anon_sym_thread] = ACTIONS(4593), - [anon_sym_atomic] = ACTIONS(4593), - [anon_sym_assert] = ACTIONS(4593), - [anon_sym_defer] = ACTIONS(4593), - [anon_sym_goto] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_continue] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_DOLLARfor] = ACTIONS(4593), - [anon_sym_for] = ACTIONS(4593), - [anon_sym_POUND] = ACTIONS(4593), - [anon_sym_asm] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_const] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym___global] = ACTIONS(4599), + [anon_sym_type] = ACTIONS(4599), + [anon_sym_fn] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [anon_sym_struct] = ACTIONS(4599), + [anon_sym_union] = ACTIONS(4599), + [anon_sym_pub] = ACTIONS(4599), + [anon_sym_mut] = ACTIONS(4599), + [anon_sym_enum] = ACTIONS(4599), + [anon_sym_interface] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_go] = ACTIONS(4599), + [anon_sym_spawn] = ACTIONS(4599), + [anon_sym_json_DOTdecode] = ACTIONS(4599), + [anon_sym_LBRACK2] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4599), + [anon_sym_LT_DASH] = ACTIONS(4599), + [sym_none] = ACTIONS(4599), + [sym_true] = ACTIONS(4599), + [sym_false] = ACTIONS(4599), + [sym_nil] = ACTIONS(4599), + [anon_sym_if] = ACTIONS(4599), + [anon_sym_DOLLARif] = ACTIONS(4599), + [anon_sym_match] = ACTIONS(4599), + [anon_sym_select] = ACTIONS(4599), + [anon_sym_lock] = ACTIONS(4599), + [anon_sym_rlock] = ACTIONS(4599), + [anon_sym_unsafe] = ACTIONS(4599), + [anon_sym_sql] = ACTIONS(4599), + [sym_int_literal] = ACTIONS(4599), + [sym_float_literal] = ACTIONS(4599), + [sym_rune_literal] = ACTIONS(4599), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_c_SQUOTE] = ACTIONS(4599), + [anon_sym_c_DQUOTE] = ACTIONS(4599), + [anon_sym_r_SQUOTE] = ACTIONS(4599), + [anon_sym_r_DQUOTE] = ACTIONS(4599), + [sym_pseudo_compile_time_identifier] = ACTIONS(4599), + [anon_sym_shared] = ACTIONS(4599), + [anon_sym_map_LBRACK] = ACTIONS(4599), + [anon_sym_chan] = ACTIONS(4599), + [anon_sym_thread] = ACTIONS(4599), + [anon_sym_atomic] = ACTIONS(4599), + [anon_sym_assert] = ACTIONS(4599), + [anon_sym_defer] = ACTIONS(4599), + [anon_sym_goto] = ACTIONS(4599), + [anon_sym_break] = ACTIONS(4599), + [anon_sym_continue] = ACTIONS(4599), + [anon_sym_return] = ACTIONS(4599), + [anon_sym_DOLLARfor] = ACTIONS(4599), + [anon_sym_for] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_asm] = ACTIONS(4599), + [anon_sym_AT_LBRACK] = ACTIONS(4599), }, [1795] = { [sym_line_comment] = STATE(1795), [sym_block_comment] = STATE(1795), - [ts_builtin_sym_end] = ACTIONS(4595), - [sym_identifier] = ACTIONS(4597), - [anon_sym_LF] = ACTIONS(4597), - [anon_sym_CR] = ACTIONS(4597), - [anon_sym_CR_LF] = ACTIONS(4597), + [ts_builtin_sym_end] = ACTIONS(4601), + [sym_identifier] = ACTIONS(4603), + [anon_sym_LF] = ACTIONS(4603), + [anon_sym_CR] = ACTIONS(4603), + [anon_sym_CR_LF] = ACTIONS(4603), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_const] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym___global] = ACTIONS(4597), - [anon_sym_type] = ACTIONS(4597), - [anon_sym_fn] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_union] = ACTIONS(4597), - [anon_sym_pub] = ACTIONS(4597), - [anon_sym_mut] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_interface] = ACTIONS(4597), - [anon_sym_QMARK] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4597), - [anon_sym_go] = ACTIONS(4597), - [anon_sym_spawn] = ACTIONS(4597), - [anon_sym_json_DOTdecode] = ACTIONS(4597), - [anon_sym_LBRACK2] = ACTIONS(4597), - [anon_sym_TILDE] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_LT_DASH] = ACTIONS(4597), - [sym_none] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [sym_nil] = ACTIONS(4597), - [anon_sym_if] = ACTIONS(4597), - [anon_sym_DOLLARif] = ACTIONS(4597), - [anon_sym_match] = ACTIONS(4597), - [anon_sym_select] = ACTIONS(4597), - [anon_sym_lock] = ACTIONS(4597), - [anon_sym_rlock] = ACTIONS(4597), - [anon_sym_unsafe] = ACTIONS(4597), - [anon_sym_sql] = ACTIONS(4597), - [sym_int_literal] = ACTIONS(4597), - [sym_float_literal] = ACTIONS(4597), - [sym_rune_literal] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(4597), - [anon_sym_c_SQUOTE] = ACTIONS(4597), - [anon_sym_c_DQUOTE] = ACTIONS(4597), - [anon_sym_r_SQUOTE] = ACTIONS(4597), - [anon_sym_r_DQUOTE] = ACTIONS(4597), - [sym_pseudo_compile_time_identifier] = ACTIONS(4597), - [anon_sym_shared] = ACTIONS(4597), - [anon_sym_map_LBRACK] = ACTIONS(4597), - [anon_sym_chan] = ACTIONS(4597), - [anon_sym_thread] = ACTIONS(4597), - [anon_sym_atomic] = ACTIONS(4597), - [anon_sym_assert] = ACTIONS(4597), - [anon_sym_defer] = ACTIONS(4597), - [anon_sym_goto] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_continue] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_DOLLARfor] = ACTIONS(4597), - [anon_sym_for] = ACTIONS(4597), - [anon_sym_POUND] = ACTIONS(4597), - [anon_sym_asm] = ACTIONS(4597), - [anon_sym_AT_LBRACK] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_const] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym___global] = ACTIONS(4603), + [anon_sym_type] = ACTIONS(4603), + [anon_sym_fn] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [anon_sym_struct] = ACTIONS(4603), + [anon_sym_union] = ACTIONS(4603), + [anon_sym_pub] = ACTIONS(4603), + [anon_sym_mut] = ACTIONS(4603), + [anon_sym_enum] = ACTIONS(4603), + [anon_sym_interface] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_go] = ACTIONS(4603), + [anon_sym_spawn] = ACTIONS(4603), + [anon_sym_json_DOTdecode] = ACTIONS(4603), + [anon_sym_LBRACK2] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4603), + [anon_sym_LT_DASH] = ACTIONS(4603), + [sym_none] = ACTIONS(4603), + [sym_true] = ACTIONS(4603), + [sym_false] = ACTIONS(4603), + [sym_nil] = ACTIONS(4603), + [anon_sym_if] = ACTIONS(4603), + [anon_sym_DOLLARif] = ACTIONS(4603), + [anon_sym_match] = ACTIONS(4603), + [anon_sym_select] = ACTIONS(4603), + [anon_sym_lock] = ACTIONS(4603), + [anon_sym_rlock] = ACTIONS(4603), + [anon_sym_unsafe] = ACTIONS(4603), + [anon_sym_sql] = ACTIONS(4603), + [sym_int_literal] = ACTIONS(4603), + [sym_float_literal] = ACTIONS(4603), + [sym_rune_literal] = ACTIONS(4603), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_c_SQUOTE] = ACTIONS(4603), + [anon_sym_c_DQUOTE] = ACTIONS(4603), + [anon_sym_r_SQUOTE] = ACTIONS(4603), + [anon_sym_r_DQUOTE] = ACTIONS(4603), + [sym_pseudo_compile_time_identifier] = ACTIONS(4603), + [anon_sym_shared] = ACTIONS(4603), + [anon_sym_map_LBRACK] = ACTIONS(4603), + [anon_sym_chan] = ACTIONS(4603), + [anon_sym_thread] = ACTIONS(4603), + [anon_sym_atomic] = ACTIONS(4603), + [anon_sym_assert] = ACTIONS(4603), + [anon_sym_defer] = ACTIONS(4603), + [anon_sym_goto] = ACTIONS(4603), + [anon_sym_break] = ACTIONS(4603), + [anon_sym_continue] = ACTIONS(4603), + [anon_sym_return] = ACTIONS(4603), + [anon_sym_DOLLARfor] = ACTIONS(4603), + [anon_sym_for] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_asm] = ACTIONS(4603), + [anon_sym_AT_LBRACK] = ACTIONS(4603), }, [1796] = { [sym_line_comment] = STATE(1796), [sym_block_comment] = STATE(1796), - [ts_builtin_sym_end] = ACTIONS(4599), - [sym_identifier] = ACTIONS(4601), - [anon_sym_LF] = ACTIONS(4601), - [anon_sym_CR] = ACTIONS(4601), - [anon_sym_CR_LF] = ACTIONS(4601), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2037), + [anon_sym_CR] = ACTIONS(2037), + [anon_sym_CR_LF] = ACTIONS(2037), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_LBRACE] = ACTIONS(4601), - [anon_sym_const] = ACTIONS(4601), - [anon_sym_LPAREN] = ACTIONS(4601), - [anon_sym___global] = ACTIONS(4601), - [anon_sym_type] = ACTIONS(4601), - [anon_sym_fn] = ACTIONS(4601), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4601), - [anon_sym_struct] = ACTIONS(4601), - [anon_sym_union] = ACTIONS(4601), - [anon_sym_pub] = ACTIONS(4601), - [anon_sym_mut] = ACTIONS(4601), - [anon_sym_enum] = ACTIONS(4601), - [anon_sym_interface] = ACTIONS(4601), - [anon_sym_QMARK] = ACTIONS(4601), - [anon_sym_BANG] = ACTIONS(4601), - [anon_sym_go] = ACTIONS(4601), - [anon_sym_spawn] = ACTIONS(4601), - [anon_sym_json_DOTdecode] = ACTIONS(4601), - [anon_sym_LBRACK2] = ACTIONS(4601), - [anon_sym_TILDE] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_LT_DASH] = ACTIONS(4601), - [sym_none] = ACTIONS(4601), - [sym_true] = ACTIONS(4601), - [sym_false] = ACTIONS(4601), - [sym_nil] = ACTIONS(4601), - [anon_sym_if] = ACTIONS(4601), - [anon_sym_DOLLARif] = ACTIONS(4601), - [anon_sym_match] = ACTIONS(4601), - [anon_sym_select] = ACTIONS(4601), - [anon_sym_lock] = ACTIONS(4601), - [anon_sym_rlock] = ACTIONS(4601), - [anon_sym_unsafe] = ACTIONS(4601), - [anon_sym_sql] = ACTIONS(4601), - [sym_int_literal] = ACTIONS(4601), - [sym_float_literal] = ACTIONS(4601), - [sym_rune_literal] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4601), - [anon_sym_DQUOTE] = ACTIONS(4601), - [anon_sym_c_SQUOTE] = ACTIONS(4601), - [anon_sym_c_DQUOTE] = ACTIONS(4601), - [anon_sym_r_SQUOTE] = ACTIONS(4601), - [anon_sym_r_DQUOTE] = ACTIONS(4601), - [sym_pseudo_compile_time_identifier] = ACTIONS(4601), - [anon_sym_shared] = ACTIONS(4601), - [anon_sym_map_LBRACK] = ACTIONS(4601), - [anon_sym_chan] = ACTIONS(4601), - [anon_sym_thread] = ACTIONS(4601), - [anon_sym_atomic] = ACTIONS(4601), - [anon_sym_assert] = ACTIONS(4601), - [anon_sym_defer] = ACTIONS(4601), - [anon_sym_goto] = ACTIONS(4601), - [anon_sym_break] = ACTIONS(4601), - [anon_sym_continue] = ACTIONS(4601), - [anon_sym_return] = ACTIONS(4601), - [anon_sym_DOLLARfor] = ACTIONS(4601), - [anon_sym_for] = ACTIONS(4601), - [anon_sym_POUND] = ACTIONS(4601), - [anon_sym_asm] = ACTIONS(4601), - [anon_sym_AT_LBRACK] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym___global] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_interface] = ACTIONS(2037), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_go] = ACTIONS(2037), + [anon_sym_spawn] = ACTIONS(2037), + [anon_sym_json_DOTdecode] = ACTIONS(2037), + [anon_sym_LBRACK2] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_LT_DASH] = ACTIONS(2037), + [sym_none] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_nil] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_DOLLARif] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_select] = ACTIONS(2037), + [anon_sym_lock] = ACTIONS(2037), + [anon_sym_rlock] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_sql] = ACTIONS(2037), + [sym_int_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + [sym_rune_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_c_SQUOTE] = ACTIONS(2037), + [anon_sym_c_DQUOTE] = ACTIONS(2037), + [anon_sym_r_SQUOTE] = ACTIONS(2037), + [anon_sym_r_DQUOTE] = ACTIONS(2037), + [sym_pseudo_compile_time_identifier] = ACTIONS(2037), + [anon_sym_shared] = ACTIONS(2037), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2037), + [anon_sym_thread] = ACTIONS(2037), + [anon_sym_atomic] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_defer] = ACTIONS(2037), + [anon_sym_goto] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_DOLLARfor] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_asm] = ACTIONS(2037), + [anon_sym_AT_LBRACK] = ACTIONS(2037), }, [1797] = { [sym_line_comment] = STATE(1797), [sym_block_comment] = STATE(1797), - [ts_builtin_sym_end] = ACTIONS(4603), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LF] = ACTIONS(4605), - [anon_sym_CR] = ACTIONS(4605), - [anon_sym_CR_LF] = ACTIONS(4605), + [ts_builtin_sym_end] = ACTIONS(4605), + [sym_identifier] = ACTIONS(4607), + [anon_sym_LF] = ACTIONS(4607), + [anon_sym_CR] = ACTIONS(4607), + [anon_sym_CR_LF] = ACTIONS(4607), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4605), - [anon_sym_const] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym___global] = ACTIONS(4605), - [anon_sym_type] = ACTIONS(4605), - [anon_sym_fn] = ACTIONS(4605), - [anon_sym_PLUS] = ACTIONS(4605), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_struct] = ACTIONS(4605), - [anon_sym_union] = ACTIONS(4605), - [anon_sym_pub] = ACTIONS(4605), - [anon_sym_mut] = ACTIONS(4605), - [anon_sym_enum] = ACTIONS(4605), - [anon_sym_interface] = ACTIONS(4605), - [anon_sym_QMARK] = ACTIONS(4605), - [anon_sym_BANG] = ACTIONS(4605), - [anon_sym_go] = ACTIONS(4605), - [anon_sym_spawn] = ACTIONS(4605), - [anon_sym_json_DOTdecode] = ACTIONS(4605), - [anon_sym_LBRACK2] = ACTIONS(4605), - [anon_sym_TILDE] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_LT_DASH] = ACTIONS(4605), - [sym_none] = ACTIONS(4605), - [sym_true] = ACTIONS(4605), - [sym_false] = ACTIONS(4605), - [sym_nil] = ACTIONS(4605), - [anon_sym_if] = ACTIONS(4605), - [anon_sym_DOLLARif] = ACTIONS(4605), - [anon_sym_match] = ACTIONS(4605), - [anon_sym_select] = ACTIONS(4605), - [anon_sym_lock] = ACTIONS(4605), - [anon_sym_rlock] = ACTIONS(4605), - [anon_sym_unsafe] = ACTIONS(4605), - [anon_sym_sql] = ACTIONS(4605), - [sym_int_literal] = ACTIONS(4605), - [sym_float_literal] = ACTIONS(4605), - [sym_rune_literal] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4605), - [anon_sym_DQUOTE] = ACTIONS(4605), - [anon_sym_c_SQUOTE] = ACTIONS(4605), - [anon_sym_c_DQUOTE] = ACTIONS(4605), - [anon_sym_r_SQUOTE] = ACTIONS(4605), - [anon_sym_r_DQUOTE] = ACTIONS(4605), - [sym_pseudo_compile_time_identifier] = ACTIONS(4605), - [anon_sym_shared] = ACTIONS(4605), - [anon_sym_map_LBRACK] = ACTIONS(4605), - [anon_sym_chan] = ACTIONS(4605), - [anon_sym_thread] = ACTIONS(4605), - [anon_sym_atomic] = ACTIONS(4605), - [anon_sym_assert] = ACTIONS(4605), - [anon_sym_defer] = ACTIONS(4605), - [anon_sym_goto] = ACTIONS(4605), - [anon_sym_break] = ACTIONS(4605), - [anon_sym_continue] = ACTIONS(4605), - [anon_sym_return] = ACTIONS(4605), - [anon_sym_DOLLARfor] = ACTIONS(4605), - [anon_sym_for] = ACTIONS(4605), - [anon_sym_POUND] = ACTIONS(4605), - [anon_sym_asm] = ACTIONS(4605), - [anon_sym_AT_LBRACK] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_const] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym___global] = ACTIONS(4607), + [anon_sym_type] = ACTIONS(4607), + [anon_sym_fn] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [anon_sym_struct] = ACTIONS(4607), + [anon_sym_union] = ACTIONS(4607), + [anon_sym_pub] = ACTIONS(4607), + [anon_sym_mut] = ACTIONS(4607), + [anon_sym_enum] = ACTIONS(4607), + [anon_sym_interface] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_go] = ACTIONS(4607), + [anon_sym_spawn] = ACTIONS(4607), + [anon_sym_json_DOTdecode] = ACTIONS(4607), + [anon_sym_LBRACK2] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4607), + [anon_sym_LT_DASH] = ACTIONS(4607), + [sym_none] = ACTIONS(4607), + [sym_true] = ACTIONS(4607), + [sym_false] = ACTIONS(4607), + [sym_nil] = ACTIONS(4607), + [anon_sym_if] = ACTIONS(4607), + [anon_sym_DOLLARif] = ACTIONS(4607), + [anon_sym_match] = ACTIONS(4607), + [anon_sym_select] = ACTIONS(4607), + [anon_sym_lock] = ACTIONS(4607), + [anon_sym_rlock] = ACTIONS(4607), + [anon_sym_unsafe] = ACTIONS(4607), + [anon_sym_sql] = ACTIONS(4607), + [sym_int_literal] = ACTIONS(4607), + [sym_float_literal] = ACTIONS(4607), + [sym_rune_literal] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4607), + [anon_sym_DQUOTE] = ACTIONS(4607), + [anon_sym_c_SQUOTE] = ACTIONS(4607), + [anon_sym_c_DQUOTE] = ACTIONS(4607), + [anon_sym_r_SQUOTE] = ACTIONS(4607), + [anon_sym_r_DQUOTE] = ACTIONS(4607), + [sym_pseudo_compile_time_identifier] = ACTIONS(4607), + [anon_sym_shared] = ACTIONS(4607), + [anon_sym_map_LBRACK] = ACTIONS(4607), + [anon_sym_chan] = ACTIONS(4607), + [anon_sym_thread] = ACTIONS(4607), + [anon_sym_atomic] = ACTIONS(4607), + [anon_sym_assert] = ACTIONS(4607), + [anon_sym_defer] = ACTIONS(4607), + [anon_sym_goto] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4607), + [anon_sym_continue] = ACTIONS(4607), + [anon_sym_return] = ACTIONS(4607), + [anon_sym_DOLLARfor] = ACTIONS(4607), + [anon_sym_for] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_asm] = ACTIONS(4607), + [anon_sym_AT_LBRACK] = ACTIONS(4607), }, [1798] = { [sym_line_comment] = STATE(1798), [sym_block_comment] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(4607), - [sym_identifier] = ACTIONS(4609), - [anon_sym_LF] = ACTIONS(4609), - [anon_sym_CR] = ACTIONS(4609), - [anon_sym_CR_LF] = ACTIONS(4609), + [ts_builtin_sym_end] = ACTIONS(4609), + [sym_identifier] = ACTIONS(4611), + [anon_sym_LF] = ACTIONS(4611), + [anon_sym_CR] = ACTIONS(4611), + [anon_sym_CR_LF] = ACTIONS(4611), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_LBRACE] = ACTIONS(4609), - [anon_sym_const] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4609), - [anon_sym___global] = ACTIONS(4609), - [anon_sym_type] = ACTIONS(4609), - [anon_sym_fn] = ACTIONS(4609), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_struct] = ACTIONS(4609), - [anon_sym_union] = ACTIONS(4609), - [anon_sym_pub] = ACTIONS(4609), - [anon_sym_mut] = ACTIONS(4609), - [anon_sym_enum] = ACTIONS(4609), - [anon_sym_interface] = ACTIONS(4609), - [anon_sym_QMARK] = ACTIONS(4609), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_go] = ACTIONS(4609), - [anon_sym_spawn] = ACTIONS(4609), - [anon_sym_json_DOTdecode] = ACTIONS(4609), - [anon_sym_LBRACK2] = ACTIONS(4609), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym_AMP] = ACTIONS(4609), - [anon_sym_LT_DASH] = ACTIONS(4609), - [sym_none] = ACTIONS(4609), - [sym_true] = ACTIONS(4609), - [sym_false] = ACTIONS(4609), - [sym_nil] = ACTIONS(4609), - [anon_sym_if] = ACTIONS(4609), - [anon_sym_DOLLARif] = ACTIONS(4609), - [anon_sym_match] = ACTIONS(4609), - [anon_sym_select] = ACTIONS(4609), - [anon_sym_lock] = ACTIONS(4609), - [anon_sym_rlock] = ACTIONS(4609), - [anon_sym_unsafe] = ACTIONS(4609), - [anon_sym_sql] = ACTIONS(4609), - [sym_int_literal] = ACTIONS(4609), - [sym_float_literal] = ACTIONS(4609), - [sym_rune_literal] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(4609), - [anon_sym_c_SQUOTE] = ACTIONS(4609), - [anon_sym_c_DQUOTE] = ACTIONS(4609), - [anon_sym_r_SQUOTE] = ACTIONS(4609), - [anon_sym_r_DQUOTE] = ACTIONS(4609), - [sym_pseudo_compile_time_identifier] = ACTIONS(4609), - [anon_sym_shared] = ACTIONS(4609), - [anon_sym_map_LBRACK] = ACTIONS(4609), - [anon_sym_chan] = ACTIONS(4609), - [anon_sym_thread] = ACTIONS(4609), - [anon_sym_atomic] = ACTIONS(4609), - [anon_sym_assert] = ACTIONS(4609), - [anon_sym_defer] = ACTIONS(4609), - [anon_sym_goto] = ACTIONS(4609), - [anon_sym_break] = ACTIONS(4609), - [anon_sym_continue] = ACTIONS(4609), - [anon_sym_return] = ACTIONS(4609), - [anon_sym_DOLLARfor] = ACTIONS(4609), - [anon_sym_for] = ACTIONS(4609), - [anon_sym_POUND] = ACTIONS(4609), - [anon_sym_asm] = ACTIONS(4609), - [anon_sym_AT_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_const] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym___global] = ACTIONS(4611), + [anon_sym_type] = ACTIONS(4611), + [anon_sym_fn] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4611), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_struct] = ACTIONS(4611), + [anon_sym_union] = ACTIONS(4611), + [anon_sym_pub] = ACTIONS(4611), + [anon_sym_mut] = ACTIONS(4611), + [anon_sym_enum] = ACTIONS(4611), + [anon_sym_interface] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [anon_sym_BANG] = ACTIONS(4611), + [anon_sym_go] = ACTIONS(4611), + [anon_sym_spawn] = ACTIONS(4611), + [anon_sym_json_DOTdecode] = ACTIONS(4611), + [anon_sym_LBRACK2] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4611), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4611), + [anon_sym_LT_DASH] = ACTIONS(4611), + [sym_none] = ACTIONS(4611), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_nil] = ACTIONS(4611), + [anon_sym_if] = ACTIONS(4611), + [anon_sym_DOLLARif] = ACTIONS(4611), + [anon_sym_match] = ACTIONS(4611), + [anon_sym_select] = ACTIONS(4611), + [anon_sym_lock] = ACTIONS(4611), + [anon_sym_rlock] = ACTIONS(4611), + [anon_sym_unsafe] = ACTIONS(4611), + [anon_sym_sql] = ACTIONS(4611), + [sym_int_literal] = ACTIONS(4611), + [sym_float_literal] = ACTIONS(4611), + [sym_rune_literal] = ACTIONS(4611), + [anon_sym_SQUOTE] = ACTIONS(4611), + [anon_sym_DQUOTE] = ACTIONS(4611), + [anon_sym_c_SQUOTE] = ACTIONS(4611), + [anon_sym_c_DQUOTE] = ACTIONS(4611), + [anon_sym_r_SQUOTE] = ACTIONS(4611), + [anon_sym_r_DQUOTE] = ACTIONS(4611), + [sym_pseudo_compile_time_identifier] = ACTIONS(4611), + [anon_sym_shared] = ACTIONS(4611), + [anon_sym_map_LBRACK] = ACTIONS(4611), + [anon_sym_chan] = ACTIONS(4611), + [anon_sym_thread] = ACTIONS(4611), + [anon_sym_atomic] = ACTIONS(4611), + [anon_sym_assert] = ACTIONS(4611), + [anon_sym_defer] = ACTIONS(4611), + [anon_sym_goto] = ACTIONS(4611), + [anon_sym_break] = ACTIONS(4611), + [anon_sym_continue] = ACTIONS(4611), + [anon_sym_return] = ACTIONS(4611), + [anon_sym_DOLLARfor] = ACTIONS(4611), + [anon_sym_for] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_asm] = ACTIONS(4611), + [anon_sym_AT_LBRACK] = ACTIONS(4611), }, [1799] = { [sym_line_comment] = STATE(1799), [sym_block_comment] = STATE(1799), - [ts_builtin_sym_end] = ACTIONS(4611), - [sym_identifier] = ACTIONS(4613), - [anon_sym_LF] = ACTIONS(4613), - [anon_sym_CR] = ACTIONS(4613), - [anon_sym_CR_LF] = ACTIONS(4613), + [ts_builtin_sym_end] = ACTIONS(4613), + [sym_identifier] = ACTIONS(4615), + [anon_sym_LF] = ACTIONS(4615), + [anon_sym_CR] = ACTIONS(4615), + [anon_sym_CR_LF] = ACTIONS(4615), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_const] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym___global] = ACTIONS(4613), - [anon_sym_type] = ACTIONS(4613), - [anon_sym_fn] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_struct] = ACTIONS(4613), - [anon_sym_union] = ACTIONS(4613), - [anon_sym_pub] = ACTIONS(4613), - [anon_sym_mut] = ACTIONS(4613), - [anon_sym_enum] = ACTIONS(4613), - [anon_sym_interface] = ACTIONS(4613), - [anon_sym_QMARK] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_go] = ACTIONS(4613), - [anon_sym_spawn] = ACTIONS(4613), - [anon_sym_json_DOTdecode] = ACTIONS(4613), - [anon_sym_LBRACK2] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_LT_DASH] = ACTIONS(4613), - [sym_none] = ACTIONS(4613), - [sym_true] = ACTIONS(4613), - [sym_false] = ACTIONS(4613), - [sym_nil] = ACTIONS(4613), - [anon_sym_if] = ACTIONS(4613), - [anon_sym_DOLLARif] = ACTIONS(4613), - [anon_sym_match] = ACTIONS(4613), - [anon_sym_select] = ACTIONS(4613), - [anon_sym_lock] = ACTIONS(4613), - [anon_sym_rlock] = ACTIONS(4613), - [anon_sym_unsafe] = ACTIONS(4613), - [anon_sym_sql] = ACTIONS(4613), - [sym_int_literal] = ACTIONS(4613), - [sym_float_literal] = ACTIONS(4613), - [sym_rune_literal] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DQUOTE] = ACTIONS(4613), - [anon_sym_c_SQUOTE] = ACTIONS(4613), - [anon_sym_c_DQUOTE] = ACTIONS(4613), - [anon_sym_r_SQUOTE] = ACTIONS(4613), - [anon_sym_r_DQUOTE] = ACTIONS(4613), - [sym_pseudo_compile_time_identifier] = ACTIONS(4613), - [anon_sym_shared] = ACTIONS(4613), - [anon_sym_map_LBRACK] = ACTIONS(4613), - [anon_sym_chan] = ACTIONS(4613), - [anon_sym_thread] = ACTIONS(4613), - [anon_sym_atomic] = ACTIONS(4613), - [anon_sym_assert] = ACTIONS(4613), - [anon_sym_defer] = ACTIONS(4613), - [anon_sym_goto] = ACTIONS(4613), - [anon_sym_break] = ACTIONS(4613), - [anon_sym_continue] = ACTIONS(4613), - [anon_sym_return] = ACTIONS(4613), - [anon_sym_DOLLARfor] = ACTIONS(4613), - [anon_sym_for] = ACTIONS(4613), - [anon_sym_POUND] = ACTIONS(4613), - [anon_sym_asm] = ACTIONS(4613), - [anon_sym_AT_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4615), + [anon_sym_const] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym___global] = ACTIONS(4615), + [anon_sym_type] = ACTIONS(4615), + [anon_sym_fn] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [anon_sym_struct] = ACTIONS(4615), + [anon_sym_union] = ACTIONS(4615), + [anon_sym_pub] = ACTIONS(4615), + [anon_sym_mut] = ACTIONS(4615), + [anon_sym_enum] = ACTIONS(4615), + [anon_sym_interface] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_go] = ACTIONS(4615), + [anon_sym_spawn] = ACTIONS(4615), + [anon_sym_json_DOTdecode] = ACTIONS(4615), + [anon_sym_LBRACK2] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4615), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(4615), + [anon_sym_LT_DASH] = ACTIONS(4615), + [sym_none] = ACTIONS(4615), + [sym_true] = ACTIONS(4615), + [sym_false] = ACTIONS(4615), + [sym_nil] = ACTIONS(4615), + [anon_sym_if] = ACTIONS(4615), + [anon_sym_DOLLARif] = ACTIONS(4615), + [anon_sym_match] = ACTIONS(4615), + [anon_sym_select] = ACTIONS(4615), + [anon_sym_lock] = ACTIONS(4615), + [anon_sym_rlock] = ACTIONS(4615), + [anon_sym_unsafe] = ACTIONS(4615), + [anon_sym_sql] = ACTIONS(4615), + [sym_int_literal] = ACTIONS(4615), + [sym_float_literal] = ACTIONS(4615), + [sym_rune_literal] = ACTIONS(4615), + [anon_sym_SQUOTE] = ACTIONS(4615), + [anon_sym_DQUOTE] = ACTIONS(4615), + [anon_sym_c_SQUOTE] = ACTIONS(4615), + [anon_sym_c_DQUOTE] = ACTIONS(4615), + [anon_sym_r_SQUOTE] = ACTIONS(4615), + [anon_sym_r_DQUOTE] = ACTIONS(4615), + [sym_pseudo_compile_time_identifier] = ACTIONS(4615), + [anon_sym_shared] = ACTIONS(4615), + [anon_sym_map_LBRACK] = ACTIONS(4615), + [anon_sym_chan] = ACTIONS(4615), + [anon_sym_thread] = ACTIONS(4615), + [anon_sym_atomic] = ACTIONS(4615), + [anon_sym_assert] = ACTIONS(4615), + [anon_sym_defer] = ACTIONS(4615), + [anon_sym_goto] = ACTIONS(4615), + [anon_sym_break] = ACTIONS(4615), + [anon_sym_continue] = ACTIONS(4615), + [anon_sym_return] = ACTIONS(4615), + [anon_sym_DOLLARfor] = ACTIONS(4615), + [anon_sym_for] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_asm] = ACTIONS(4615), + [anon_sym_AT_LBRACK] = ACTIONS(4615), }, [1800] = { [sym_line_comment] = STATE(1800), [sym_block_comment] = STATE(1800), - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(4617), + [sym_identifier] = ACTIONS(4619), + [anon_sym_LF] = ACTIONS(4619), + [anon_sym_CR] = ACTIONS(4619), + [anon_sym_CR_LF] = ACTIONS(4619), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [anon_sym_c_SQUOTE] = ACTIONS(2997), - [anon_sym_c_DQUOTE] = ACTIONS(2997), - [anon_sym_r_SQUOTE] = ACTIONS(2997), - [anon_sym_r_DQUOTE] = ACTIONS(2997), - [sym_pseudo_compile_time_identifier] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_const] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym___global] = ACTIONS(4619), + [anon_sym_type] = ACTIONS(4619), + [anon_sym_fn] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [anon_sym_struct] = ACTIONS(4619), + [anon_sym_union] = ACTIONS(4619), + [anon_sym_pub] = ACTIONS(4619), + [anon_sym_mut] = ACTIONS(4619), + [anon_sym_enum] = ACTIONS(4619), + [anon_sym_interface] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_go] = ACTIONS(4619), + [anon_sym_spawn] = ACTIONS(4619), + [anon_sym_json_DOTdecode] = ACTIONS(4619), + [anon_sym_LBRACK2] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4619), + [anon_sym_LT_DASH] = ACTIONS(4619), + [sym_none] = ACTIONS(4619), + [sym_true] = ACTIONS(4619), + [sym_false] = ACTIONS(4619), + [sym_nil] = ACTIONS(4619), + [anon_sym_if] = ACTIONS(4619), + [anon_sym_DOLLARif] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(4619), + [anon_sym_select] = ACTIONS(4619), + [anon_sym_lock] = ACTIONS(4619), + [anon_sym_rlock] = ACTIONS(4619), + [anon_sym_unsafe] = ACTIONS(4619), + [anon_sym_sql] = ACTIONS(4619), + [sym_int_literal] = ACTIONS(4619), + [sym_float_literal] = ACTIONS(4619), + [sym_rune_literal] = ACTIONS(4619), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_c_SQUOTE] = ACTIONS(4619), + [anon_sym_c_DQUOTE] = ACTIONS(4619), + [anon_sym_r_SQUOTE] = ACTIONS(4619), + [anon_sym_r_DQUOTE] = ACTIONS(4619), + [sym_pseudo_compile_time_identifier] = ACTIONS(4619), + [anon_sym_shared] = ACTIONS(4619), + [anon_sym_map_LBRACK] = ACTIONS(4619), + [anon_sym_chan] = ACTIONS(4619), + [anon_sym_thread] = ACTIONS(4619), + [anon_sym_atomic] = ACTIONS(4619), + [anon_sym_assert] = ACTIONS(4619), + [anon_sym_defer] = ACTIONS(4619), + [anon_sym_goto] = ACTIONS(4619), + [anon_sym_break] = ACTIONS(4619), + [anon_sym_continue] = ACTIONS(4619), + [anon_sym_return] = ACTIONS(4619), + [anon_sym_DOLLARfor] = ACTIONS(4619), + [anon_sym_for] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_asm] = ACTIONS(4619), + [anon_sym_AT_LBRACK] = ACTIONS(4619), }, [1801] = { [sym_line_comment] = STATE(1801), [sym_block_comment] = STATE(1801), - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_LF] = ACTIONS(2815), - [anon_sym_CR] = ACTIONS(2815), - [anon_sym_CR_LF] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym___global] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_pub] = ACTIONS(2815), - [anon_sym_mut] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_interface] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_go] = ACTIONS(2815), - [anon_sym_spawn] = ACTIONS(2815), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_DOLLARif] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_select] = ACTIONS(2815), - [anon_sym_lock] = ACTIONS(2815), - [anon_sym_rlock] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_sql] = ACTIONS(2815), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2815), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - [anon_sym_assert] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_goto] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_DOLLARfor] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_asm] = ACTIONS(2815), - [anon_sym_AT_LBRACK] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_c_SQUOTE] = ACTIONS(2669), + [anon_sym_c_DQUOTE] = ACTIONS(2669), + [anon_sym_r_SQUOTE] = ACTIONS(2669), + [anon_sym_r_DQUOTE] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), }, [1802] = { [sym_line_comment] = STATE(1802), [sym_block_comment] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(4615), - [sym_identifier] = ACTIONS(4617), - [anon_sym_LF] = ACTIONS(4617), - [anon_sym_CR] = ACTIONS(4617), - [anon_sym_CR_LF] = ACTIONS(4617), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4617), - [anon_sym_const] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym___global] = ACTIONS(4617), - [anon_sym_type] = ACTIONS(4617), - [anon_sym_fn] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_STAR] = ACTIONS(4617), - [anon_sym_struct] = ACTIONS(4617), - [anon_sym_union] = ACTIONS(4617), - [anon_sym_pub] = ACTIONS(4617), - [anon_sym_mut] = ACTIONS(4617), - [anon_sym_enum] = ACTIONS(4617), - [anon_sym_interface] = ACTIONS(4617), - [anon_sym_QMARK] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(4617), - [anon_sym_go] = ACTIONS(4617), - [anon_sym_spawn] = ACTIONS(4617), - [anon_sym_json_DOTdecode] = ACTIONS(4617), - [anon_sym_LBRACK2] = ACTIONS(4617), - [anon_sym_TILDE] = ACTIONS(4617), - [anon_sym_CARET] = ACTIONS(4617), - [anon_sym_AMP] = ACTIONS(4617), - [anon_sym_LT_DASH] = ACTIONS(4617), - [sym_none] = ACTIONS(4617), - [sym_true] = ACTIONS(4617), - [sym_false] = ACTIONS(4617), - [sym_nil] = ACTIONS(4617), - [anon_sym_if] = ACTIONS(4617), - [anon_sym_DOLLARif] = ACTIONS(4617), - [anon_sym_match] = ACTIONS(4617), - [anon_sym_select] = ACTIONS(4617), - [anon_sym_lock] = ACTIONS(4617), - [anon_sym_rlock] = ACTIONS(4617), - [anon_sym_unsafe] = ACTIONS(4617), - [anon_sym_sql] = ACTIONS(4617), - [sym_int_literal] = ACTIONS(4617), - [sym_float_literal] = ACTIONS(4617), - [sym_rune_literal] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4617), - [anon_sym_DQUOTE] = ACTIONS(4617), - [anon_sym_c_SQUOTE] = ACTIONS(4617), - [anon_sym_c_DQUOTE] = ACTIONS(4617), - [anon_sym_r_SQUOTE] = ACTIONS(4617), - [anon_sym_r_DQUOTE] = ACTIONS(4617), - [sym_pseudo_compile_time_identifier] = ACTIONS(4617), - [anon_sym_shared] = ACTIONS(4617), - [anon_sym_map_LBRACK] = ACTIONS(4617), - [anon_sym_chan] = ACTIONS(4617), - [anon_sym_thread] = ACTIONS(4617), - [anon_sym_atomic] = ACTIONS(4617), - [anon_sym_assert] = ACTIONS(4617), - [anon_sym_defer] = ACTIONS(4617), - [anon_sym_goto] = ACTIONS(4617), - [anon_sym_break] = ACTIONS(4617), - [anon_sym_continue] = ACTIONS(4617), - [anon_sym_return] = ACTIONS(4617), - [anon_sym_DOLLARfor] = ACTIONS(4617), - [anon_sym_for] = ACTIONS(4617), - [anon_sym_POUND] = ACTIONS(4617), - [anon_sym_asm] = ACTIONS(4617), - [anon_sym_AT_LBRACK] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), }, [1803] = { [sym_line_comment] = STATE(1803), [sym_block_comment] = STATE(1803), - [ts_builtin_sym_end] = ACTIONS(4619), - [sym_identifier] = ACTIONS(4621), - [anon_sym_LF] = ACTIONS(4621), - [anon_sym_CR] = ACTIONS(4621), - [anon_sym_CR_LF] = ACTIONS(4621), + [ts_builtin_sym_end] = ACTIONS(4621), + [sym_identifier] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4623), + [anon_sym_CR] = ACTIONS(4623), + [anon_sym_CR_LF] = ACTIONS(4623), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4621), - [anon_sym_const] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym___global] = ACTIONS(4621), - [anon_sym_type] = ACTIONS(4621), - [anon_sym_fn] = ACTIONS(4621), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [anon_sym_struct] = ACTIONS(4621), - [anon_sym_union] = ACTIONS(4621), - [anon_sym_pub] = ACTIONS(4621), - [anon_sym_mut] = ACTIONS(4621), - [anon_sym_enum] = ACTIONS(4621), - [anon_sym_interface] = ACTIONS(4621), - [anon_sym_QMARK] = ACTIONS(4621), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_go] = ACTIONS(4621), - [anon_sym_spawn] = ACTIONS(4621), - [anon_sym_json_DOTdecode] = ACTIONS(4621), - [anon_sym_LBRACK2] = ACTIONS(4621), - [anon_sym_TILDE] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_LT_DASH] = ACTIONS(4621), - [sym_none] = ACTIONS(4621), - [sym_true] = ACTIONS(4621), - [sym_false] = ACTIONS(4621), - [sym_nil] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_DOLLARif] = ACTIONS(4621), - [anon_sym_match] = ACTIONS(4621), - [anon_sym_select] = ACTIONS(4621), - [anon_sym_lock] = ACTIONS(4621), - [anon_sym_rlock] = ACTIONS(4621), - [anon_sym_unsafe] = ACTIONS(4621), - [anon_sym_sql] = ACTIONS(4621), - [sym_int_literal] = ACTIONS(4621), - [sym_float_literal] = ACTIONS(4621), - [sym_rune_literal] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4621), - [anon_sym_DQUOTE] = ACTIONS(4621), - [anon_sym_c_SQUOTE] = ACTIONS(4621), - [anon_sym_c_DQUOTE] = ACTIONS(4621), - [anon_sym_r_SQUOTE] = ACTIONS(4621), - [anon_sym_r_DQUOTE] = ACTIONS(4621), - [sym_pseudo_compile_time_identifier] = ACTIONS(4621), - [anon_sym_shared] = ACTIONS(4621), - [anon_sym_map_LBRACK] = ACTIONS(4621), - [anon_sym_chan] = ACTIONS(4621), - [anon_sym_thread] = ACTIONS(4621), - [anon_sym_atomic] = ACTIONS(4621), - [anon_sym_assert] = ACTIONS(4621), - [anon_sym_defer] = ACTIONS(4621), - [anon_sym_goto] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_DOLLARfor] = ACTIONS(4621), - [anon_sym_for] = ACTIONS(4621), - [anon_sym_POUND] = ACTIONS(4621), - [anon_sym_asm] = ACTIONS(4621), - [anon_sym_AT_LBRACK] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4623), + [anon_sym_const] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym___global] = ACTIONS(4623), + [anon_sym_type] = ACTIONS(4623), + [anon_sym_fn] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [anon_sym_struct] = ACTIONS(4623), + [anon_sym_union] = ACTIONS(4623), + [anon_sym_pub] = ACTIONS(4623), + [anon_sym_mut] = ACTIONS(4623), + [anon_sym_enum] = ACTIONS(4623), + [anon_sym_interface] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_go] = ACTIONS(4623), + [anon_sym_spawn] = ACTIONS(4623), + [anon_sym_json_DOTdecode] = ACTIONS(4623), + [anon_sym_LBRACK2] = ACTIONS(4623), + [anon_sym_TILDE] = ACTIONS(4623), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_AMP] = ACTIONS(4623), + [anon_sym_LT_DASH] = ACTIONS(4623), + [sym_none] = ACTIONS(4623), + [sym_true] = ACTIONS(4623), + [sym_false] = ACTIONS(4623), + [sym_nil] = ACTIONS(4623), + [anon_sym_if] = ACTIONS(4623), + [anon_sym_DOLLARif] = ACTIONS(4623), + [anon_sym_match] = ACTIONS(4623), + [anon_sym_select] = ACTIONS(4623), + [anon_sym_lock] = ACTIONS(4623), + [anon_sym_rlock] = ACTIONS(4623), + [anon_sym_unsafe] = ACTIONS(4623), + [anon_sym_sql] = ACTIONS(4623), + [sym_int_literal] = ACTIONS(4623), + [sym_float_literal] = ACTIONS(4623), + [sym_rune_literal] = ACTIONS(4623), + [anon_sym_SQUOTE] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_c_SQUOTE] = ACTIONS(4623), + [anon_sym_c_DQUOTE] = ACTIONS(4623), + [anon_sym_r_SQUOTE] = ACTIONS(4623), + [anon_sym_r_DQUOTE] = ACTIONS(4623), + [sym_pseudo_compile_time_identifier] = ACTIONS(4623), + [anon_sym_shared] = ACTIONS(4623), + [anon_sym_map_LBRACK] = ACTIONS(4623), + [anon_sym_chan] = ACTIONS(4623), + [anon_sym_thread] = ACTIONS(4623), + [anon_sym_atomic] = ACTIONS(4623), + [anon_sym_assert] = ACTIONS(4623), + [anon_sym_defer] = ACTIONS(4623), + [anon_sym_goto] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_continue] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_DOLLARfor] = ACTIONS(4623), + [anon_sym_for] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4623), + [anon_sym_asm] = ACTIONS(4623), + [anon_sym_AT_LBRACK] = ACTIONS(4623), }, [1804] = { [sym_line_comment] = STATE(1804), [sym_block_comment] = STATE(1804), - [ts_builtin_sym_end] = ACTIONS(4623), - [sym_identifier] = ACTIONS(4625), - [anon_sym_LF] = ACTIONS(4625), - [anon_sym_CR] = ACTIONS(4625), - [anon_sym_CR_LF] = ACTIONS(4625), + [ts_builtin_sym_end] = ACTIONS(4625), + [sym_identifier] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4627), + [anon_sym_CR] = ACTIONS(4627), + [anon_sym_CR_LF] = ACTIONS(4627), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym___global] = ACTIONS(4625), - [anon_sym_type] = ACTIONS(4625), - [anon_sym_fn] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_pub] = ACTIONS(4625), - [anon_sym_mut] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_interface] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_go] = ACTIONS(4625), - [anon_sym_spawn] = ACTIONS(4625), - [anon_sym_json_DOTdecode] = ACTIONS(4625), - [anon_sym_LBRACK2] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4625), - [anon_sym_LT_DASH] = ACTIONS(4625), - [sym_none] = ACTIONS(4625), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_nil] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_DOLLARif] = ACTIONS(4625), - [anon_sym_match] = ACTIONS(4625), - [anon_sym_select] = ACTIONS(4625), - [anon_sym_lock] = ACTIONS(4625), - [anon_sym_rlock] = ACTIONS(4625), - [anon_sym_unsafe] = ACTIONS(4625), - [anon_sym_sql] = ACTIONS(4625), - [sym_int_literal] = ACTIONS(4625), - [sym_float_literal] = ACTIONS(4625), - [sym_rune_literal] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_c_SQUOTE] = ACTIONS(4625), - [anon_sym_c_DQUOTE] = ACTIONS(4625), - [anon_sym_r_SQUOTE] = ACTIONS(4625), - [anon_sym_r_DQUOTE] = ACTIONS(4625), - [sym_pseudo_compile_time_identifier] = ACTIONS(4625), - [anon_sym_shared] = ACTIONS(4625), - [anon_sym_map_LBRACK] = ACTIONS(4625), - [anon_sym_chan] = ACTIONS(4625), - [anon_sym_thread] = ACTIONS(4625), - [anon_sym_atomic] = ACTIONS(4625), - [anon_sym_assert] = ACTIONS(4625), - [anon_sym_defer] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_DOLLARfor] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_asm] = ACTIONS(4625), - [anon_sym_AT_LBRACK] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_const] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym___global] = ACTIONS(4627), + [anon_sym_type] = ACTIONS(4627), + [anon_sym_fn] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [anon_sym_struct] = ACTIONS(4627), + [anon_sym_union] = ACTIONS(4627), + [anon_sym_pub] = ACTIONS(4627), + [anon_sym_mut] = ACTIONS(4627), + [anon_sym_enum] = ACTIONS(4627), + [anon_sym_interface] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_go] = ACTIONS(4627), + [anon_sym_spawn] = ACTIONS(4627), + [anon_sym_json_DOTdecode] = ACTIONS(4627), + [anon_sym_LBRACK2] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4627), + [anon_sym_LT_DASH] = ACTIONS(4627), + [sym_none] = ACTIONS(4627), + [sym_true] = ACTIONS(4627), + [sym_false] = ACTIONS(4627), + [sym_nil] = ACTIONS(4627), + [anon_sym_if] = ACTIONS(4627), + [anon_sym_DOLLARif] = ACTIONS(4627), + [anon_sym_match] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), + [anon_sym_lock] = ACTIONS(4627), + [anon_sym_rlock] = ACTIONS(4627), + [anon_sym_unsafe] = ACTIONS(4627), + [anon_sym_sql] = ACTIONS(4627), + [sym_int_literal] = ACTIONS(4627), + [sym_float_literal] = ACTIONS(4627), + [sym_rune_literal] = ACTIONS(4627), + [anon_sym_SQUOTE] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_c_SQUOTE] = ACTIONS(4627), + [anon_sym_c_DQUOTE] = ACTIONS(4627), + [anon_sym_r_SQUOTE] = ACTIONS(4627), + [anon_sym_r_DQUOTE] = ACTIONS(4627), + [sym_pseudo_compile_time_identifier] = ACTIONS(4627), + [anon_sym_shared] = ACTIONS(4627), + [anon_sym_map_LBRACK] = ACTIONS(4627), + [anon_sym_chan] = ACTIONS(4627), + [anon_sym_thread] = ACTIONS(4627), + [anon_sym_atomic] = ACTIONS(4627), + [anon_sym_assert] = ACTIONS(4627), + [anon_sym_defer] = ACTIONS(4627), + [anon_sym_goto] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_continue] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_DOLLARfor] = ACTIONS(4627), + [anon_sym_for] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_asm] = ACTIONS(4627), + [anon_sym_AT_LBRACK] = ACTIONS(4627), }, [1805] = { [sym_line_comment] = STATE(1805), [sym_block_comment] = STATE(1805), - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_LF] = ACTIONS(2447), - [anon_sym_CR] = ACTIONS(2447), - [anon_sym_CR_LF] = ACTIONS(2447), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym___global] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_interface] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_go] = ACTIONS(2447), - [anon_sym_spawn] = ACTIONS(2447), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2447), - [sym_none] = ACTIONS(2447), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_nil] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_DOLLARif] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_lock] = ACTIONS(2447), - [anon_sym_rlock] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_sql] = ACTIONS(2447), - [sym_int_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [anon_sym_c_SQUOTE] = ACTIONS(2447), - [anon_sym_c_DQUOTE] = ACTIONS(2447), - [anon_sym_r_SQUOTE] = ACTIONS(2447), - [anon_sym_r_DQUOTE] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2447), - [anon_sym_shared] = ACTIONS(2447), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2447), - [anon_sym_thread] = ACTIONS(2447), - [anon_sym_atomic] = ACTIONS(2447), - [anon_sym_assert] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_DOLLARfor] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(2447), - [anon_sym_asm] = ACTIONS(2447), - [anon_sym_AT_LBRACK] = ACTIONS(2447), - }, - [1806] = { - [sym_line_comment] = STATE(1806), - [sym_block_comment] = STATE(1806), - [ts_builtin_sym_end] = ACTIONS(4627), - [sym_identifier] = ACTIONS(4629), - [anon_sym_LF] = ACTIONS(4629), - [anon_sym_CR] = ACTIONS(4629), - [anon_sym_CR_LF] = ACTIONS(4629), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4629), + [sym_import_declaration] = STATE(1920), + [aux_sym_import_list_repeat1] = STATE(1783), + [ts_builtin_sym_end] = ACTIONS(4629), + [sym_identifier] = ACTIONS(4631), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(4631), [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_const] = ACTIONS(4629), + [anon_sym_const] = ACTIONS(4631), [anon_sym_LPAREN] = ACTIONS(4629), - [anon_sym___global] = ACTIONS(4629), - [anon_sym_type] = ACTIONS(4629), - [anon_sym_fn] = ACTIONS(4629), + [anon_sym___global] = ACTIONS(4631), + [anon_sym_type] = ACTIONS(4631), + [anon_sym_fn] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4629), [anon_sym_DASH] = ACTIONS(4629), [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_struct] = ACTIONS(4629), - [anon_sym_union] = ACTIONS(4629), - [anon_sym_pub] = ACTIONS(4629), - [anon_sym_mut] = ACTIONS(4629), - [anon_sym_enum] = ACTIONS(4629), - [anon_sym_interface] = ACTIONS(4629), + [anon_sym_struct] = ACTIONS(4631), + [anon_sym_union] = ACTIONS(4631), + [anon_sym_pub] = ACTIONS(4631), + [anon_sym_mut] = ACTIONS(4631), + [anon_sym_enum] = ACTIONS(4631), + [anon_sym_interface] = ACTIONS(4631), [anon_sym_QMARK] = ACTIONS(4629), [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_go] = ACTIONS(4629), - [anon_sym_spawn] = ACTIONS(4629), + [anon_sym_go] = ACTIONS(4631), + [anon_sym_spawn] = ACTIONS(4631), [anon_sym_json_DOTdecode] = ACTIONS(4629), [anon_sym_LBRACK2] = ACTIONS(4629), [anon_sym_TILDE] = ACTIONS(4629), [anon_sym_CARET] = ACTIONS(4629), [anon_sym_AMP] = ACTIONS(4629), [anon_sym_LT_DASH] = ACTIONS(4629), - [sym_none] = ACTIONS(4629), - [sym_true] = ACTIONS(4629), - [sym_false] = ACTIONS(4629), - [sym_nil] = ACTIONS(4629), - [anon_sym_if] = ACTIONS(4629), - [anon_sym_DOLLARif] = ACTIONS(4629), - [anon_sym_match] = ACTIONS(4629), - [anon_sym_select] = ACTIONS(4629), - [anon_sym_lock] = ACTIONS(4629), - [anon_sym_rlock] = ACTIONS(4629), - [anon_sym_unsafe] = ACTIONS(4629), - [anon_sym_sql] = ACTIONS(4629), - [sym_int_literal] = ACTIONS(4629), + [sym_none] = ACTIONS(4631), + [sym_true] = ACTIONS(4631), + [sym_false] = ACTIONS(4631), + [sym_nil] = ACTIONS(4631), + [anon_sym_if] = ACTIONS(4631), + [anon_sym_DOLLARif] = ACTIONS(4631), + [anon_sym_match] = ACTIONS(4631), + [anon_sym_select] = ACTIONS(4631), + [anon_sym_lock] = ACTIONS(4631), + [anon_sym_rlock] = ACTIONS(4631), + [anon_sym_unsafe] = ACTIONS(4631), + [anon_sym_sql] = ACTIONS(4631), + [sym_int_literal] = ACTIONS(4631), [sym_float_literal] = ACTIONS(4629), [sym_rune_literal] = ACTIONS(4629), [anon_sym_SQUOTE] = ACTIONS(4629), @@ -213128,1023 +213291,1398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_DQUOTE] = ACTIONS(4629), [anon_sym_r_SQUOTE] = ACTIONS(4629), [anon_sym_r_DQUOTE] = ACTIONS(4629), - [sym_pseudo_compile_time_identifier] = ACTIONS(4629), - [anon_sym_shared] = ACTIONS(4629), + [sym_pseudo_compile_time_identifier] = ACTIONS(4631), + [anon_sym_shared] = ACTIONS(4631), [anon_sym_map_LBRACK] = ACTIONS(4629), - [anon_sym_chan] = ACTIONS(4629), - [anon_sym_thread] = ACTIONS(4629), - [anon_sym_atomic] = ACTIONS(4629), - [anon_sym_assert] = ACTIONS(4629), - [anon_sym_defer] = ACTIONS(4629), - [anon_sym_goto] = ACTIONS(4629), - [anon_sym_break] = ACTIONS(4629), - [anon_sym_continue] = ACTIONS(4629), - [anon_sym_return] = ACTIONS(4629), - [anon_sym_DOLLARfor] = ACTIONS(4629), - [anon_sym_for] = ACTIONS(4629), + [anon_sym_chan] = ACTIONS(4631), + [anon_sym_thread] = ACTIONS(4631), + [anon_sym_atomic] = ACTIONS(4631), + [anon_sym_assert] = ACTIONS(4631), + [anon_sym_defer] = ACTIONS(4631), + [anon_sym_goto] = ACTIONS(4631), + [anon_sym_break] = ACTIONS(4631), + [anon_sym_continue] = ACTIONS(4631), + [anon_sym_return] = ACTIONS(4631), + [anon_sym_DOLLARfor] = ACTIONS(4631), + [anon_sym_for] = ACTIONS(4631), [anon_sym_POUND] = ACTIONS(4629), - [anon_sym_asm] = ACTIONS(4629), + [anon_sym_asm] = ACTIONS(4631), [anon_sym_AT_LBRACK] = ACTIONS(4629), }, - [1807] = { - [sym_line_comment] = STATE(1807), - [sym_block_comment] = STATE(1807), - [ts_builtin_sym_end] = ACTIONS(4631), - [sym_identifier] = ACTIONS(4633), - [anon_sym_LF] = ACTIONS(4633), - [anon_sym_CR] = ACTIONS(4633), - [anon_sym_CR_LF] = ACTIONS(4633), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_LBRACE] = ACTIONS(4633), - [anon_sym_const] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4633), - [anon_sym___global] = ACTIONS(4633), - [anon_sym_type] = ACTIONS(4633), - [anon_sym_fn] = ACTIONS(4633), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_struct] = ACTIONS(4633), - [anon_sym_union] = ACTIONS(4633), - [anon_sym_pub] = ACTIONS(4633), - [anon_sym_mut] = ACTIONS(4633), - [anon_sym_enum] = ACTIONS(4633), - [anon_sym_interface] = ACTIONS(4633), - [anon_sym_QMARK] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_go] = ACTIONS(4633), - [anon_sym_spawn] = ACTIONS(4633), - [anon_sym_json_DOTdecode] = ACTIONS(4633), - [anon_sym_LBRACK2] = ACTIONS(4633), - [anon_sym_TILDE] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym_AMP] = ACTIONS(4633), - [anon_sym_LT_DASH] = ACTIONS(4633), - [sym_none] = ACTIONS(4633), - [sym_true] = ACTIONS(4633), - [sym_false] = ACTIONS(4633), - [sym_nil] = ACTIONS(4633), - [anon_sym_if] = ACTIONS(4633), - [anon_sym_DOLLARif] = ACTIONS(4633), - [anon_sym_match] = ACTIONS(4633), - [anon_sym_select] = ACTIONS(4633), - [anon_sym_lock] = ACTIONS(4633), - [anon_sym_rlock] = ACTIONS(4633), - [anon_sym_unsafe] = ACTIONS(4633), - [anon_sym_sql] = ACTIONS(4633), - [sym_int_literal] = ACTIONS(4633), - [sym_float_literal] = ACTIONS(4633), - [sym_rune_literal] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [anon_sym_DQUOTE] = ACTIONS(4633), - [anon_sym_c_SQUOTE] = ACTIONS(4633), - [anon_sym_c_DQUOTE] = ACTIONS(4633), - [anon_sym_r_SQUOTE] = ACTIONS(4633), - [anon_sym_r_DQUOTE] = ACTIONS(4633), - [sym_pseudo_compile_time_identifier] = ACTIONS(4633), - [anon_sym_shared] = ACTIONS(4633), - [anon_sym_map_LBRACK] = ACTIONS(4633), - [anon_sym_chan] = ACTIONS(4633), - [anon_sym_thread] = ACTIONS(4633), - [anon_sym_atomic] = ACTIONS(4633), - [anon_sym_assert] = ACTIONS(4633), - [anon_sym_defer] = ACTIONS(4633), - [anon_sym_goto] = ACTIONS(4633), - [anon_sym_break] = ACTIONS(4633), - [anon_sym_continue] = ACTIONS(4633), - [anon_sym_return] = ACTIONS(4633), - [anon_sym_DOLLARfor] = ACTIONS(4633), - [anon_sym_for] = ACTIONS(4633), - [anon_sym_POUND] = ACTIONS(4633), - [anon_sym_asm] = ACTIONS(4633), - [anon_sym_AT_LBRACK] = ACTIONS(4633), - }, - [1808] = { - [sym_line_comment] = STATE(1808), - [sym_block_comment] = STATE(1808), - [ts_builtin_sym_end] = ACTIONS(4635), - [sym_identifier] = ACTIONS(4637), - [anon_sym_LF] = ACTIONS(4637), - [anon_sym_CR] = ACTIONS(4637), - [anon_sym_CR_LF] = ACTIONS(4637), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_const] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym___global] = ACTIONS(4637), - [anon_sym_type] = ACTIONS(4637), - [anon_sym_fn] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_struct] = ACTIONS(4637), - [anon_sym_union] = ACTIONS(4637), - [anon_sym_pub] = ACTIONS(4637), - [anon_sym_mut] = ACTIONS(4637), - [anon_sym_enum] = ACTIONS(4637), - [anon_sym_interface] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_go] = ACTIONS(4637), - [anon_sym_spawn] = ACTIONS(4637), - [anon_sym_json_DOTdecode] = ACTIONS(4637), - [anon_sym_LBRACK2] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4637), - [anon_sym_LT_DASH] = ACTIONS(4637), - [sym_none] = ACTIONS(4637), - [sym_true] = ACTIONS(4637), - [sym_false] = ACTIONS(4637), - [sym_nil] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_DOLLARif] = ACTIONS(4637), - [anon_sym_match] = ACTIONS(4637), - [anon_sym_select] = ACTIONS(4637), - [anon_sym_lock] = ACTIONS(4637), - [anon_sym_rlock] = ACTIONS(4637), - [anon_sym_unsafe] = ACTIONS(4637), - [anon_sym_sql] = ACTIONS(4637), - [sym_int_literal] = ACTIONS(4637), - [sym_float_literal] = ACTIONS(4637), - [sym_rune_literal] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_c_SQUOTE] = ACTIONS(4637), - [anon_sym_c_DQUOTE] = ACTIONS(4637), - [anon_sym_r_SQUOTE] = ACTIONS(4637), - [anon_sym_r_DQUOTE] = ACTIONS(4637), - [sym_pseudo_compile_time_identifier] = ACTIONS(4637), - [anon_sym_shared] = ACTIONS(4637), - [anon_sym_map_LBRACK] = ACTIONS(4637), - [anon_sym_chan] = ACTIONS(4637), - [anon_sym_thread] = ACTIONS(4637), - [anon_sym_atomic] = ACTIONS(4637), - [anon_sym_assert] = ACTIONS(4637), - [anon_sym_defer] = ACTIONS(4637), - [anon_sym_goto] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_DOLLARfor] = ACTIONS(4637), - [anon_sym_for] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_asm] = ACTIONS(4637), - [anon_sym_AT_LBRACK] = ACTIONS(4637), - }, - [1809] = { - [sym_line_comment] = STATE(1809), - [sym_block_comment] = STATE(1809), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [1806] = { + [sym_line_comment] = STATE(1806), + [sym_block_comment] = STATE(1806), + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_const] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym___global] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_union] = ACTIONS(3084), + [anon_sym_pub] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_c_SQUOTE] = ACTIONS(3084), + [anon_sym_c_DQUOTE] = ACTIONS(3084), + [anon_sym_r_SQUOTE] = ACTIONS(3084), + [anon_sym_r_DQUOTE] = ACTIONS(3084), + [sym_pseudo_compile_time_identifier] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_defer] = ACTIONS(3084), + [anon_sym_goto] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_DOLLARfor] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_asm] = ACTIONS(3084), + [anon_sym_AT_LBRACK] = ACTIONS(3084), }, - [1810] = { - [sym_line_comment] = STATE(1810), - [sym_block_comment] = STATE(1810), - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3035), - [anon_sym_CR] = ACTIONS(3035), - [anon_sym_CR_LF] = ACTIONS(3035), + [1807] = { + [sym_line_comment] = STATE(1807), + [sym_block_comment] = STATE(1807), + [ts_builtin_sym_end] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3304), + [anon_sym_LF] = ACTIONS(3304), + [anon_sym_CR] = ACTIONS(3304), + [anon_sym_CR_LF] = ACTIONS(3304), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_const] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym___global] = ACTIONS(3035), - [anon_sym_type] = ACTIONS(3035), - [anon_sym_fn] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_union] = ACTIONS(3035), - [anon_sym_pub] = ACTIONS(3035), - [anon_sym_mut] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_interface] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3035), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3035), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LT_DASH] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_nil] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_DOLLARif] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3035), - [anon_sym_sql] = ACTIONS(3035), - [sym_int_literal] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_c_SQUOTE] = ACTIONS(3035), - [anon_sym_c_DQUOTE] = ACTIONS(3035), - [anon_sym_r_SQUOTE] = ACTIONS(3035), - [anon_sym_r_DQUOTE] = ACTIONS(3035), - [sym_pseudo_compile_time_identifier] = ACTIONS(3035), - [anon_sym_shared] = ACTIONS(3035), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3035), - [anon_sym_thread] = ACTIONS(3035), - [anon_sym_atomic] = ACTIONS(3035), - [anon_sym_assert] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_goto] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_DOLLARfor] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_asm] = ACTIONS(3035), - [anon_sym_AT_LBRACK] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym___global] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_pub] = ACTIONS(3304), + [anon_sym_mut] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_go] = ACTIONS(3304), + [anon_sym_spawn] = ACTIONS(3304), + [anon_sym_json_DOTdecode] = ACTIONS(3304), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_nil] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_DOLLARif] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_select] = ACTIONS(3304), + [anon_sym_lock] = ACTIONS(3304), + [anon_sym_rlock] = ACTIONS(3304), + [anon_sym_unsafe] = ACTIONS(3304), + [anon_sym_sql] = ACTIONS(3304), + [sym_int_literal] = ACTIONS(3304), + [sym_float_literal] = ACTIONS(3304), + [sym_rune_literal] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_c_SQUOTE] = ACTIONS(3304), + [anon_sym_c_DQUOTE] = ACTIONS(3304), + [anon_sym_r_SQUOTE] = ACTIONS(3304), + [anon_sym_r_DQUOTE] = ACTIONS(3304), + [sym_pseudo_compile_time_identifier] = ACTIONS(3304), + [anon_sym_shared] = ACTIONS(3304), + [anon_sym_map_LBRACK] = ACTIONS(3304), + [anon_sym_chan] = ACTIONS(3304), + [anon_sym_thread] = ACTIONS(3304), + [anon_sym_atomic] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_defer] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_DOLLARfor] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym_AT_LBRACK] = ACTIONS(3304), + }, + [1808] = { + [sym_line_comment] = STATE(1808), + [sym_block_comment] = STATE(1808), + [ts_builtin_sym_end] = ACTIONS(4633), + [sym_identifier] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4635), + [anon_sym_CR] = ACTIONS(4635), + [anon_sym_CR_LF] = ACTIONS(4635), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_const] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym___global] = ACTIONS(4635), + [anon_sym_type] = ACTIONS(4635), + [anon_sym_fn] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_struct] = ACTIONS(4635), + [anon_sym_union] = ACTIONS(4635), + [anon_sym_pub] = ACTIONS(4635), + [anon_sym_mut] = ACTIONS(4635), + [anon_sym_enum] = ACTIONS(4635), + [anon_sym_interface] = ACTIONS(4635), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_go] = ACTIONS(4635), + [anon_sym_spawn] = ACTIONS(4635), + [anon_sym_json_DOTdecode] = ACTIONS(4635), + [anon_sym_LBRACK2] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_CARET] = ACTIONS(4635), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_LT_DASH] = ACTIONS(4635), + [sym_none] = ACTIONS(4635), + [sym_true] = ACTIONS(4635), + [sym_false] = ACTIONS(4635), + [sym_nil] = ACTIONS(4635), + [anon_sym_if] = ACTIONS(4635), + [anon_sym_DOLLARif] = ACTIONS(4635), + [anon_sym_match] = ACTIONS(4635), + [anon_sym_select] = ACTIONS(4635), + [anon_sym_lock] = ACTIONS(4635), + [anon_sym_rlock] = ACTIONS(4635), + [anon_sym_unsafe] = ACTIONS(4635), + [anon_sym_sql] = ACTIONS(4635), + [sym_int_literal] = ACTIONS(4635), + [sym_float_literal] = ACTIONS(4635), + [sym_rune_literal] = ACTIONS(4635), + [anon_sym_SQUOTE] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_c_SQUOTE] = ACTIONS(4635), + [anon_sym_c_DQUOTE] = ACTIONS(4635), + [anon_sym_r_SQUOTE] = ACTIONS(4635), + [anon_sym_r_DQUOTE] = ACTIONS(4635), + [sym_pseudo_compile_time_identifier] = ACTIONS(4635), + [anon_sym_shared] = ACTIONS(4635), + [anon_sym_map_LBRACK] = ACTIONS(4635), + [anon_sym_chan] = ACTIONS(4635), + [anon_sym_thread] = ACTIONS(4635), + [anon_sym_atomic] = ACTIONS(4635), + [anon_sym_assert] = ACTIONS(4635), + [anon_sym_defer] = ACTIONS(4635), + [anon_sym_goto] = ACTIONS(4635), + [anon_sym_break] = ACTIONS(4635), + [anon_sym_continue] = ACTIONS(4635), + [anon_sym_return] = ACTIONS(4635), + [anon_sym_DOLLARfor] = ACTIONS(4635), + [anon_sym_for] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_asm] = ACTIONS(4635), + [anon_sym_AT_LBRACK] = ACTIONS(4635), + }, + [1809] = { + [sym_line_comment] = STATE(1809), + [sym_block_comment] = STATE(1809), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), + }, + [1810] = { + [sym_line_comment] = STATE(1810), + [sym_block_comment] = STATE(1810), + [ts_builtin_sym_end] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4639), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_CR] = ACTIONS(4639), + [anon_sym_CR_LF] = ACTIONS(4639), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_const] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym___global] = ACTIONS(4639), + [anon_sym_type] = ACTIONS(4639), + [anon_sym_fn] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4639), + [anon_sym_STAR] = ACTIONS(4639), + [anon_sym_struct] = ACTIONS(4639), + [anon_sym_union] = ACTIONS(4639), + [anon_sym_pub] = ACTIONS(4639), + [anon_sym_mut] = ACTIONS(4639), + [anon_sym_enum] = ACTIONS(4639), + [anon_sym_interface] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_go] = ACTIONS(4639), + [anon_sym_spawn] = ACTIONS(4639), + [anon_sym_json_DOTdecode] = ACTIONS(4639), + [anon_sym_LBRACK2] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_CARET] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4639), + [anon_sym_LT_DASH] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_nil] = ACTIONS(4639), + [anon_sym_if] = ACTIONS(4639), + [anon_sym_DOLLARif] = ACTIONS(4639), + [anon_sym_match] = ACTIONS(4639), + [anon_sym_select] = ACTIONS(4639), + [anon_sym_lock] = ACTIONS(4639), + [anon_sym_rlock] = ACTIONS(4639), + [anon_sym_unsafe] = ACTIONS(4639), + [anon_sym_sql] = ACTIONS(4639), + [sym_int_literal] = ACTIONS(4639), + [sym_float_literal] = ACTIONS(4639), + [sym_rune_literal] = ACTIONS(4639), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_c_SQUOTE] = ACTIONS(4639), + [anon_sym_c_DQUOTE] = ACTIONS(4639), + [anon_sym_r_SQUOTE] = ACTIONS(4639), + [anon_sym_r_DQUOTE] = ACTIONS(4639), + [sym_pseudo_compile_time_identifier] = ACTIONS(4639), + [anon_sym_shared] = ACTIONS(4639), + [anon_sym_map_LBRACK] = ACTIONS(4639), + [anon_sym_chan] = ACTIONS(4639), + [anon_sym_thread] = ACTIONS(4639), + [anon_sym_atomic] = ACTIONS(4639), + [anon_sym_assert] = ACTIONS(4639), + [anon_sym_defer] = ACTIONS(4639), + [anon_sym_goto] = ACTIONS(4639), + [anon_sym_break] = ACTIONS(4639), + [anon_sym_continue] = ACTIONS(4639), + [anon_sym_return] = ACTIONS(4639), + [anon_sym_DOLLARfor] = ACTIONS(4639), + [anon_sym_for] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_asm] = ACTIONS(4639), + [anon_sym_AT_LBRACK] = ACTIONS(4639), }, [1811] = { [sym_line_comment] = STATE(1811), [sym_block_comment] = STATE(1811), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym___global] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_c_SQUOTE] = ACTIONS(2961), - [anon_sym_c_DQUOTE] = ACTIONS(2961), - [anon_sym_r_SQUOTE] = ACTIONS(2961), - [anon_sym_r_DQUOTE] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym_AT_LBRACK] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_c_SQUOTE] = ACTIONS(3027), + [anon_sym_c_DQUOTE] = ACTIONS(3027), + [anon_sym_r_SQUOTE] = ACTIONS(3027), + [anon_sym_r_DQUOTE] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), }, [1812] = { [sym_line_comment] = STATE(1812), [sym_block_comment] = STATE(1812), - [ts_builtin_sym_end] = ACTIONS(4639), - [sym_identifier] = ACTIONS(4641), - [anon_sym_LF] = ACTIONS(4641), - [anon_sym_CR] = ACTIONS(4641), - [anon_sym_CR_LF] = ACTIONS(4641), + [ts_builtin_sym_end] = ACTIONS(4641), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LF] = ACTIONS(4643), + [anon_sym_CR] = ACTIONS(4643), + [anon_sym_CR_LF] = ACTIONS(4643), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [anon_sym_const] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym___global] = ACTIONS(4641), - [anon_sym_type] = ACTIONS(4641), - [anon_sym_fn] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_struct] = ACTIONS(4641), - [anon_sym_union] = ACTIONS(4641), - [anon_sym_pub] = ACTIONS(4641), - [anon_sym_mut] = ACTIONS(4641), - [anon_sym_enum] = ACTIONS(4641), - [anon_sym_interface] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_go] = ACTIONS(4641), - [anon_sym_spawn] = ACTIONS(4641), - [anon_sym_json_DOTdecode] = ACTIONS(4641), - [anon_sym_LBRACK2] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_LT_DASH] = ACTIONS(4641), - [sym_none] = ACTIONS(4641), - [sym_true] = ACTIONS(4641), - [sym_false] = ACTIONS(4641), - [sym_nil] = ACTIONS(4641), - [anon_sym_if] = ACTIONS(4641), - [anon_sym_DOLLARif] = ACTIONS(4641), - [anon_sym_match] = ACTIONS(4641), - [anon_sym_select] = ACTIONS(4641), - [anon_sym_lock] = ACTIONS(4641), - [anon_sym_rlock] = ACTIONS(4641), - [anon_sym_unsafe] = ACTIONS(4641), - [anon_sym_sql] = ACTIONS(4641), - [sym_int_literal] = ACTIONS(4641), - [sym_float_literal] = ACTIONS(4641), - [sym_rune_literal] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_c_SQUOTE] = ACTIONS(4641), - [anon_sym_c_DQUOTE] = ACTIONS(4641), - [anon_sym_r_SQUOTE] = ACTIONS(4641), - [anon_sym_r_DQUOTE] = ACTIONS(4641), - [sym_pseudo_compile_time_identifier] = ACTIONS(4641), - [anon_sym_shared] = ACTIONS(4641), - [anon_sym_map_LBRACK] = ACTIONS(4641), - [anon_sym_chan] = ACTIONS(4641), - [anon_sym_thread] = ACTIONS(4641), - [anon_sym_atomic] = ACTIONS(4641), - [anon_sym_assert] = ACTIONS(4641), - [anon_sym_defer] = ACTIONS(4641), - [anon_sym_goto] = ACTIONS(4641), - [anon_sym_break] = ACTIONS(4641), - [anon_sym_continue] = ACTIONS(4641), - [anon_sym_return] = ACTIONS(4641), - [anon_sym_DOLLARfor] = ACTIONS(4641), - [anon_sym_for] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_asm] = ACTIONS(4641), - [anon_sym_AT_LBRACK] = ACTIONS(4641), + [anon_sym_DOT] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4643), + [anon_sym_const] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4643), + [anon_sym___global] = ACTIONS(4643), + [anon_sym_type] = ACTIONS(4643), + [anon_sym_fn] = ACTIONS(4643), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_struct] = ACTIONS(4643), + [anon_sym_union] = ACTIONS(4643), + [anon_sym_pub] = ACTIONS(4643), + [anon_sym_mut] = ACTIONS(4643), + [anon_sym_enum] = ACTIONS(4643), + [anon_sym_interface] = ACTIONS(4643), + [anon_sym_QMARK] = ACTIONS(4643), + [anon_sym_BANG] = ACTIONS(4643), + [anon_sym_go] = ACTIONS(4643), + [anon_sym_spawn] = ACTIONS(4643), + [anon_sym_json_DOTdecode] = ACTIONS(4643), + [anon_sym_LBRACK2] = ACTIONS(4643), + [anon_sym_TILDE] = ACTIONS(4643), + [anon_sym_CARET] = ACTIONS(4643), + [anon_sym_AMP] = ACTIONS(4643), + [anon_sym_LT_DASH] = ACTIONS(4643), + [sym_none] = ACTIONS(4643), + [sym_true] = ACTIONS(4643), + [sym_false] = ACTIONS(4643), + [sym_nil] = ACTIONS(4643), + [anon_sym_if] = ACTIONS(4643), + [anon_sym_DOLLARif] = ACTIONS(4643), + [anon_sym_match] = ACTIONS(4643), + [anon_sym_select] = ACTIONS(4643), + [anon_sym_lock] = ACTIONS(4643), + [anon_sym_rlock] = ACTIONS(4643), + [anon_sym_unsafe] = ACTIONS(4643), + [anon_sym_sql] = ACTIONS(4643), + [sym_int_literal] = ACTIONS(4643), + [sym_float_literal] = ACTIONS(4643), + [sym_rune_literal] = ACTIONS(4643), + [anon_sym_SQUOTE] = ACTIONS(4643), + [anon_sym_DQUOTE] = ACTIONS(4643), + [anon_sym_c_SQUOTE] = ACTIONS(4643), + [anon_sym_c_DQUOTE] = ACTIONS(4643), + [anon_sym_r_SQUOTE] = ACTIONS(4643), + [anon_sym_r_DQUOTE] = ACTIONS(4643), + [sym_pseudo_compile_time_identifier] = ACTIONS(4643), + [anon_sym_shared] = ACTIONS(4643), + [anon_sym_map_LBRACK] = ACTIONS(4643), + [anon_sym_chan] = ACTIONS(4643), + [anon_sym_thread] = ACTIONS(4643), + [anon_sym_atomic] = ACTIONS(4643), + [anon_sym_assert] = ACTIONS(4643), + [anon_sym_defer] = ACTIONS(4643), + [anon_sym_goto] = ACTIONS(4643), + [anon_sym_break] = ACTIONS(4643), + [anon_sym_continue] = ACTIONS(4643), + [anon_sym_return] = ACTIONS(4643), + [anon_sym_DOLLARfor] = ACTIONS(4643), + [anon_sym_for] = ACTIONS(4643), + [anon_sym_POUND] = ACTIONS(4643), + [anon_sym_asm] = ACTIONS(4643), + [anon_sym_AT_LBRACK] = ACTIONS(4643), }, [1813] = { [sym_line_comment] = STATE(1813), [sym_block_comment] = STATE(1813), - [ts_builtin_sym_end] = ACTIONS(4643), - [sym_identifier] = ACTIONS(4645), - [anon_sym_LF] = ACTIONS(4645), - [anon_sym_CR] = ACTIONS(4645), - [anon_sym_CR_LF] = ACTIONS(4645), + [ts_builtin_sym_end] = ACTIONS(4645), + [sym_identifier] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4647), + [anon_sym_CR] = ACTIONS(4647), + [anon_sym_CR_LF] = ACTIONS(4647), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_const] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4645), - [anon_sym___global] = ACTIONS(4645), - [anon_sym_type] = ACTIONS(4645), - [anon_sym_fn] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_struct] = ACTIONS(4645), - [anon_sym_union] = ACTIONS(4645), - [anon_sym_pub] = ACTIONS(4645), - [anon_sym_mut] = ACTIONS(4645), - [anon_sym_enum] = ACTIONS(4645), - [anon_sym_interface] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4645), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_go] = ACTIONS(4645), - [anon_sym_spawn] = ACTIONS(4645), - [anon_sym_json_DOTdecode] = ACTIONS(4645), - [anon_sym_LBRACK2] = ACTIONS(4645), - [anon_sym_TILDE] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_LT_DASH] = ACTIONS(4645), - [sym_none] = ACTIONS(4645), - [sym_true] = ACTIONS(4645), - [sym_false] = ACTIONS(4645), - [sym_nil] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_DOLLARif] = ACTIONS(4645), - [anon_sym_match] = ACTIONS(4645), - [anon_sym_select] = ACTIONS(4645), - [anon_sym_lock] = ACTIONS(4645), - [anon_sym_rlock] = ACTIONS(4645), - [anon_sym_unsafe] = ACTIONS(4645), - [anon_sym_sql] = ACTIONS(4645), - [sym_int_literal] = ACTIONS(4645), - [sym_float_literal] = ACTIONS(4645), - [sym_rune_literal] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4645), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_c_SQUOTE] = ACTIONS(4645), - [anon_sym_c_DQUOTE] = ACTIONS(4645), - [anon_sym_r_SQUOTE] = ACTIONS(4645), - [anon_sym_r_DQUOTE] = ACTIONS(4645), - [sym_pseudo_compile_time_identifier] = ACTIONS(4645), - [anon_sym_shared] = ACTIONS(4645), - [anon_sym_map_LBRACK] = ACTIONS(4645), - [anon_sym_chan] = ACTIONS(4645), - [anon_sym_thread] = ACTIONS(4645), - [anon_sym_atomic] = ACTIONS(4645), - [anon_sym_assert] = ACTIONS(4645), - [anon_sym_defer] = ACTIONS(4645), - [anon_sym_goto] = ACTIONS(4645), - [anon_sym_break] = ACTIONS(4645), - [anon_sym_continue] = ACTIONS(4645), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_DOLLARfor] = ACTIONS(4645), - [anon_sym_for] = ACTIONS(4645), - [anon_sym_POUND] = ACTIONS(4645), - [anon_sym_asm] = ACTIONS(4645), - [anon_sym_AT_LBRACK] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_const] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym___global] = ACTIONS(4647), + [anon_sym_type] = ACTIONS(4647), + [anon_sym_fn] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4647), + [anon_sym_struct] = ACTIONS(4647), + [anon_sym_union] = ACTIONS(4647), + [anon_sym_pub] = ACTIONS(4647), + [anon_sym_mut] = ACTIONS(4647), + [anon_sym_enum] = ACTIONS(4647), + [anon_sym_interface] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_go] = ACTIONS(4647), + [anon_sym_spawn] = ACTIONS(4647), + [anon_sym_json_DOTdecode] = ACTIONS(4647), + [anon_sym_LBRACK2] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4647), + [anon_sym_LT_DASH] = ACTIONS(4647), + [sym_none] = ACTIONS(4647), + [sym_true] = ACTIONS(4647), + [sym_false] = ACTIONS(4647), + [sym_nil] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(4647), + [anon_sym_DOLLARif] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(4647), + [anon_sym_select] = ACTIONS(4647), + [anon_sym_lock] = ACTIONS(4647), + [anon_sym_rlock] = ACTIONS(4647), + [anon_sym_unsafe] = ACTIONS(4647), + [anon_sym_sql] = ACTIONS(4647), + [sym_int_literal] = ACTIONS(4647), + [sym_float_literal] = ACTIONS(4647), + [sym_rune_literal] = ACTIONS(4647), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_c_SQUOTE] = ACTIONS(4647), + [anon_sym_c_DQUOTE] = ACTIONS(4647), + [anon_sym_r_SQUOTE] = ACTIONS(4647), + [anon_sym_r_DQUOTE] = ACTIONS(4647), + [sym_pseudo_compile_time_identifier] = ACTIONS(4647), + [anon_sym_shared] = ACTIONS(4647), + [anon_sym_map_LBRACK] = ACTIONS(4647), + [anon_sym_chan] = ACTIONS(4647), + [anon_sym_thread] = ACTIONS(4647), + [anon_sym_atomic] = ACTIONS(4647), + [anon_sym_assert] = ACTIONS(4647), + [anon_sym_defer] = ACTIONS(4647), + [anon_sym_goto] = ACTIONS(4647), + [anon_sym_break] = ACTIONS(4647), + [anon_sym_continue] = ACTIONS(4647), + [anon_sym_return] = ACTIONS(4647), + [anon_sym_DOLLARfor] = ACTIONS(4647), + [anon_sym_for] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_asm] = ACTIONS(4647), + [anon_sym_AT_LBRACK] = ACTIONS(4647), }, [1814] = { [sym_line_comment] = STATE(1814), [sym_block_comment] = STATE(1814), - [ts_builtin_sym_end] = ACTIONS(4647), - [sym_identifier] = ACTIONS(4649), - [anon_sym_LF] = ACTIONS(4649), - [anon_sym_CR] = ACTIONS(4649), - [anon_sym_CR_LF] = ACTIONS(4649), + [ts_builtin_sym_end] = ACTIONS(4649), + [sym_identifier] = ACTIONS(4651), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_CR] = ACTIONS(4651), + [anon_sym_CR_LF] = ACTIONS(4651), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_LBRACE] = ACTIONS(4649), - [anon_sym_const] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [anon_sym___global] = ACTIONS(4649), - [anon_sym_type] = ACTIONS(4649), - [anon_sym_fn] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4649), - [anon_sym_struct] = ACTIONS(4649), - [anon_sym_union] = ACTIONS(4649), - [anon_sym_pub] = ACTIONS(4649), - [anon_sym_mut] = ACTIONS(4649), - [anon_sym_enum] = ACTIONS(4649), - [anon_sym_interface] = ACTIONS(4649), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_go] = ACTIONS(4649), - [anon_sym_spawn] = ACTIONS(4649), - [anon_sym_json_DOTdecode] = ACTIONS(4649), - [anon_sym_LBRACK2] = ACTIONS(4649), - [anon_sym_TILDE] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_DASH] = ACTIONS(4649), - [sym_none] = ACTIONS(4649), - [sym_true] = ACTIONS(4649), - [sym_false] = ACTIONS(4649), - [sym_nil] = ACTIONS(4649), - [anon_sym_if] = ACTIONS(4649), - [anon_sym_DOLLARif] = ACTIONS(4649), - [anon_sym_match] = ACTIONS(4649), - [anon_sym_select] = ACTIONS(4649), - [anon_sym_lock] = ACTIONS(4649), - [anon_sym_rlock] = ACTIONS(4649), - [anon_sym_unsafe] = ACTIONS(4649), - [anon_sym_sql] = ACTIONS(4649), - [sym_int_literal] = ACTIONS(4649), - [sym_float_literal] = ACTIONS(4649), - [sym_rune_literal] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4649), - [anon_sym_DQUOTE] = ACTIONS(4649), - [anon_sym_c_SQUOTE] = ACTIONS(4649), - [anon_sym_c_DQUOTE] = ACTIONS(4649), - [anon_sym_r_SQUOTE] = ACTIONS(4649), - [anon_sym_r_DQUOTE] = ACTIONS(4649), - [sym_pseudo_compile_time_identifier] = ACTIONS(4649), - [anon_sym_shared] = ACTIONS(4649), - [anon_sym_map_LBRACK] = ACTIONS(4649), - [anon_sym_chan] = ACTIONS(4649), - [anon_sym_thread] = ACTIONS(4649), - [anon_sym_atomic] = ACTIONS(4649), - [anon_sym_assert] = ACTIONS(4649), - [anon_sym_defer] = ACTIONS(4649), - [anon_sym_goto] = ACTIONS(4649), - [anon_sym_break] = ACTIONS(4649), - [anon_sym_continue] = ACTIONS(4649), - [anon_sym_return] = ACTIONS(4649), - [anon_sym_DOLLARfor] = ACTIONS(4649), - [anon_sym_for] = ACTIONS(4649), - [anon_sym_POUND] = ACTIONS(4649), - [anon_sym_asm] = ACTIONS(4649), - [anon_sym_AT_LBRACK] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_const] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(4651), + [anon_sym___global] = ACTIONS(4651), + [anon_sym_type] = ACTIONS(4651), + [anon_sym_fn] = ACTIONS(4651), + [anon_sym_PLUS] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4651), + [anon_sym_STAR] = ACTIONS(4651), + [anon_sym_struct] = ACTIONS(4651), + [anon_sym_union] = ACTIONS(4651), + [anon_sym_pub] = ACTIONS(4651), + [anon_sym_mut] = ACTIONS(4651), + [anon_sym_enum] = ACTIONS(4651), + [anon_sym_interface] = ACTIONS(4651), + [anon_sym_QMARK] = ACTIONS(4651), + [anon_sym_BANG] = ACTIONS(4651), + [anon_sym_go] = ACTIONS(4651), + [anon_sym_spawn] = ACTIONS(4651), + [anon_sym_json_DOTdecode] = ACTIONS(4651), + [anon_sym_LBRACK2] = ACTIONS(4651), + [anon_sym_TILDE] = ACTIONS(4651), + [anon_sym_CARET] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4651), + [anon_sym_LT_DASH] = ACTIONS(4651), + [sym_none] = ACTIONS(4651), + [sym_true] = ACTIONS(4651), + [sym_false] = ACTIONS(4651), + [sym_nil] = ACTIONS(4651), + [anon_sym_if] = ACTIONS(4651), + [anon_sym_DOLLARif] = ACTIONS(4651), + [anon_sym_match] = ACTIONS(4651), + [anon_sym_select] = ACTIONS(4651), + [anon_sym_lock] = ACTIONS(4651), + [anon_sym_rlock] = ACTIONS(4651), + [anon_sym_unsafe] = ACTIONS(4651), + [anon_sym_sql] = ACTIONS(4651), + [sym_int_literal] = ACTIONS(4651), + [sym_float_literal] = ACTIONS(4651), + [sym_rune_literal] = ACTIONS(4651), + [anon_sym_SQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_c_SQUOTE] = ACTIONS(4651), + [anon_sym_c_DQUOTE] = ACTIONS(4651), + [anon_sym_r_SQUOTE] = ACTIONS(4651), + [anon_sym_r_DQUOTE] = ACTIONS(4651), + [sym_pseudo_compile_time_identifier] = ACTIONS(4651), + [anon_sym_shared] = ACTIONS(4651), + [anon_sym_map_LBRACK] = ACTIONS(4651), + [anon_sym_chan] = ACTIONS(4651), + [anon_sym_thread] = ACTIONS(4651), + [anon_sym_atomic] = ACTIONS(4651), + [anon_sym_assert] = ACTIONS(4651), + [anon_sym_defer] = ACTIONS(4651), + [anon_sym_goto] = ACTIONS(4651), + [anon_sym_break] = ACTIONS(4651), + [anon_sym_continue] = ACTIONS(4651), + [anon_sym_return] = ACTIONS(4651), + [anon_sym_DOLLARfor] = ACTIONS(4651), + [anon_sym_for] = ACTIONS(4651), + [anon_sym_POUND] = ACTIONS(4651), + [anon_sym_asm] = ACTIONS(4651), + [anon_sym_AT_LBRACK] = ACTIONS(4651), }, [1815] = { [sym_line_comment] = STATE(1815), [sym_block_comment] = STATE(1815), - [ts_builtin_sym_end] = ACTIONS(4651), - [sym_identifier] = ACTIONS(4653), - [anon_sym_LF] = ACTIONS(4653), - [anon_sym_CR] = ACTIONS(4653), - [anon_sym_CR_LF] = ACTIONS(4653), + [ts_builtin_sym_end] = ACTIONS(4653), + [sym_identifier] = ACTIONS(4655), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_CR] = ACTIONS(4655), + [anon_sym_CR_LF] = ACTIONS(4655), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4653), - [anon_sym_const] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym___global] = ACTIONS(4653), - [anon_sym_type] = ACTIONS(4653), - [anon_sym_fn] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_struct] = ACTIONS(4653), - [anon_sym_union] = ACTIONS(4653), - [anon_sym_pub] = ACTIONS(4653), - [anon_sym_mut] = ACTIONS(4653), - [anon_sym_enum] = ACTIONS(4653), - [anon_sym_interface] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_go] = ACTIONS(4653), - [anon_sym_spawn] = ACTIONS(4653), - [anon_sym_json_DOTdecode] = ACTIONS(4653), - [anon_sym_LBRACK2] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4653), - [anon_sym_LT_DASH] = ACTIONS(4653), - [sym_none] = ACTIONS(4653), - [sym_true] = ACTIONS(4653), - [sym_false] = ACTIONS(4653), - [sym_nil] = ACTIONS(4653), - [anon_sym_if] = ACTIONS(4653), - [anon_sym_DOLLARif] = ACTIONS(4653), - [anon_sym_match] = ACTIONS(4653), - [anon_sym_select] = ACTIONS(4653), - [anon_sym_lock] = ACTIONS(4653), - [anon_sym_rlock] = ACTIONS(4653), - [anon_sym_unsafe] = ACTIONS(4653), - [anon_sym_sql] = ACTIONS(4653), - [sym_int_literal] = ACTIONS(4653), - [sym_float_literal] = ACTIONS(4653), - [sym_rune_literal] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_c_SQUOTE] = ACTIONS(4653), - [anon_sym_c_DQUOTE] = ACTIONS(4653), - [anon_sym_r_SQUOTE] = ACTIONS(4653), - [anon_sym_r_DQUOTE] = ACTIONS(4653), - [sym_pseudo_compile_time_identifier] = ACTIONS(4653), - [anon_sym_shared] = ACTIONS(4653), - [anon_sym_map_LBRACK] = ACTIONS(4653), - [anon_sym_chan] = ACTIONS(4653), - [anon_sym_thread] = ACTIONS(4653), - [anon_sym_atomic] = ACTIONS(4653), - [anon_sym_assert] = ACTIONS(4653), - [anon_sym_defer] = ACTIONS(4653), - [anon_sym_goto] = ACTIONS(4653), - [anon_sym_break] = ACTIONS(4653), - [anon_sym_continue] = ACTIONS(4653), - [anon_sym_return] = ACTIONS(4653), - [anon_sym_DOLLARfor] = ACTIONS(4653), - [anon_sym_for] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_asm] = ACTIONS(4653), - [anon_sym_AT_LBRACK] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4655), + [anon_sym_LBRACE] = ACTIONS(4655), + [anon_sym_const] = ACTIONS(4655), + [anon_sym_LPAREN] = ACTIONS(4655), + [anon_sym___global] = ACTIONS(4655), + [anon_sym_type] = ACTIONS(4655), + [anon_sym_fn] = ACTIONS(4655), + [anon_sym_PLUS] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4655), + [anon_sym_STAR] = ACTIONS(4655), + [anon_sym_struct] = ACTIONS(4655), + [anon_sym_union] = ACTIONS(4655), + [anon_sym_pub] = ACTIONS(4655), + [anon_sym_mut] = ACTIONS(4655), + [anon_sym_enum] = ACTIONS(4655), + [anon_sym_interface] = ACTIONS(4655), + [anon_sym_QMARK] = ACTIONS(4655), + [anon_sym_BANG] = ACTIONS(4655), + [anon_sym_go] = ACTIONS(4655), + [anon_sym_spawn] = ACTIONS(4655), + [anon_sym_json_DOTdecode] = ACTIONS(4655), + [anon_sym_LBRACK2] = ACTIONS(4655), + [anon_sym_TILDE] = ACTIONS(4655), + [anon_sym_CARET] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4655), + [anon_sym_LT_DASH] = ACTIONS(4655), + [sym_none] = ACTIONS(4655), + [sym_true] = ACTIONS(4655), + [sym_false] = ACTIONS(4655), + [sym_nil] = ACTIONS(4655), + [anon_sym_if] = ACTIONS(4655), + [anon_sym_DOLLARif] = ACTIONS(4655), + [anon_sym_match] = ACTIONS(4655), + [anon_sym_select] = ACTIONS(4655), + [anon_sym_lock] = ACTIONS(4655), + [anon_sym_rlock] = ACTIONS(4655), + [anon_sym_unsafe] = ACTIONS(4655), + [anon_sym_sql] = ACTIONS(4655), + [sym_int_literal] = ACTIONS(4655), + [sym_float_literal] = ACTIONS(4655), + [sym_rune_literal] = ACTIONS(4655), + [anon_sym_SQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_c_SQUOTE] = ACTIONS(4655), + [anon_sym_c_DQUOTE] = ACTIONS(4655), + [anon_sym_r_SQUOTE] = ACTIONS(4655), + [anon_sym_r_DQUOTE] = ACTIONS(4655), + [sym_pseudo_compile_time_identifier] = ACTIONS(4655), + [anon_sym_shared] = ACTIONS(4655), + [anon_sym_map_LBRACK] = ACTIONS(4655), + [anon_sym_chan] = ACTIONS(4655), + [anon_sym_thread] = ACTIONS(4655), + [anon_sym_atomic] = ACTIONS(4655), + [anon_sym_assert] = ACTIONS(4655), + [anon_sym_defer] = ACTIONS(4655), + [anon_sym_goto] = ACTIONS(4655), + [anon_sym_break] = ACTIONS(4655), + [anon_sym_continue] = ACTIONS(4655), + [anon_sym_return] = ACTIONS(4655), + [anon_sym_DOLLARfor] = ACTIONS(4655), + [anon_sym_for] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_asm] = ACTIONS(4655), + [anon_sym_AT_LBRACK] = ACTIONS(4655), }, [1816] = { [sym_line_comment] = STATE(1816), [sym_block_comment] = STATE(1816), - [ts_builtin_sym_end] = ACTIONS(4655), - [sym_identifier] = ACTIONS(4657), - [anon_sym_LF] = ACTIONS(4657), - [anon_sym_CR] = ACTIONS(4657), - [anon_sym_CR_LF] = ACTIONS(4657), + [ts_builtin_sym_end] = ACTIONS(4657), + [sym_identifier] = ACTIONS(4659), + [anon_sym_LF] = ACTIONS(4659), + [anon_sym_CR] = ACTIONS(4659), + [anon_sym_CR_LF] = ACTIONS(4659), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_const] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym___global] = ACTIONS(4657), - [anon_sym_type] = ACTIONS(4657), - [anon_sym_fn] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_struct] = ACTIONS(4657), - [anon_sym_union] = ACTIONS(4657), - [anon_sym_pub] = ACTIONS(4657), - [anon_sym_mut] = ACTIONS(4657), - [anon_sym_enum] = ACTIONS(4657), - [anon_sym_interface] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_go] = ACTIONS(4657), - [anon_sym_spawn] = ACTIONS(4657), - [anon_sym_json_DOTdecode] = ACTIONS(4657), - [anon_sym_LBRACK2] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_CARET] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_LT_DASH] = ACTIONS(4657), - [sym_none] = ACTIONS(4657), - [sym_true] = ACTIONS(4657), - [sym_false] = ACTIONS(4657), - [sym_nil] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_DOLLARif] = ACTIONS(4657), - [anon_sym_match] = ACTIONS(4657), - [anon_sym_select] = ACTIONS(4657), - [anon_sym_lock] = ACTIONS(4657), - [anon_sym_rlock] = ACTIONS(4657), - [anon_sym_unsafe] = ACTIONS(4657), - [anon_sym_sql] = ACTIONS(4657), - [sym_int_literal] = ACTIONS(4657), - [sym_float_literal] = ACTIONS(4657), - [sym_rune_literal] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_c_SQUOTE] = ACTIONS(4657), - [anon_sym_c_DQUOTE] = ACTIONS(4657), - [anon_sym_r_SQUOTE] = ACTIONS(4657), - [anon_sym_r_DQUOTE] = ACTIONS(4657), - [sym_pseudo_compile_time_identifier] = ACTIONS(4657), - [anon_sym_shared] = ACTIONS(4657), - [anon_sym_map_LBRACK] = ACTIONS(4657), - [anon_sym_chan] = ACTIONS(4657), - [anon_sym_thread] = ACTIONS(4657), - [anon_sym_atomic] = ACTIONS(4657), - [anon_sym_assert] = ACTIONS(4657), - [anon_sym_defer] = ACTIONS(4657), - [anon_sym_goto] = ACTIONS(4657), - [anon_sym_break] = ACTIONS(4657), - [anon_sym_continue] = ACTIONS(4657), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_DOLLARfor] = ACTIONS(4657), - [anon_sym_for] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_asm] = ACTIONS(4657), - [anon_sym_AT_LBRACK] = ACTIONS(4657), + [anon_sym_DOT] = ACTIONS(4659), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_const] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym___global] = ACTIONS(4659), + [anon_sym_type] = ACTIONS(4659), + [anon_sym_fn] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4659), + [anon_sym_DASH] = ACTIONS(4659), + [anon_sym_STAR] = ACTIONS(4659), + [anon_sym_struct] = ACTIONS(4659), + [anon_sym_union] = ACTIONS(4659), + [anon_sym_pub] = ACTIONS(4659), + [anon_sym_mut] = ACTIONS(4659), + [anon_sym_enum] = ACTIONS(4659), + [anon_sym_interface] = ACTIONS(4659), + [anon_sym_QMARK] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4659), + [anon_sym_go] = ACTIONS(4659), + [anon_sym_spawn] = ACTIONS(4659), + [anon_sym_json_DOTdecode] = ACTIONS(4659), + [anon_sym_LBRACK2] = ACTIONS(4659), + [anon_sym_TILDE] = ACTIONS(4659), + [anon_sym_CARET] = ACTIONS(4659), + [anon_sym_AMP] = ACTIONS(4659), + [anon_sym_LT_DASH] = ACTIONS(4659), + [sym_none] = ACTIONS(4659), + [sym_true] = ACTIONS(4659), + [sym_false] = ACTIONS(4659), + [sym_nil] = ACTIONS(4659), + [anon_sym_if] = ACTIONS(4659), + [anon_sym_DOLLARif] = ACTIONS(4659), + [anon_sym_match] = ACTIONS(4659), + [anon_sym_select] = ACTIONS(4659), + [anon_sym_lock] = ACTIONS(4659), + [anon_sym_rlock] = ACTIONS(4659), + [anon_sym_unsafe] = ACTIONS(4659), + [anon_sym_sql] = ACTIONS(4659), + [sym_int_literal] = ACTIONS(4659), + [sym_float_literal] = ACTIONS(4659), + [sym_rune_literal] = ACTIONS(4659), + [anon_sym_SQUOTE] = ACTIONS(4659), + [anon_sym_DQUOTE] = ACTIONS(4659), + [anon_sym_c_SQUOTE] = ACTIONS(4659), + [anon_sym_c_DQUOTE] = ACTIONS(4659), + [anon_sym_r_SQUOTE] = ACTIONS(4659), + [anon_sym_r_DQUOTE] = ACTIONS(4659), + [sym_pseudo_compile_time_identifier] = ACTIONS(4659), + [anon_sym_shared] = ACTIONS(4659), + [anon_sym_map_LBRACK] = ACTIONS(4659), + [anon_sym_chan] = ACTIONS(4659), + [anon_sym_thread] = ACTIONS(4659), + [anon_sym_atomic] = ACTIONS(4659), + [anon_sym_assert] = ACTIONS(4659), + [anon_sym_defer] = ACTIONS(4659), + [anon_sym_goto] = ACTIONS(4659), + [anon_sym_break] = ACTIONS(4659), + [anon_sym_continue] = ACTIONS(4659), + [anon_sym_return] = ACTIONS(4659), + [anon_sym_DOLLARfor] = ACTIONS(4659), + [anon_sym_for] = ACTIONS(4659), + [anon_sym_POUND] = ACTIONS(4659), + [anon_sym_asm] = ACTIONS(4659), + [anon_sym_AT_LBRACK] = ACTIONS(4659), }, [1817] = { [sym_line_comment] = STATE(1817), [sym_block_comment] = STATE(1817), - [ts_builtin_sym_end] = ACTIONS(4659), - [sym_identifier] = ACTIONS(4661), - [anon_sym_LF] = ACTIONS(4661), - [anon_sym_CR] = ACTIONS(4661), - [anon_sym_CR_LF] = ACTIONS(4661), + [ts_builtin_sym_end] = ACTIONS(4661), + [sym_identifier] = ACTIONS(4663), + [anon_sym_LF] = ACTIONS(4663), + [anon_sym_CR] = ACTIONS(4663), + [anon_sym_CR_LF] = ACTIONS(4663), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_const] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym___global] = ACTIONS(4661), - [anon_sym_type] = ACTIONS(4661), - [anon_sym_fn] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_struct] = ACTIONS(4661), - [anon_sym_union] = ACTIONS(4661), - [anon_sym_pub] = ACTIONS(4661), - [anon_sym_mut] = ACTIONS(4661), - [anon_sym_enum] = ACTIONS(4661), - [anon_sym_interface] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_go] = ACTIONS(4661), - [anon_sym_spawn] = ACTIONS(4661), - [anon_sym_json_DOTdecode] = ACTIONS(4661), - [anon_sym_LBRACK2] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_CARET] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_LT_DASH] = ACTIONS(4661), - [sym_none] = ACTIONS(4661), - [sym_true] = ACTIONS(4661), - [sym_false] = ACTIONS(4661), - [sym_nil] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_DOLLARif] = ACTIONS(4661), - [anon_sym_match] = ACTIONS(4661), - [anon_sym_select] = ACTIONS(4661), - [anon_sym_lock] = ACTIONS(4661), - [anon_sym_rlock] = ACTIONS(4661), - [anon_sym_unsafe] = ACTIONS(4661), - [anon_sym_sql] = ACTIONS(4661), - [sym_int_literal] = ACTIONS(4661), - [sym_float_literal] = ACTIONS(4661), - [sym_rune_literal] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_c_SQUOTE] = ACTIONS(4661), - [anon_sym_c_DQUOTE] = ACTIONS(4661), - [anon_sym_r_SQUOTE] = ACTIONS(4661), - [anon_sym_r_DQUOTE] = ACTIONS(4661), - [sym_pseudo_compile_time_identifier] = ACTIONS(4661), - [anon_sym_shared] = ACTIONS(4661), - [anon_sym_map_LBRACK] = ACTIONS(4661), - [anon_sym_chan] = ACTIONS(4661), - [anon_sym_thread] = ACTIONS(4661), - [anon_sym_atomic] = ACTIONS(4661), - [anon_sym_assert] = ACTIONS(4661), - [anon_sym_defer] = ACTIONS(4661), - [anon_sym_goto] = ACTIONS(4661), - [anon_sym_break] = ACTIONS(4661), - [anon_sym_continue] = ACTIONS(4661), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_DOLLARfor] = ACTIONS(4661), - [anon_sym_for] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_asm] = ACTIONS(4661), - [anon_sym_AT_LBRACK] = ACTIONS(4661), + [anon_sym_DOT] = ACTIONS(4663), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_const] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym___global] = ACTIONS(4663), + [anon_sym_type] = ACTIONS(4663), + [anon_sym_fn] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4663), + [anon_sym_DASH] = ACTIONS(4663), + [anon_sym_STAR] = ACTIONS(4663), + [anon_sym_struct] = ACTIONS(4663), + [anon_sym_union] = ACTIONS(4663), + [anon_sym_pub] = ACTIONS(4663), + [anon_sym_mut] = ACTIONS(4663), + [anon_sym_enum] = ACTIONS(4663), + [anon_sym_interface] = ACTIONS(4663), + [anon_sym_QMARK] = ACTIONS(4663), + [anon_sym_BANG] = ACTIONS(4663), + [anon_sym_go] = ACTIONS(4663), + [anon_sym_spawn] = ACTIONS(4663), + [anon_sym_json_DOTdecode] = ACTIONS(4663), + [anon_sym_LBRACK2] = ACTIONS(4663), + [anon_sym_TILDE] = ACTIONS(4663), + [anon_sym_CARET] = ACTIONS(4663), + [anon_sym_AMP] = ACTIONS(4663), + [anon_sym_LT_DASH] = ACTIONS(4663), + [sym_none] = ACTIONS(4663), + [sym_true] = ACTIONS(4663), + [sym_false] = ACTIONS(4663), + [sym_nil] = ACTIONS(4663), + [anon_sym_if] = ACTIONS(4663), + [anon_sym_DOLLARif] = ACTIONS(4663), + [anon_sym_match] = ACTIONS(4663), + [anon_sym_select] = ACTIONS(4663), + [anon_sym_lock] = ACTIONS(4663), + [anon_sym_rlock] = ACTIONS(4663), + [anon_sym_unsafe] = ACTIONS(4663), + [anon_sym_sql] = ACTIONS(4663), + [sym_int_literal] = ACTIONS(4663), + [sym_float_literal] = ACTIONS(4663), + [sym_rune_literal] = ACTIONS(4663), + [anon_sym_SQUOTE] = ACTIONS(4663), + [anon_sym_DQUOTE] = ACTIONS(4663), + [anon_sym_c_SQUOTE] = ACTIONS(4663), + [anon_sym_c_DQUOTE] = ACTIONS(4663), + [anon_sym_r_SQUOTE] = ACTIONS(4663), + [anon_sym_r_DQUOTE] = ACTIONS(4663), + [sym_pseudo_compile_time_identifier] = ACTIONS(4663), + [anon_sym_shared] = ACTIONS(4663), + [anon_sym_map_LBRACK] = ACTIONS(4663), + [anon_sym_chan] = ACTIONS(4663), + [anon_sym_thread] = ACTIONS(4663), + [anon_sym_atomic] = ACTIONS(4663), + [anon_sym_assert] = ACTIONS(4663), + [anon_sym_defer] = ACTIONS(4663), + [anon_sym_goto] = ACTIONS(4663), + [anon_sym_break] = ACTIONS(4663), + [anon_sym_continue] = ACTIONS(4663), + [anon_sym_return] = ACTIONS(4663), + [anon_sym_DOLLARfor] = ACTIONS(4663), + [anon_sym_for] = ACTIONS(4663), + [anon_sym_POUND] = ACTIONS(4663), + [anon_sym_asm] = ACTIONS(4663), + [anon_sym_AT_LBRACK] = ACTIONS(4663), }, [1818] = { [sym_line_comment] = STATE(1818), [sym_block_comment] = STATE(1818), - [ts_builtin_sym_end] = ACTIONS(4663), - [sym_identifier] = ACTIONS(4665), - [anon_sym_LF] = ACTIONS(4665), - [anon_sym_CR] = ACTIONS(4665), - [anon_sym_CR_LF] = ACTIONS(4665), + [ts_builtin_sym_end] = ACTIONS(4665), + [sym_identifier] = ACTIONS(4667), + [anon_sym_LF] = ACTIONS(4667), + [anon_sym_CR] = ACTIONS(4667), + [anon_sym_CR_LF] = ACTIONS(4667), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_const] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym___global] = ACTIONS(4665), - [anon_sym_type] = ACTIONS(4665), - [anon_sym_fn] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_struct] = ACTIONS(4665), - [anon_sym_union] = ACTIONS(4665), - [anon_sym_pub] = ACTIONS(4665), - [anon_sym_mut] = ACTIONS(4665), - [anon_sym_enum] = ACTIONS(4665), - [anon_sym_interface] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_go] = ACTIONS(4665), - [anon_sym_spawn] = ACTIONS(4665), - [anon_sym_json_DOTdecode] = ACTIONS(4665), - [anon_sym_LBRACK2] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_CARET] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4665), - [anon_sym_LT_DASH] = ACTIONS(4665), - [sym_none] = ACTIONS(4665), - [sym_true] = ACTIONS(4665), - [sym_false] = ACTIONS(4665), - [sym_nil] = ACTIONS(4665), - [anon_sym_if] = ACTIONS(4665), - [anon_sym_DOLLARif] = ACTIONS(4665), - [anon_sym_match] = ACTIONS(4665), - [anon_sym_select] = ACTIONS(4665), - [anon_sym_lock] = ACTIONS(4665), - [anon_sym_rlock] = ACTIONS(4665), - [anon_sym_unsafe] = ACTIONS(4665), - [anon_sym_sql] = ACTIONS(4665), - [sym_int_literal] = ACTIONS(4665), - [sym_float_literal] = ACTIONS(4665), - [sym_rune_literal] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_c_SQUOTE] = ACTIONS(4665), - [anon_sym_c_DQUOTE] = ACTIONS(4665), - [anon_sym_r_SQUOTE] = ACTIONS(4665), - [anon_sym_r_DQUOTE] = ACTIONS(4665), - [sym_pseudo_compile_time_identifier] = ACTIONS(4665), - [anon_sym_shared] = ACTIONS(4665), - [anon_sym_map_LBRACK] = ACTIONS(4665), - [anon_sym_chan] = ACTIONS(4665), - [anon_sym_thread] = ACTIONS(4665), - [anon_sym_atomic] = ACTIONS(4665), - [anon_sym_assert] = ACTIONS(4665), - [anon_sym_defer] = ACTIONS(4665), - [anon_sym_goto] = ACTIONS(4665), - [anon_sym_break] = ACTIONS(4665), - [anon_sym_continue] = ACTIONS(4665), - [anon_sym_return] = ACTIONS(4665), - [anon_sym_DOLLARfor] = ACTIONS(4665), - [anon_sym_for] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_asm] = ACTIONS(4665), - [anon_sym_AT_LBRACK] = ACTIONS(4665), + [anon_sym_DOT] = ACTIONS(4667), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_const] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym___global] = ACTIONS(4667), + [anon_sym_type] = ACTIONS(4667), + [anon_sym_fn] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(4667), + [anon_sym_STAR] = ACTIONS(4667), + [anon_sym_struct] = ACTIONS(4667), + [anon_sym_union] = ACTIONS(4667), + [anon_sym_pub] = ACTIONS(4667), + [anon_sym_mut] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(4667), + [anon_sym_interface] = ACTIONS(4667), + [anon_sym_QMARK] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4667), + [anon_sym_go] = ACTIONS(4667), + [anon_sym_spawn] = ACTIONS(4667), + [anon_sym_json_DOTdecode] = ACTIONS(4667), + [anon_sym_LBRACK2] = ACTIONS(4667), + [anon_sym_TILDE] = ACTIONS(4667), + [anon_sym_CARET] = ACTIONS(4667), + [anon_sym_AMP] = ACTIONS(4667), + [anon_sym_LT_DASH] = ACTIONS(4667), + [sym_none] = ACTIONS(4667), + [sym_true] = ACTIONS(4667), + [sym_false] = ACTIONS(4667), + [sym_nil] = ACTIONS(4667), + [anon_sym_if] = ACTIONS(4667), + [anon_sym_DOLLARif] = ACTIONS(4667), + [anon_sym_match] = ACTIONS(4667), + [anon_sym_select] = ACTIONS(4667), + [anon_sym_lock] = ACTIONS(4667), + [anon_sym_rlock] = ACTIONS(4667), + [anon_sym_unsafe] = ACTIONS(4667), + [anon_sym_sql] = ACTIONS(4667), + [sym_int_literal] = ACTIONS(4667), + [sym_float_literal] = ACTIONS(4667), + [sym_rune_literal] = ACTIONS(4667), + [anon_sym_SQUOTE] = ACTIONS(4667), + [anon_sym_DQUOTE] = ACTIONS(4667), + [anon_sym_c_SQUOTE] = ACTIONS(4667), + [anon_sym_c_DQUOTE] = ACTIONS(4667), + [anon_sym_r_SQUOTE] = ACTIONS(4667), + [anon_sym_r_DQUOTE] = ACTIONS(4667), + [sym_pseudo_compile_time_identifier] = ACTIONS(4667), + [anon_sym_shared] = ACTIONS(4667), + [anon_sym_map_LBRACK] = ACTIONS(4667), + [anon_sym_chan] = ACTIONS(4667), + [anon_sym_thread] = ACTIONS(4667), + [anon_sym_atomic] = ACTIONS(4667), + [anon_sym_assert] = ACTIONS(4667), + [anon_sym_defer] = ACTIONS(4667), + [anon_sym_goto] = ACTIONS(4667), + [anon_sym_break] = ACTIONS(4667), + [anon_sym_continue] = ACTIONS(4667), + [anon_sym_return] = ACTIONS(4667), + [anon_sym_DOLLARfor] = ACTIONS(4667), + [anon_sym_for] = ACTIONS(4667), + [anon_sym_POUND] = ACTIONS(4667), + [anon_sym_asm] = ACTIONS(4667), + [anon_sym_AT_LBRACK] = ACTIONS(4667), }, [1819] = { [sym_line_comment] = STATE(1819), [sym_block_comment] = STATE(1819), - [ts_builtin_sym_end] = ACTIONS(4667), - [sym_identifier] = ACTIONS(4669), - [anon_sym_LF] = ACTIONS(4669), - [anon_sym_CR] = ACTIONS(4669), - [anon_sym_CR_LF] = ACTIONS(4669), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LF] = ACTIONS(3296), + [anon_sym_CR] = ACTIONS(3296), + [anon_sym_CR_LF] = ACTIONS(3296), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_const] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym___global] = ACTIONS(4669), - [anon_sym_type] = ACTIONS(4669), - [anon_sym_fn] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_struct] = ACTIONS(4669), - [anon_sym_union] = ACTIONS(4669), - [anon_sym_pub] = ACTIONS(4669), - [anon_sym_mut] = ACTIONS(4669), - [anon_sym_enum] = ACTIONS(4669), - [anon_sym_interface] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_go] = ACTIONS(4669), - [anon_sym_spawn] = ACTIONS(4669), - [anon_sym_json_DOTdecode] = ACTIONS(4669), - [anon_sym_LBRACK2] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4669), - [anon_sym_LT_DASH] = ACTIONS(4669), - [sym_none] = ACTIONS(4669), - [sym_true] = ACTIONS(4669), - [sym_false] = ACTIONS(4669), - [sym_nil] = ACTIONS(4669), - [anon_sym_if] = ACTIONS(4669), - [anon_sym_DOLLARif] = ACTIONS(4669), - [anon_sym_match] = ACTIONS(4669), - [anon_sym_select] = ACTIONS(4669), - [anon_sym_lock] = ACTIONS(4669), - [anon_sym_rlock] = ACTIONS(4669), - [anon_sym_unsafe] = ACTIONS(4669), - [anon_sym_sql] = ACTIONS(4669), - [sym_int_literal] = ACTIONS(4669), - [sym_float_literal] = ACTIONS(4669), - [sym_rune_literal] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_c_SQUOTE] = ACTIONS(4669), - [anon_sym_c_DQUOTE] = ACTIONS(4669), - [anon_sym_r_SQUOTE] = ACTIONS(4669), - [anon_sym_r_DQUOTE] = ACTIONS(4669), - [sym_pseudo_compile_time_identifier] = ACTIONS(4669), - [anon_sym_shared] = ACTIONS(4669), - [anon_sym_map_LBRACK] = ACTIONS(4669), - [anon_sym_chan] = ACTIONS(4669), - [anon_sym_thread] = ACTIONS(4669), - [anon_sym_atomic] = ACTIONS(4669), - [anon_sym_assert] = ACTIONS(4669), - [anon_sym_defer] = ACTIONS(4669), - [anon_sym_goto] = ACTIONS(4669), - [anon_sym_break] = ACTIONS(4669), - [anon_sym_continue] = ACTIONS(4669), - [anon_sym_return] = ACTIONS(4669), - [anon_sym_DOLLARfor] = ACTIONS(4669), - [anon_sym_for] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_asm] = ACTIONS(4669), - [anon_sym_AT_LBRACK] = ACTIONS(4669), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym___global] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_union] = ACTIONS(3296), + [anon_sym_pub] = ACTIONS(3296), + [anon_sym_mut] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3296), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [sym_none] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_nil] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_DOLLARif] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_select] = ACTIONS(3296), + [anon_sym_lock] = ACTIONS(3296), + [anon_sym_rlock] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_sql] = ACTIONS(3296), + [sym_int_literal] = ACTIONS(3296), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_c_SQUOTE] = ACTIONS(3296), + [anon_sym_c_DQUOTE] = ACTIONS(3296), + [anon_sym_r_SQUOTE] = ACTIONS(3296), + [anon_sym_r_DQUOTE] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3296), + [anon_sym_shared] = ACTIONS(3296), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3296), + [anon_sym_thread] = ACTIONS(3296), + [anon_sym_atomic] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_defer] = ACTIONS(3296), + [anon_sym_goto] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_DOLLARfor] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3296), + [anon_sym_asm] = ACTIONS(3296), + [anon_sym_AT_LBRACK] = ACTIONS(3296), }, [1820] = { [sym_line_comment] = STATE(1820), [sym_block_comment] = STATE(1820), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [ts_builtin_sym_end] = ACTIONS(4669), + [sym_identifier] = ACTIONS(4671), + [anon_sym_LF] = ACTIONS(4671), + [anon_sym_CR] = ACTIONS(4671), + [anon_sym_CR_LF] = ACTIONS(4671), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_LBRACE] = ACTIONS(4671), + [anon_sym_const] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym___global] = ACTIONS(4671), + [anon_sym_type] = ACTIONS(4671), + [anon_sym_fn] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4671), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4671), + [anon_sym_struct] = ACTIONS(4671), + [anon_sym_union] = ACTIONS(4671), + [anon_sym_pub] = ACTIONS(4671), + [anon_sym_mut] = ACTIONS(4671), + [anon_sym_enum] = ACTIONS(4671), + [anon_sym_interface] = ACTIONS(4671), + [anon_sym_QMARK] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4671), + [anon_sym_go] = ACTIONS(4671), + [anon_sym_spawn] = ACTIONS(4671), + [anon_sym_json_DOTdecode] = ACTIONS(4671), + [anon_sym_LBRACK2] = ACTIONS(4671), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [anon_sym_LT_DASH] = ACTIONS(4671), + [sym_none] = ACTIONS(4671), + [sym_true] = ACTIONS(4671), + [sym_false] = ACTIONS(4671), + [sym_nil] = ACTIONS(4671), + [anon_sym_if] = ACTIONS(4671), + [anon_sym_DOLLARif] = ACTIONS(4671), + [anon_sym_match] = ACTIONS(4671), + [anon_sym_select] = ACTIONS(4671), + [anon_sym_lock] = ACTIONS(4671), + [anon_sym_rlock] = ACTIONS(4671), + [anon_sym_unsafe] = ACTIONS(4671), + [anon_sym_sql] = ACTIONS(4671), + [sym_int_literal] = ACTIONS(4671), + [sym_float_literal] = ACTIONS(4671), + [sym_rune_literal] = ACTIONS(4671), + [anon_sym_SQUOTE] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(4671), + [anon_sym_c_SQUOTE] = ACTIONS(4671), + [anon_sym_c_DQUOTE] = ACTIONS(4671), + [anon_sym_r_SQUOTE] = ACTIONS(4671), + [anon_sym_r_DQUOTE] = ACTIONS(4671), + [sym_pseudo_compile_time_identifier] = ACTIONS(4671), + [anon_sym_shared] = ACTIONS(4671), + [anon_sym_map_LBRACK] = ACTIONS(4671), + [anon_sym_chan] = ACTIONS(4671), + [anon_sym_thread] = ACTIONS(4671), + [anon_sym_atomic] = ACTIONS(4671), + [anon_sym_assert] = ACTIONS(4671), + [anon_sym_defer] = ACTIONS(4671), + [anon_sym_goto] = ACTIONS(4671), + [anon_sym_break] = ACTIONS(4671), + [anon_sym_continue] = ACTIONS(4671), + [anon_sym_return] = ACTIONS(4671), + [anon_sym_DOLLARfor] = ACTIONS(4671), + [anon_sym_for] = ACTIONS(4671), + [anon_sym_POUND] = ACTIONS(4671), + [anon_sym_asm] = ACTIONS(4671), + [anon_sym_AT_LBRACK] = ACTIONS(4671), + }, + [1821] = { + [sym_line_comment] = STATE(1821), + [sym_block_comment] = STATE(1821), + [ts_builtin_sym_end] = ACTIONS(4673), + [sym_identifier] = ACTIONS(4675), + [anon_sym_LF] = ACTIONS(4675), + [anon_sym_CR] = ACTIONS(4675), + [anon_sym_CR_LF] = ACTIONS(4675), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4675), + [anon_sym_LBRACE] = ACTIONS(4675), + [anon_sym_const] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym___global] = ACTIONS(4675), + [anon_sym_type] = ACTIONS(4675), + [anon_sym_fn] = ACTIONS(4675), + [anon_sym_PLUS] = ACTIONS(4675), + [anon_sym_DASH] = ACTIONS(4675), + [anon_sym_STAR] = ACTIONS(4675), + [anon_sym_struct] = ACTIONS(4675), + [anon_sym_union] = ACTIONS(4675), + [anon_sym_pub] = ACTIONS(4675), + [anon_sym_mut] = ACTIONS(4675), + [anon_sym_enum] = ACTIONS(4675), + [anon_sym_interface] = ACTIONS(4675), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_BANG] = ACTIONS(4675), + [anon_sym_go] = ACTIONS(4675), + [anon_sym_spawn] = ACTIONS(4675), + [anon_sym_json_DOTdecode] = ACTIONS(4675), + [anon_sym_LBRACK2] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_CARET] = ACTIONS(4675), + [anon_sym_AMP] = ACTIONS(4675), + [anon_sym_LT_DASH] = ACTIONS(4675), + [sym_none] = ACTIONS(4675), + [sym_true] = ACTIONS(4675), + [sym_false] = ACTIONS(4675), + [sym_nil] = ACTIONS(4675), + [anon_sym_if] = ACTIONS(4675), + [anon_sym_DOLLARif] = ACTIONS(4675), + [anon_sym_match] = ACTIONS(4675), + [anon_sym_select] = ACTIONS(4675), + [anon_sym_lock] = ACTIONS(4675), + [anon_sym_rlock] = ACTIONS(4675), + [anon_sym_unsafe] = ACTIONS(4675), + [anon_sym_sql] = ACTIONS(4675), + [sym_int_literal] = ACTIONS(4675), + [sym_float_literal] = ACTIONS(4675), + [sym_rune_literal] = ACTIONS(4675), + [anon_sym_SQUOTE] = ACTIONS(4675), + [anon_sym_DQUOTE] = ACTIONS(4675), + [anon_sym_c_SQUOTE] = ACTIONS(4675), + [anon_sym_c_DQUOTE] = ACTIONS(4675), + [anon_sym_r_SQUOTE] = ACTIONS(4675), + [anon_sym_r_DQUOTE] = ACTIONS(4675), + [sym_pseudo_compile_time_identifier] = ACTIONS(4675), + [anon_sym_shared] = ACTIONS(4675), + [anon_sym_map_LBRACK] = ACTIONS(4675), + [anon_sym_chan] = ACTIONS(4675), + [anon_sym_thread] = ACTIONS(4675), + [anon_sym_atomic] = ACTIONS(4675), + [anon_sym_assert] = ACTIONS(4675), + [anon_sym_defer] = ACTIONS(4675), + [anon_sym_goto] = ACTIONS(4675), + [anon_sym_break] = ACTIONS(4675), + [anon_sym_continue] = ACTIONS(4675), + [anon_sym_return] = ACTIONS(4675), + [anon_sym_DOLLARfor] = ACTIONS(4675), + [anon_sym_for] = ACTIONS(4675), + [anon_sym_POUND] = ACTIONS(4675), + [anon_sym_asm] = ACTIONS(4675), + [anon_sym_AT_LBRACK] = ACTIONS(4675), + }, + [1822] = { + [sym_line_comment] = STATE(1822), + [sym_block_comment] = STATE(1822), + [ts_builtin_sym_end] = ACTIONS(4677), + [sym_identifier] = ACTIONS(4679), + [anon_sym_LF] = ACTIONS(4679), + [anon_sym_CR] = ACTIONS(4679), + [anon_sym_CR_LF] = ACTIONS(4679), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_const] = ACTIONS(4679), + [anon_sym_LPAREN] = ACTIONS(4679), + [anon_sym___global] = ACTIONS(4679), + [anon_sym_type] = ACTIONS(4679), + [anon_sym_fn] = ACTIONS(4679), + [anon_sym_PLUS] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(4679), + [anon_sym_STAR] = ACTIONS(4679), + [anon_sym_struct] = ACTIONS(4679), + [anon_sym_union] = ACTIONS(4679), + [anon_sym_pub] = ACTIONS(4679), + [anon_sym_mut] = ACTIONS(4679), + [anon_sym_enum] = ACTIONS(4679), + [anon_sym_interface] = ACTIONS(4679), + [anon_sym_QMARK] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4679), + [anon_sym_go] = ACTIONS(4679), + [anon_sym_spawn] = ACTIONS(4679), + [anon_sym_json_DOTdecode] = ACTIONS(4679), + [anon_sym_LBRACK2] = ACTIONS(4679), + [anon_sym_TILDE] = ACTIONS(4679), + [anon_sym_CARET] = ACTIONS(4679), + [anon_sym_AMP] = ACTIONS(4679), + [anon_sym_LT_DASH] = ACTIONS(4679), + [sym_none] = ACTIONS(4679), + [sym_true] = ACTIONS(4679), + [sym_false] = ACTIONS(4679), + [sym_nil] = ACTIONS(4679), + [anon_sym_if] = ACTIONS(4679), + [anon_sym_DOLLARif] = ACTIONS(4679), + [anon_sym_match] = ACTIONS(4679), + [anon_sym_select] = ACTIONS(4679), + [anon_sym_lock] = ACTIONS(4679), + [anon_sym_rlock] = ACTIONS(4679), + [anon_sym_unsafe] = ACTIONS(4679), + [anon_sym_sql] = ACTIONS(4679), + [sym_int_literal] = ACTIONS(4679), + [sym_float_literal] = ACTIONS(4679), + [sym_rune_literal] = ACTIONS(4679), + [anon_sym_SQUOTE] = ACTIONS(4679), + [anon_sym_DQUOTE] = ACTIONS(4679), + [anon_sym_c_SQUOTE] = ACTIONS(4679), + [anon_sym_c_DQUOTE] = ACTIONS(4679), + [anon_sym_r_SQUOTE] = ACTIONS(4679), + [anon_sym_r_DQUOTE] = ACTIONS(4679), + [sym_pseudo_compile_time_identifier] = ACTIONS(4679), + [anon_sym_shared] = ACTIONS(4679), + [anon_sym_map_LBRACK] = ACTIONS(4679), + [anon_sym_chan] = ACTIONS(4679), + [anon_sym_thread] = ACTIONS(4679), + [anon_sym_atomic] = ACTIONS(4679), + [anon_sym_assert] = ACTIONS(4679), + [anon_sym_defer] = ACTIONS(4679), + [anon_sym_goto] = ACTIONS(4679), + [anon_sym_break] = ACTIONS(4679), + [anon_sym_continue] = ACTIONS(4679), + [anon_sym_return] = ACTIONS(4679), + [anon_sym_DOLLARfor] = ACTIONS(4679), + [anon_sym_for] = ACTIONS(4679), + [anon_sym_POUND] = ACTIONS(4679), + [anon_sym_asm] = ACTIONS(4679), + [anon_sym_AT_LBRACK] = ACTIONS(4679), + }, + [1823] = { + [sym_line_comment] = STATE(1823), + [sym_block_comment] = STATE(1823), + [ts_builtin_sym_end] = ACTIONS(4681), + [sym_identifier] = ACTIONS(4683), + [anon_sym_LF] = ACTIONS(4683), + [anon_sym_CR] = ACTIONS(4683), + [anon_sym_CR_LF] = ACTIONS(4683), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4683), + [anon_sym_LBRACE] = ACTIONS(4683), + [anon_sym_const] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(4683), + [anon_sym___global] = ACTIONS(4683), + [anon_sym_type] = ACTIONS(4683), + [anon_sym_fn] = ACTIONS(4683), + [anon_sym_PLUS] = ACTIONS(4683), + [anon_sym_DASH] = ACTIONS(4683), + [anon_sym_STAR] = ACTIONS(4683), + [anon_sym_struct] = ACTIONS(4683), + [anon_sym_union] = ACTIONS(4683), + [anon_sym_pub] = ACTIONS(4683), + [anon_sym_mut] = ACTIONS(4683), + [anon_sym_enum] = ACTIONS(4683), + [anon_sym_interface] = ACTIONS(4683), + [anon_sym_QMARK] = ACTIONS(4683), + [anon_sym_BANG] = ACTIONS(4683), + [anon_sym_go] = ACTIONS(4683), + [anon_sym_spawn] = ACTIONS(4683), + [anon_sym_json_DOTdecode] = ACTIONS(4683), + [anon_sym_LBRACK2] = ACTIONS(4683), + [anon_sym_TILDE] = ACTIONS(4683), + [anon_sym_CARET] = ACTIONS(4683), + [anon_sym_AMP] = ACTIONS(4683), + [anon_sym_LT_DASH] = ACTIONS(4683), + [sym_none] = ACTIONS(4683), + [sym_true] = ACTIONS(4683), + [sym_false] = ACTIONS(4683), + [sym_nil] = ACTIONS(4683), + [anon_sym_if] = ACTIONS(4683), + [anon_sym_DOLLARif] = ACTIONS(4683), + [anon_sym_match] = ACTIONS(4683), + [anon_sym_select] = ACTIONS(4683), + [anon_sym_lock] = ACTIONS(4683), + [anon_sym_rlock] = ACTIONS(4683), + [anon_sym_unsafe] = ACTIONS(4683), + [anon_sym_sql] = ACTIONS(4683), + [sym_int_literal] = ACTIONS(4683), + [sym_float_literal] = ACTIONS(4683), + [sym_rune_literal] = ACTIONS(4683), + [anon_sym_SQUOTE] = ACTIONS(4683), + [anon_sym_DQUOTE] = ACTIONS(4683), + [anon_sym_c_SQUOTE] = ACTIONS(4683), + [anon_sym_c_DQUOTE] = ACTIONS(4683), + [anon_sym_r_SQUOTE] = ACTIONS(4683), + [anon_sym_r_DQUOTE] = ACTIONS(4683), + [sym_pseudo_compile_time_identifier] = ACTIONS(4683), + [anon_sym_shared] = ACTIONS(4683), + [anon_sym_map_LBRACK] = ACTIONS(4683), + [anon_sym_chan] = ACTIONS(4683), + [anon_sym_thread] = ACTIONS(4683), + [anon_sym_atomic] = ACTIONS(4683), + [anon_sym_assert] = ACTIONS(4683), + [anon_sym_defer] = ACTIONS(4683), + [anon_sym_goto] = ACTIONS(4683), + [anon_sym_break] = ACTIONS(4683), + [anon_sym_continue] = ACTIONS(4683), + [anon_sym_return] = ACTIONS(4683), + [anon_sym_DOLLARfor] = ACTIONS(4683), + [anon_sym_for] = ACTIONS(4683), + [anon_sym_POUND] = ACTIONS(4683), + [anon_sym_asm] = ACTIONS(4683), + [anon_sym_AT_LBRACK] = ACTIONS(4683), + }, + [1824] = { + [sym_line_comment] = STATE(1824), + [sym_block_comment] = STATE(1824), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(851), @@ -214152,7 +214690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(849), [anon_sym_COMMA] = ACTIONS(849), [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_fn] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(869), [anon_sym_PLUS] = ACTIONS(851), [anon_sym_DASH] = ACTIONS(851), [anon_sym_STAR] = ACTIONS(849), @@ -214166,7 +214704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(849), [anon_sym_DOT_DOT_DOT] = ACTIONS(849), [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(873), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_QMARK] = ACTIONS(851), @@ -214189,4966 +214727,4891 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(851), [anon_sym_BANGin] = ACTIONS(849), [anon_sym_COLON_EQ] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), [anon_sym_DOT_DOT] = ACTIONS(851), }, - [1821] = { - [sym_line_comment] = STATE(1821), - [sym_block_comment] = STATE(1821), - [ts_builtin_sym_end] = ACTIONS(4671), - [sym_identifier] = ACTIONS(4673), - [anon_sym_LF] = ACTIONS(4673), - [anon_sym_CR] = ACTIONS(4673), - [anon_sym_CR_LF] = ACTIONS(4673), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_const] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym___global] = ACTIONS(4673), - [anon_sym_type] = ACTIONS(4673), - [anon_sym_fn] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_struct] = ACTIONS(4673), - [anon_sym_union] = ACTIONS(4673), - [anon_sym_pub] = ACTIONS(4673), - [anon_sym_mut] = ACTIONS(4673), - [anon_sym_enum] = ACTIONS(4673), - [anon_sym_interface] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_go] = ACTIONS(4673), - [anon_sym_spawn] = ACTIONS(4673), - [anon_sym_json_DOTdecode] = ACTIONS(4673), - [anon_sym_LBRACK2] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_DASH] = ACTIONS(4673), - [sym_none] = ACTIONS(4673), - [sym_true] = ACTIONS(4673), - [sym_false] = ACTIONS(4673), - [sym_nil] = ACTIONS(4673), - [anon_sym_if] = ACTIONS(4673), - [anon_sym_DOLLARif] = ACTIONS(4673), - [anon_sym_match] = ACTIONS(4673), - [anon_sym_select] = ACTIONS(4673), - [anon_sym_lock] = ACTIONS(4673), - [anon_sym_rlock] = ACTIONS(4673), - [anon_sym_unsafe] = ACTIONS(4673), - [anon_sym_sql] = ACTIONS(4673), - [sym_int_literal] = ACTIONS(4673), - [sym_float_literal] = ACTIONS(4673), - [sym_rune_literal] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_c_SQUOTE] = ACTIONS(4673), - [anon_sym_c_DQUOTE] = ACTIONS(4673), - [anon_sym_r_SQUOTE] = ACTIONS(4673), - [anon_sym_r_DQUOTE] = ACTIONS(4673), - [sym_pseudo_compile_time_identifier] = ACTIONS(4673), - [anon_sym_shared] = ACTIONS(4673), - [anon_sym_map_LBRACK] = ACTIONS(4673), - [anon_sym_chan] = ACTIONS(4673), - [anon_sym_thread] = ACTIONS(4673), - [anon_sym_atomic] = ACTIONS(4673), - [anon_sym_assert] = ACTIONS(4673), - [anon_sym_defer] = ACTIONS(4673), - [anon_sym_goto] = ACTIONS(4673), - [anon_sym_break] = ACTIONS(4673), - [anon_sym_continue] = ACTIONS(4673), - [anon_sym_return] = ACTIONS(4673), - [anon_sym_DOLLARfor] = ACTIONS(4673), - [anon_sym_for] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_asm] = ACTIONS(4673), - [anon_sym_AT_LBRACK] = ACTIONS(4673), - }, - [1822] = { - [sym_line_comment] = STATE(1822), - [sym_block_comment] = STATE(1822), - [ts_builtin_sym_end] = ACTIONS(4675), - [sym_identifier] = ACTIONS(4677), - [anon_sym_LF] = ACTIONS(4677), - [anon_sym_CR] = ACTIONS(4677), - [anon_sym_CR_LF] = ACTIONS(4677), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_const] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym___global] = ACTIONS(4677), - [anon_sym_type] = ACTIONS(4677), - [anon_sym_fn] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_struct] = ACTIONS(4677), - [anon_sym_union] = ACTIONS(4677), - [anon_sym_pub] = ACTIONS(4677), - [anon_sym_mut] = ACTIONS(4677), - [anon_sym_enum] = ACTIONS(4677), - [anon_sym_interface] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_go] = ACTIONS(4677), - [anon_sym_spawn] = ACTIONS(4677), - [anon_sym_json_DOTdecode] = ACTIONS(4677), - [anon_sym_LBRACK2] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4677), - [anon_sym_LT_DASH] = ACTIONS(4677), - [sym_none] = ACTIONS(4677), - [sym_true] = ACTIONS(4677), - [sym_false] = ACTIONS(4677), - [sym_nil] = ACTIONS(4677), - [anon_sym_if] = ACTIONS(4677), - [anon_sym_DOLLARif] = ACTIONS(4677), - [anon_sym_match] = ACTIONS(4677), - [anon_sym_select] = ACTIONS(4677), - [anon_sym_lock] = ACTIONS(4677), - [anon_sym_rlock] = ACTIONS(4677), - [anon_sym_unsafe] = ACTIONS(4677), - [anon_sym_sql] = ACTIONS(4677), - [sym_int_literal] = ACTIONS(4677), - [sym_float_literal] = ACTIONS(4677), - [sym_rune_literal] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_c_SQUOTE] = ACTIONS(4677), - [anon_sym_c_DQUOTE] = ACTIONS(4677), - [anon_sym_r_SQUOTE] = ACTIONS(4677), - [anon_sym_r_DQUOTE] = ACTIONS(4677), - [sym_pseudo_compile_time_identifier] = ACTIONS(4677), - [anon_sym_shared] = ACTIONS(4677), - [anon_sym_map_LBRACK] = ACTIONS(4677), - [anon_sym_chan] = ACTIONS(4677), - [anon_sym_thread] = ACTIONS(4677), - [anon_sym_atomic] = ACTIONS(4677), - [anon_sym_assert] = ACTIONS(4677), - [anon_sym_defer] = ACTIONS(4677), - [anon_sym_goto] = ACTIONS(4677), - [anon_sym_break] = ACTIONS(4677), - [anon_sym_continue] = ACTIONS(4677), - [anon_sym_return] = ACTIONS(4677), - [anon_sym_DOLLARfor] = ACTIONS(4677), - [anon_sym_for] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_asm] = ACTIONS(4677), - [anon_sym_AT_LBRACK] = ACTIONS(4677), - }, - [1823] = { - [sym_line_comment] = STATE(1823), - [sym_block_comment] = STATE(1823), - [ts_builtin_sym_end] = ACTIONS(4679), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LF] = ACTIONS(4681), - [anon_sym_CR] = ACTIONS(4681), - [anon_sym_CR_LF] = ACTIONS(4681), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_const] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym___global] = ACTIONS(4681), - [anon_sym_type] = ACTIONS(4681), - [anon_sym_fn] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_struct] = ACTIONS(4681), - [anon_sym_union] = ACTIONS(4681), - [anon_sym_pub] = ACTIONS(4681), - [anon_sym_mut] = ACTIONS(4681), - [anon_sym_enum] = ACTIONS(4681), - [anon_sym_interface] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_go] = ACTIONS(4681), - [anon_sym_spawn] = ACTIONS(4681), - [anon_sym_json_DOTdecode] = ACTIONS(4681), - [anon_sym_LBRACK2] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_CARET] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4681), - [anon_sym_LT_DASH] = ACTIONS(4681), - [sym_none] = ACTIONS(4681), - [sym_true] = ACTIONS(4681), - [sym_false] = ACTIONS(4681), - [sym_nil] = ACTIONS(4681), - [anon_sym_if] = ACTIONS(4681), - [anon_sym_DOLLARif] = ACTIONS(4681), - [anon_sym_match] = ACTIONS(4681), - [anon_sym_select] = ACTIONS(4681), - [anon_sym_lock] = ACTIONS(4681), - [anon_sym_rlock] = ACTIONS(4681), - [anon_sym_unsafe] = ACTIONS(4681), - [anon_sym_sql] = ACTIONS(4681), - [sym_int_literal] = ACTIONS(4681), - [sym_float_literal] = ACTIONS(4681), - [sym_rune_literal] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_c_SQUOTE] = ACTIONS(4681), - [anon_sym_c_DQUOTE] = ACTIONS(4681), - [anon_sym_r_SQUOTE] = ACTIONS(4681), - [anon_sym_r_DQUOTE] = ACTIONS(4681), - [sym_pseudo_compile_time_identifier] = ACTIONS(4681), - [anon_sym_shared] = ACTIONS(4681), - [anon_sym_map_LBRACK] = ACTIONS(4681), - [anon_sym_chan] = ACTIONS(4681), - [anon_sym_thread] = ACTIONS(4681), - [anon_sym_atomic] = ACTIONS(4681), - [anon_sym_assert] = ACTIONS(4681), - [anon_sym_defer] = ACTIONS(4681), - [anon_sym_goto] = ACTIONS(4681), - [anon_sym_break] = ACTIONS(4681), - [anon_sym_continue] = ACTIONS(4681), - [anon_sym_return] = ACTIONS(4681), - [anon_sym_DOLLARfor] = ACTIONS(4681), - [anon_sym_for] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_asm] = ACTIONS(4681), - [anon_sym_AT_LBRACK] = ACTIONS(4681), - }, - [1824] = { - [sym_line_comment] = STATE(1824), - [sym_block_comment] = STATE(1824), - [ts_builtin_sym_end] = ACTIONS(4683), - [sym_identifier] = ACTIONS(4685), - [anon_sym_LF] = ACTIONS(4685), - [anon_sym_CR] = ACTIONS(4685), - [anon_sym_CR_LF] = ACTIONS(4685), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym___global] = ACTIONS(4685), - [anon_sym_type] = ACTIONS(4685), - [anon_sym_fn] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_pub] = ACTIONS(4685), - [anon_sym_mut] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_interface] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_go] = ACTIONS(4685), - [anon_sym_spawn] = ACTIONS(4685), - [anon_sym_json_DOTdecode] = ACTIONS(4685), - [anon_sym_LBRACK2] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_CARET] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4685), - [anon_sym_LT_DASH] = ACTIONS(4685), - [sym_none] = ACTIONS(4685), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_nil] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_DOLLARif] = ACTIONS(4685), - [anon_sym_match] = ACTIONS(4685), - [anon_sym_select] = ACTIONS(4685), - [anon_sym_lock] = ACTIONS(4685), - [anon_sym_rlock] = ACTIONS(4685), - [anon_sym_unsafe] = ACTIONS(4685), - [anon_sym_sql] = ACTIONS(4685), - [sym_int_literal] = ACTIONS(4685), - [sym_float_literal] = ACTIONS(4685), - [sym_rune_literal] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_c_SQUOTE] = ACTIONS(4685), - [anon_sym_c_DQUOTE] = ACTIONS(4685), - [anon_sym_r_SQUOTE] = ACTIONS(4685), - [anon_sym_r_DQUOTE] = ACTIONS(4685), - [sym_pseudo_compile_time_identifier] = ACTIONS(4685), - [anon_sym_shared] = ACTIONS(4685), - [anon_sym_map_LBRACK] = ACTIONS(4685), - [anon_sym_chan] = ACTIONS(4685), - [anon_sym_thread] = ACTIONS(4685), - [anon_sym_atomic] = ACTIONS(4685), - [anon_sym_assert] = ACTIONS(4685), - [anon_sym_defer] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_DOLLARfor] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_asm] = ACTIONS(4685), - [anon_sym_AT_LBRACK] = ACTIONS(4685), - }, [1825] = { [sym_line_comment] = STATE(1825), [sym_block_comment] = STATE(1825), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LF] = ACTIONS(3354), - [anon_sym_CR] = ACTIONS(3354), - [anon_sym_CR_LF] = ACTIONS(3354), + [ts_builtin_sym_end] = ACTIONS(4685), + [sym_identifier] = ACTIONS(4687), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_CR] = ACTIONS(4687), + [anon_sym_CR_LF] = ACTIONS(4687), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym___global] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_fn] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_pub] = ACTIONS(3354), - [anon_sym_mut] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_go] = ACTIONS(3354), - [anon_sym_spawn] = ACTIONS(3354), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_LT_DASH] = ACTIONS(3354), - [sym_none] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_nil] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_DOLLARif] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3354), - [anon_sym_select] = ACTIONS(3354), - [anon_sym_lock] = ACTIONS(3354), - [anon_sym_rlock] = ACTIONS(3354), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3354), - [sym_int_literal] = ACTIONS(3354), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_c_SQUOTE] = ACTIONS(3354), - [anon_sym_c_DQUOTE] = ACTIONS(3354), - [anon_sym_r_SQUOTE] = ACTIONS(3354), - [anon_sym_r_DQUOTE] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3354), - [anon_sym_shared] = ACTIONS(3354), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3354), - [anon_sym_thread] = ACTIONS(3354), - [anon_sym_atomic] = ACTIONS(3354), - [anon_sym_assert] = ACTIONS(3354), - [anon_sym_defer] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_DOLLARfor] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym_AT_LBRACK] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(4687), + [anon_sym_LBRACE] = ACTIONS(4687), + [anon_sym_const] = ACTIONS(4687), + [anon_sym_LPAREN] = ACTIONS(4687), + [anon_sym___global] = ACTIONS(4687), + [anon_sym_type] = ACTIONS(4687), + [anon_sym_fn] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4687), + [anon_sym_STAR] = ACTIONS(4687), + [anon_sym_struct] = ACTIONS(4687), + [anon_sym_union] = ACTIONS(4687), + [anon_sym_pub] = ACTIONS(4687), + [anon_sym_mut] = ACTIONS(4687), + [anon_sym_enum] = ACTIONS(4687), + [anon_sym_interface] = ACTIONS(4687), + [anon_sym_QMARK] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(4687), + [anon_sym_go] = ACTIONS(4687), + [anon_sym_spawn] = ACTIONS(4687), + [anon_sym_json_DOTdecode] = ACTIONS(4687), + [anon_sym_LBRACK2] = ACTIONS(4687), + [anon_sym_TILDE] = ACTIONS(4687), + [anon_sym_CARET] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4687), + [anon_sym_LT_DASH] = ACTIONS(4687), + [sym_none] = ACTIONS(4687), + [sym_true] = ACTIONS(4687), + [sym_false] = ACTIONS(4687), + [sym_nil] = ACTIONS(4687), + [anon_sym_if] = ACTIONS(4687), + [anon_sym_DOLLARif] = ACTIONS(4687), + [anon_sym_match] = ACTIONS(4687), + [anon_sym_select] = ACTIONS(4687), + [anon_sym_lock] = ACTIONS(4687), + [anon_sym_rlock] = ACTIONS(4687), + [anon_sym_unsafe] = ACTIONS(4687), + [anon_sym_sql] = ACTIONS(4687), + [sym_int_literal] = ACTIONS(4687), + [sym_float_literal] = ACTIONS(4687), + [sym_rune_literal] = ACTIONS(4687), + [anon_sym_SQUOTE] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_c_SQUOTE] = ACTIONS(4687), + [anon_sym_c_DQUOTE] = ACTIONS(4687), + [anon_sym_r_SQUOTE] = ACTIONS(4687), + [anon_sym_r_DQUOTE] = ACTIONS(4687), + [sym_pseudo_compile_time_identifier] = ACTIONS(4687), + [anon_sym_shared] = ACTIONS(4687), + [anon_sym_map_LBRACK] = ACTIONS(4687), + [anon_sym_chan] = ACTIONS(4687), + [anon_sym_thread] = ACTIONS(4687), + [anon_sym_atomic] = ACTIONS(4687), + [anon_sym_assert] = ACTIONS(4687), + [anon_sym_defer] = ACTIONS(4687), + [anon_sym_goto] = ACTIONS(4687), + [anon_sym_break] = ACTIONS(4687), + [anon_sym_continue] = ACTIONS(4687), + [anon_sym_return] = ACTIONS(4687), + [anon_sym_DOLLARfor] = ACTIONS(4687), + [anon_sym_for] = ACTIONS(4687), + [anon_sym_POUND] = ACTIONS(4687), + [anon_sym_asm] = ACTIONS(4687), + [anon_sym_AT_LBRACK] = ACTIONS(4687), }, [1826] = { [sym_line_comment] = STATE(1826), [sym_block_comment] = STATE(1826), - [ts_builtin_sym_end] = ACTIONS(4687), - [sym_identifier] = ACTIONS(4689), - [anon_sym_LF] = ACTIONS(4689), - [anon_sym_CR] = ACTIONS(4689), - [anon_sym_CR_LF] = ACTIONS(4689), + [ts_builtin_sym_end] = ACTIONS(4689), + [sym_identifier] = ACTIONS(4691), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_CR] = ACTIONS(4691), + [anon_sym_CR_LF] = ACTIONS(4691), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4689), - [anon_sym___global] = ACTIONS(4689), - [anon_sym_type] = ACTIONS(4689), - [anon_sym_fn] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_STAR] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_pub] = ACTIONS(4689), - [anon_sym_mut] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_interface] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4689), - [anon_sym_BANG] = ACTIONS(4689), - [anon_sym_go] = ACTIONS(4689), - [anon_sym_spawn] = ACTIONS(4689), - [anon_sym_json_DOTdecode] = ACTIONS(4689), - [anon_sym_LBRACK2] = ACTIONS(4689), - [anon_sym_TILDE] = ACTIONS(4689), - [anon_sym_CARET] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4689), - [anon_sym_LT_DASH] = ACTIONS(4689), - [sym_none] = ACTIONS(4689), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_nil] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_DOLLARif] = ACTIONS(4689), - [anon_sym_match] = ACTIONS(4689), - [anon_sym_select] = ACTIONS(4689), - [anon_sym_lock] = ACTIONS(4689), - [anon_sym_rlock] = ACTIONS(4689), - [anon_sym_unsafe] = ACTIONS(4689), - [anon_sym_sql] = ACTIONS(4689), - [sym_int_literal] = ACTIONS(4689), - [sym_float_literal] = ACTIONS(4689), - [sym_rune_literal] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4689), - [anon_sym_DQUOTE] = ACTIONS(4689), - [anon_sym_c_SQUOTE] = ACTIONS(4689), - [anon_sym_c_DQUOTE] = ACTIONS(4689), - [anon_sym_r_SQUOTE] = ACTIONS(4689), - [anon_sym_r_DQUOTE] = ACTIONS(4689), - [sym_pseudo_compile_time_identifier] = ACTIONS(4689), - [anon_sym_shared] = ACTIONS(4689), - [anon_sym_map_LBRACK] = ACTIONS(4689), - [anon_sym_chan] = ACTIONS(4689), - [anon_sym_thread] = ACTIONS(4689), - [anon_sym_atomic] = ACTIONS(4689), - [anon_sym_assert] = ACTIONS(4689), - [anon_sym_defer] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_DOLLARfor] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_POUND] = ACTIONS(4689), - [anon_sym_asm] = ACTIONS(4689), - [anon_sym_AT_LBRACK] = ACTIONS(4689), + [anon_sym_DOT] = ACTIONS(4691), + [anon_sym_LBRACE] = ACTIONS(4691), + [anon_sym_const] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4691), + [anon_sym___global] = ACTIONS(4691), + [anon_sym_type] = ACTIONS(4691), + [anon_sym_fn] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_struct] = ACTIONS(4691), + [anon_sym_union] = ACTIONS(4691), + [anon_sym_pub] = ACTIONS(4691), + [anon_sym_mut] = ACTIONS(4691), + [anon_sym_enum] = ACTIONS(4691), + [anon_sym_interface] = ACTIONS(4691), + [anon_sym_QMARK] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_go] = ACTIONS(4691), + [anon_sym_spawn] = ACTIONS(4691), + [anon_sym_json_DOTdecode] = ACTIONS(4691), + [anon_sym_LBRACK2] = ACTIONS(4691), + [anon_sym_TILDE] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4691), + [anon_sym_LT_DASH] = ACTIONS(4691), + [sym_none] = ACTIONS(4691), + [sym_true] = ACTIONS(4691), + [sym_false] = ACTIONS(4691), + [sym_nil] = ACTIONS(4691), + [anon_sym_if] = ACTIONS(4691), + [anon_sym_DOLLARif] = ACTIONS(4691), + [anon_sym_match] = ACTIONS(4691), + [anon_sym_select] = ACTIONS(4691), + [anon_sym_lock] = ACTIONS(4691), + [anon_sym_rlock] = ACTIONS(4691), + [anon_sym_unsafe] = ACTIONS(4691), + [anon_sym_sql] = ACTIONS(4691), + [sym_int_literal] = ACTIONS(4691), + [sym_float_literal] = ACTIONS(4691), + [sym_rune_literal] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_c_SQUOTE] = ACTIONS(4691), + [anon_sym_c_DQUOTE] = ACTIONS(4691), + [anon_sym_r_SQUOTE] = ACTIONS(4691), + [anon_sym_r_DQUOTE] = ACTIONS(4691), + [sym_pseudo_compile_time_identifier] = ACTIONS(4691), + [anon_sym_shared] = ACTIONS(4691), + [anon_sym_map_LBRACK] = ACTIONS(4691), + [anon_sym_chan] = ACTIONS(4691), + [anon_sym_thread] = ACTIONS(4691), + [anon_sym_atomic] = ACTIONS(4691), + [anon_sym_assert] = ACTIONS(4691), + [anon_sym_defer] = ACTIONS(4691), + [anon_sym_goto] = ACTIONS(4691), + [anon_sym_break] = ACTIONS(4691), + [anon_sym_continue] = ACTIONS(4691), + [anon_sym_return] = ACTIONS(4691), + [anon_sym_DOLLARfor] = ACTIONS(4691), + [anon_sym_for] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(4691), + [anon_sym_asm] = ACTIONS(4691), + [anon_sym_AT_LBRACK] = ACTIONS(4691), }, [1827] = { [sym_line_comment] = STATE(1827), [sym_block_comment] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(4691), - [sym_identifier] = ACTIONS(4693), - [anon_sym_LF] = ACTIONS(4693), - [anon_sym_CR] = ACTIONS(4693), - [anon_sym_CR_LF] = ACTIONS(4693), + [ts_builtin_sym_end] = ACTIONS(4693), + [sym_identifier] = ACTIONS(4695), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_CR] = ACTIONS(4695), + [anon_sym_CR_LF] = ACTIONS(4695), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4693), - [anon_sym_const] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym___global] = ACTIONS(4693), - [anon_sym_type] = ACTIONS(4693), - [anon_sym_fn] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_struct] = ACTIONS(4693), - [anon_sym_union] = ACTIONS(4693), - [anon_sym_pub] = ACTIONS(4693), - [anon_sym_mut] = ACTIONS(4693), - [anon_sym_enum] = ACTIONS(4693), - [anon_sym_interface] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_go] = ACTIONS(4693), - [anon_sym_spawn] = ACTIONS(4693), - [anon_sym_json_DOTdecode] = ACTIONS(4693), - [anon_sym_LBRACK2] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4693), - [anon_sym_LT_DASH] = ACTIONS(4693), - [sym_none] = ACTIONS(4693), - [sym_true] = ACTIONS(4693), - [sym_false] = ACTIONS(4693), - [sym_nil] = ACTIONS(4693), - [anon_sym_if] = ACTIONS(4693), - [anon_sym_DOLLARif] = ACTIONS(4693), - [anon_sym_match] = ACTIONS(4693), - [anon_sym_select] = ACTIONS(4693), - [anon_sym_lock] = ACTIONS(4693), - [anon_sym_rlock] = ACTIONS(4693), - [anon_sym_unsafe] = ACTIONS(4693), - [anon_sym_sql] = ACTIONS(4693), - [sym_int_literal] = ACTIONS(4693), - [sym_float_literal] = ACTIONS(4693), - [sym_rune_literal] = ACTIONS(4693), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_c_SQUOTE] = ACTIONS(4693), - [anon_sym_c_DQUOTE] = ACTIONS(4693), - [anon_sym_r_SQUOTE] = ACTIONS(4693), - [anon_sym_r_DQUOTE] = ACTIONS(4693), - [sym_pseudo_compile_time_identifier] = ACTIONS(4693), - [anon_sym_shared] = ACTIONS(4693), - [anon_sym_map_LBRACK] = ACTIONS(4693), - [anon_sym_chan] = ACTIONS(4693), - [anon_sym_thread] = ACTIONS(4693), - [anon_sym_atomic] = ACTIONS(4693), - [anon_sym_assert] = ACTIONS(4693), - [anon_sym_defer] = ACTIONS(4693), - [anon_sym_goto] = ACTIONS(4693), - [anon_sym_break] = ACTIONS(4693), - [anon_sym_continue] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4693), - [anon_sym_DOLLARfor] = ACTIONS(4693), - [anon_sym_for] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_asm] = ACTIONS(4693), - [anon_sym_AT_LBRACK] = ACTIONS(4693), + [anon_sym_DOT] = ACTIONS(4695), + [anon_sym_LBRACE] = ACTIONS(4695), + [anon_sym_const] = ACTIONS(4695), + [anon_sym_LPAREN] = ACTIONS(4695), + [anon_sym___global] = ACTIONS(4695), + [anon_sym_type] = ACTIONS(4695), + [anon_sym_fn] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4695), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_STAR] = ACTIONS(4695), + [anon_sym_struct] = ACTIONS(4695), + [anon_sym_union] = ACTIONS(4695), + [anon_sym_pub] = ACTIONS(4695), + [anon_sym_mut] = ACTIONS(4695), + [anon_sym_enum] = ACTIONS(4695), + [anon_sym_interface] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4695), + [anon_sym_BANG] = ACTIONS(4695), + [anon_sym_go] = ACTIONS(4695), + [anon_sym_spawn] = ACTIONS(4695), + [anon_sym_json_DOTdecode] = ACTIONS(4695), + [anon_sym_LBRACK2] = ACTIONS(4695), + [anon_sym_TILDE] = ACTIONS(4695), + [anon_sym_CARET] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4695), + [anon_sym_LT_DASH] = ACTIONS(4695), + [sym_none] = ACTIONS(4695), + [sym_true] = ACTIONS(4695), + [sym_false] = ACTIONS(4695), + [sym_nil] = ACTIONS(4695), + [anon_sym_if] = ACTIONS(4695), + [anon_sym_DOLLARif] = ACTIONS(4695), + [anon_sym_match] = ACTIONS(4695), + [anon_sym_select] = ACTIONS(4695), + [anon_sym_lock] = ACTIONS(4695), + [anon_sym_rlock] = ACTIONS(4695), + [anon_sym_unsafe] = ACTIONS(4695), + [anon_sym_sql] = ACTIONS(4695), + [sym_int_literal] = ACTIONS(4695), + [sym_float_literal] = ACTIONS(4695), + [sym_rune_literal] = ACTIONS(4695), + [anon_sym_SQUOTE] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_c_SQUOTE] = ACTIONS(4695), + [anon_sym_c_DQUOTE] = ACTIONS(4695), + [anon_sym_r_SQUOTE] = ACTIONS(4695), + [anon_sym_r_DQUOTE] = ACTIONS(4695), + [sym_pseudo_compile_time_identifier] = ACTIONS(4695), + [anon_sym_shared] = ACTIONS(4695), + [anon_sym_map_LBRACK] = ACTIONS(4695), + [anon_sym_chan] = ACTIONS(4695), + [anon_sym_thread] = ACTIONS(4695), + [anon_sym_atomic] = ACTIONS(4695), + [anon_sym_assert] = ACTIONS(4695), + [anon_sym_defer] = ACTIONS(4695), + [anon_sym_goto] = ACTIONS(4695), + [anon_sym_break] = ACTIONS(4695), + [anon_sym_continue] = ACTIONS(4695), + [anon_sym_return] = ACTIONS(4695), + [anon_sym_DOLLARfor] = ACTIONS(4695), + [anon_sym_for] = ACTIONS(4695), + [anon_sym_POUND] = ACTIONS(4695), + [anon_sym_asm] = ACTIONS(4695), + [anon_sym_AT_LBRACK] = ACTIONS(4695), }, [1828] = { [sym_line_comment] = STATE(1828), [sym_block_comment] = STATE(1828), - [ts_builtin_sym_end] = ACTIONS(4695), - [sym_identifier] = ACTIONS(4697), - [anon_sym_LF] = ACTIONS(4697), - [anon_sym_CR] = ACTIONS(4697), - [anon_sym_CR_LF] = ACTIONS(4697), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4697), - [anon_sym_const] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym___global] = ACTIONS(4697), - [anon_sym_type] = ACTIONS(4697), - [anon_sym_fn] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_struct] = ACTIONS(4697), - [anon_sym_union] = ACTIONS(4697), - [anon_sym_pub] = ACTIONS(4697), - [anon_sym_mut] = ACTIONS(4697), - [anon_sym_enum] = ACTIONS(4697), - [anon_sym_interface] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_go] = ACTIONS(4697), - [anon_sym_spawn] = ACTIONS(4697), - [anon_sym_json_DOTdecode] = ACTIONS(4697), - [anon_sym_LBRACK2] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4697), - [anon_sym_LT_DASH] = ACTIONS(4697), - [sym_none] = ACTIONS(4697), - [sym_true] = ACTIONS(4697), - [sym_false] = ACTIONS(4697), - [sym_nil] = ACTIONS(4697), - [anon_sym_if] = ACTIONS(4697), - [anon_sym_DOLLARif] = ACTIONS(4697), - [anon_sym_match] = ACTIONS(4697), - [anon_sym_select] = ACTIONS(4697), - [anon_sym_lock] = ACTIONS(4697), - [anon_sym_rlock] = ACTIONS(4697), - [anon_sym_unsafe] = ACTIONS(4697), - [anon_sym_sql] = ACTIONS(4697), - [sym_int_literal] = ACTIONS(4697), - [sym_float_literal] = ACTIONS(4697), - [sym_rune_literal] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_c_SQUOTE] = ACTIONS(4697), - [anon_sym_c_DQUOTE] = ACTIONS(4697), - [anon_sym_r_SQUOTE] = ACTIONS(4697), - [anon_sym_r_DQUOTE] = ACTIONS(4697), - [sym_pseudo_compile_time_identifier] = ACTIONS(4697), - [anon_sym_shared] = ACTIONS(4697), - [anon_sym_map_LBRACK] = ACTIONS(4697), - [anon_sym_chan] = ACTIONS(4697), - [anon_sym_thread] = ACTIONS(4697), - [anon_sym_atomic] = ACTIONS(4697), - [anon_sym_assert] = ACTIONS(4697), - [anon_sym_defer] = ACTIONS(4697), - [anon_sym_goto] = ACTIONS(4697), - [anon_sym_break] = ACTIONS(4697), - [anon_sym_continue] = ACTIONS(4697), - [anon_sym_return] = ACTIONS(4697), - [anon_sym_DOLLARfor] = ACTIONS(4697), - [anon_sym_for] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_asm] = ACTIONS(4697), - [anon_sym_AT_LBRACK] = ACTIONS(4697), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1829] = { [sym_line_comment] = STATE(1829), [sym_block_comment] = STATE(1829), - [ts_builtin_sym_end] = ACTIONS(4699), - [sym_identifier] = ACTIONS(4701), - [anon_sym_LF] = ACTIONS(4701), - [anon_sym_CR] = ACTIONS(4701), - [anon_sym_CR_LF] = ACTIONS(4701), + [ts_builtin_sym_end] = ACTIONS(4697), + [sym_identifier] = ACTIONS(4699), + [anon_sym_LF] = ACTIONS(4699), + [anon_sym_CR] = ACTIONS(4699), + [anon_sym_CR_LF] = ACTIONS(4699), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_const] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym___global] = ACTIONS(4701), - [anon_sym_type] = ACTIONS(4701), - [anon_sym_fn] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_struct] = ACTIONS(4701), - [anon_sym_union] = ACTIONS(4701), - [anon_sym_pub] = ACTIONS(4701), - [anon_sym_mut] = ACTIONS(4701), - [anon_sym_enum] = ACTIONS(4701), - [anon_sym_interface] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_go] = ACTIONS(4701), - [anon_sym_spawn] = ACTIONS(4701), - [anon_sym_json_DOTdecode] = ACTIONS(4701), - [anon_sym_LBRACK2] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_CARET] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4701), - [anon_sym_LT_DASH] = ACTIONS(4701), - [sym_none] = ACTIONS(4701), - [sym_true] = ACTIONS(4701), - [sym_false] = ACTIONS(4701), - [sym_nil] = ACTIONS(4701), - [anon_sym_if] = ACTIONS(4701), - [anon_sym_DOLLARif] = ACTIONS(4701), - [anon_sym_match] = ACTIONS(4701), - [anon_sym_select] = ACTIONS(4701), - [anon_sym_lock] = ACTIONS(4701), - [anon_sym_rlock] = ACTIONS(4701), - [anon_sym_unsafe] = ACTIONS(4701), - [anon_sym_sql] = ACTIONS(4701), - [sym_int_literal] = ACTIONS(4701), - [sym_float_literal] = ACTIONS(4701), - [sym_rune_literal] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_c_SQUOTE] = ACTIONS(4701), - [anon_sym_c_DQUOTE] = ACTIONS(4701), - [anon_sym_r_SQUOTE] = ACTIONS(4701), - [anon_sym_r_DQUOTE] = ACTIONS(4701), - [sym_pseudo_compile_time_identifier] = ACTIONS(4701), - [anon_sym_shared] = ACTIONS(4701), - [anon_sym_map_LBRACK] = ACTIONS(4701), - [anon_sym_chan] = ACTIONS(4701), - [anon_sym_thread] = ACTIONS(4701), - [anon_sym_atomic] = ACTIONS(4701), - [anon_sym_assert] = ACTIONS(4701), - [anon_sym_defer] = ACTIONS(4701), - [anon_sym_goto] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_continue] = ACTIONS(4701), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_DOLLARfor] = ACTIONS(4701), - [anon_sym_for] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_asm] = ACTIONS(4701), - [anon_sym_AT_LBRACK] = ACTIONS(4701), + [anon_sym_DOT] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4699), + [anon_sym___global] = ACTIONS(4699), + [anon_sym_type] = ACTIONS(4699), + [anon_sym_fn] = ACTIONS(4699), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_STAR] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_pub] = ACTIONS(4699), + [anon_sym_mut] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_interface] = ACTIONS(4699), + [anon_sym_QMARK] = ACTIONS(4699), + [anon_sym_BANG] = ACTIONS(4699), + [anon_sym_go] = ACTIONS(4699), + [anon_sym_spawn] = ACTIONS(4699), + [anon_sym_json_DOTdecode] = ACTIONS(4699), + [anon_sym_LBRACK2] = ACTIONS(4699), + [anon_sym_TILDE] = ACTIONS(4699), + [anon_sym_CARET] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4699), + [anon_sym_LT_DASH] = ACTIONS(4699), + [sym_none] = ACTIONS(4699), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_nil] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_DOLLARif] = ACTIONS(4699), + [anon_sym_match] = ACTIONS(4699), + [anon_sym_select] = ACTIONS(4699), + [anon_sym_lock] = ACTIONS(4699), + [anon_sym_rlock] = ACTIONS(4699), + [anon_sym_unsafe] = ACTIONS(4699), + [anon_sym_sql] = ACTIONS(4699), + [sym_int_literal] = ACTIONS(4699), + [sym_float_literal] = ACTIONS(4699), + [sym_rune_literal] = ACTIONS(4699), + [anon_sym_SQUOTE] = ACTIONS(4699), + [anon_sym_DQUOTE] = ACTIONS(4699), + [anon_sym_c_SQUOTE] = ACTIONS(4699), + [anon_sym_c_DQUOTE] = ACTIONS(4699), + [anon_sym_r_SQUOTE] = ACTIONS(4699), + [anon_sym_r_DQUOTE] = ACTIONS(4699), + [sym_pseudo_compile_time_identifier] = ACTIONS(4699), + [anon_sym_shared] = ACTIONS(4699), + [anon_sym_map_LBRACK] = ACTIONS(4699), + [anon_sym_chan] = ACTIONS(4699), + [anon_sym_thread] = ACTIONS(4699), + [anon_sym_atomic] = ACTIONS(4699), + [anon_sym_assert] = ACTIONS(4699), + [anon_sym_defer] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_DOLLARfor] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_POUND] = ACTIONS(4699), + [anon_sym_asm] = ACTIONS(4699), + [anon_sym_AT_LBRACK] = ACTIONS(4699), }, [1830] = { [sym_line_comment] = STATE(1830), [sym_block_comment] = STATE(1830), - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_CR] = ACTIONS(3043), - [anon_sym_CR_LF] = ACTIONS(3043), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_const] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym___global] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_fn] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_union] = ACTIONS(3043), - [anon_sym_pub] = ACTIONS(3043), - [anon_sym_mut] = ACTIONS(3043), - [anon_sym_enum] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_go] = ACTIONS(3043), - [anon_sym_spawn] = ACTIONS(3043), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [sym_none] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_nil] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_DOLLARif] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3043), - [anon_sym_rlock] = ACTIONS(3043), - [anon_sym_unsafe] = ACTIONS(3043), - [anon_sym_sql] = ACTIONS(3043), - [sym_int_literal] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_c_SQUOTE] = ACTIONS(3043), - [anon_sym_c_DQUOTE] = ACTIONS(3043), - [anon_sym_r_SQUOTE] = ACTIONS(3043), - [anon_sym_r_DQUOTE] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(3043), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3043), - [anon_sym_thread] = ACTIONS(3043), - [anon_sym_atomic] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_defer] = ACTIONS(3043), - [anon_sym_goto] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_DOLLARfor] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_asm] = ACTIONS(3043), - [anon_sym_AT_LBRACK] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym___global] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_interface] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_c_SQUOTE] = ACTIONS(3031), + [anon_sym_c_DQUOTE] = ACTIONS(3031), + [anon_sym_r_SQUOTE] = ACTIONS(3031), + [anon_sym_r_DQUOTE] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym_AT_LBRACK] = ACTIONS(3031), }, [1831] = { [sym_line_comment] = STATE(1831), [sym_block_comment] = STATE(1831), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LF] = ACTIONS(3047), - [anon_sym_CR] = ACTIONS(3047), - [anon_sym_CR_LF] = ACTIONS(3047), + [ts_builtin_sym_end] = ACTIONS(4701), + [sym_identifier] = ACTIONS(4703), + [anon_sym_LF] = ACTIONS(4703), + [anon_sym_CR] = ACTIONS(4703), + [anon_sym_CR_LF] = ACTIONS(4703), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_const] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym___global] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_fn] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_union] = ACTIONS(3047), - [anon_sym_pub] = ACTIONS(3047), - [anon_sym_mut] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_go] = ACTIONS(3047), - [anon_sym_spawn] = ACTIONS(3047), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [sym_none] = ACTIONS(3047), - [sym_true] = ACTIONS(3047), - [sym_false] = ACTIONS(3047), - [sym_nil] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_DOLLARif] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_select] = ACTIONS(3047), - [anon_sym_lock] = ACTIONS(3047), - [anon_sym_rlock] = ACTIONS(3047), - [anon_sym_unsafe] = ACTIONS(3047), - [anon_sym_sql] = ACTIONS(3047), - [sym_int_literal] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_c_SQUOTE] = ACTIONS(3047), - [anon_sym_c_DQUOTE] = ACTIONS(3047), - [anon_sym_r_SQUOTE] = ACTIONS(3047), - [anon_sym_r_DQUOTE] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3047), - [anon_sym_shared] = ACTIONS(3047), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3047), - [anon_sym_thread] = ACTIONS(3047), - [anon_sym_atomic] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_defer] = ACTIONS(3047), - [anon_sym_goto] = ACTIONS(3047), - [anon_sym_break] = ACTIONS(3047), - [anon_sym_continue] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_DOLLARfor] = ACTIONS(3047), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_asm] = ACTIONS(3047), - [anon_sym_AT_LBRACK] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4703), + [anon_sym___global] = ACTIONS(4703), + [anon_sym_type] = ACTIONS(4703), + [anon_sym_fn] = ACTIONS(4703), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_STAR] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_pub] = ACTIONS(4703), + [anon_sym_mut] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_interface] = ACTIONS(4703), + [anon_sym_QMARK] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(4703), + [anon_sym_go] = ACTIONS(4703), + [anon_sym_spawn] = ACTIONS(4703), + [anon_sym_json_DOTdecode] = ACTIONS(4703), + [anon_sym_LBRACK2] = ACTIONS(4703), + [anon_sym_TILDE] = ACTIONS(4703), + [anon_sym_CARET] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4703), + [anon_sym_LT_DASH] = ACTIONS(4703), + [sym_none] = ACTIONS(4703), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_nil] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_DOLLARif] = ACTIONS(4703), + [anon_sym_match] = ACTIONS(4703), + [anon_sym_select] = ACTIONS(4703), + [anon_sym_lock] = ACTIONS(4703), + [anon_sym_rlock] = ACTIONS(4703), + [anon_sym_unsafe] = ACTIONS(4703), + [anon_sym_sql] = ACTIONS(4703), + [sym_int_literal] = ACTIONS(4703), + [sym_float_literal] = ACTIONS(4703), + [sym_rune_literal] = ACTIONS(4703), + [anon_sym_SQUOTE] = ACTIONS(4703), + [anon_sym_DQUOTE] = ACTIONS(4703), + [anon_sym_c_SQUOTE] = ACTIONS(4703), + [anon_sym_c_DQUOTE] = ACTIONS(4703), + [anon_sym_r_SQUOTE] = ACTIONS(4703), + [anon_sym_r_DQUOTE] = ACTIONS(4703), + [sym_pseudo_compile_time_identifier] = ACTIONS(4703), + [anon_sym_shared] = ACTIONS(4703), + [anon_sym_map_LBRACK] = ACTIONS(4703), + [anon_sym_chan] = ACTIONS(4703), + [anon_sym_thread] = ACTIONS(4703), + [anon_sym_atomic] = ACTIONS(4703), + [anon_sym_assert] = ACTIONS(4703), + [anon_sym_defer] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_DOLLARfor] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_POUND] = ACTIONS(4703), + [anon_sym_asm] = ACTIONS(4703), + [anon_sym_AT_LBRACK] = ACTIONS(4703), }, [1832] = { [sym_line_comment] = STATE(1832), [sym_block_comment] = STATE(1832), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), + [ts_builtin_sym_end] = ACTIONS(4705), + [sym_identifier] = ACTIONS(4707), + [anon_sym_LF] = ACTIONS(4707), + [anon_sym_CR] = ACTIONS(4707), + [anon_sym_CR_LF] = ACTIONS(4707), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [anon_sym_c_SQUOTE] = ACTIONS(3051), - [anon_sym_c_DQUOTE] = ACTIONS(3051), - [anon_sym_r_SQUOTE] = ACTIONS(3051), - [anon_sym_r_DQUOTE] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_const] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym___global] = ACTIONS(4707), + [anon_sym_type] = ACTIONS(4707), + [anon_sym_fn] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4707), + [anon_sym_DASH] = ACTIONS(4707), + [anon_sym_STAR] = ACTIONS(4707), + [anon_sym_struct] = ACTIONS(4707), + [anon_sym_union] = ACTIONS(4707), + [anon_sym_pub] = ACTIONS(4707), + [anon_sym_mut] = ACTIONS(4707), + [anon_sym_enum] = ACTIONS(4707), + [anon_sym_interface] = ACTIONS(4707), + [anon_sym_QMARK] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4707), + [anon_sym_go] = ACTIONS(4707), + [anon_sym_spawn] = ACTIONS(4707), + [anon_sym_json_DOTdecode] = ACTIONS(4707), + [anon_sym_LBRACK2] = ACTIONS(4707), + [anon_sym_TILDE] = ACTIONS(4707), + [anon_sym_CARET] = ACTIONS(4707), + [anon_sym_AMP] = ACTIONS(4707), + [anon_sym_LT_DASH] = ACTIONS(4707), + [sym_none] = ACTIONS(4707), + [sym_true] = ACTIONS(4707), + [sym_false] = ACTIONS(4707), + [sym_nil] = ACTIONS(4707), + [anon_sym_if] = ACTIONS(4707), + [anon_sym_DOLLARif] = ACTIONS(4707), + [anon_sym_match] = ACTIONS(4707), + [anon_sym_select] = ACTIONS(4707), + [anon_sym_lock] = ACTIONS(4707), + [anon_sym_rlock] = ACTIONS(4707), + [anon_sym_unsafe] = ACTIONS(4707), + [anon_sym_sql] = ACTIONS(4707), + [sym_int_literal] = ACTIONS(4707), + [sym_float_literal] = ACTIONS(4707), + [sym_rune_literal] = ACTIONS(4707), + [anon_sym_SQUOTE] = ACTIONS(4707), + [anon_sym_DQUOTE] = ACTIONS(4707), + [anon_sym_c_SQUOTE] = ACTIONS(4707), + [anon_sym_c_DQUOTE] = ACTIONS(4707), + [anon_sym_r_SQUOTE] = ACTIONS(4707), + [anon_sym_r_DQUOTE] = ACTIONS(4707), + [sym_pseudo_compile_time_identifier] = ACTIONS(4707), + [anon_sym_shared] = ACTIONS(4707), + [anon_sym_map_LBRACK] = ACTIONS(4707), + [anon_sym_chan] = ACTIONS(4707), + [anon_sym_thread] = ACTIONS(4707), + [anon_sym_atomic] = ACTIONS(4707), + [anon_sym_assert] = ACTIONS(4707), + [anon_sym_defer] = ACTIONS(4707), + [anon_sym_goto] = ACTIONS(4707), + [anon_sym_break] = ACTIONS(4707), + [anon_sym_continue] = ACTIONS(4707), + [anon_sym_return] = ACTIONS(4707), + [anon_sym_DOLLARfor] = ACTIONS(4707), + [anon_sym_for] = ACTIONS(4707), + [anon_sym_POUND] = ACTIONS(4707), + [anon_sym_asm] = ACTIONS(4707), + [anon_sym_AT_LBRACK] = ACTIONS(4707), }, [1833] = { [sym_line_comment] = STATE(1833), [sym_block_comment] = STATE(1833), - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LF] = ACTIONS(3080), - [anon_sym_CR] = ACTIONS(3080), - [anon_sym_CR_LF] = ACTIONS(3080), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LF] = ACTIONS(3041), + [anon_sym_CR] = ACTIONS(3041), + [anon_sym_CR_LF] = ACTIONS(3041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_const] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym___global] = ACTIONS(3080), - [anon_sym_type] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_union] = ACTIONS(3080), - [anon_sym_pub] = ACTIONS(3080), - [anon_sym_mut] = ACTIONS(3080), - [anon_sym_enum] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_go] = ACTIONS(3080), - [anon_sym_spawn] = ACTIONS(3080), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3080), - [sym_none] = ACTIONS(3080), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_nil] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_DOLLARif] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3080), - [anon_sym_select] = ACTIONS(3080), - [anon_sym_lock] = ACTIONS(3080), - [anon_sym_rlock] = ACTIONS(3080), - [anon_sym_unsafe] = ACTIONS(3080), - [anon_sym_sql] = ACTIONS(3080), - [sym_int_literal] = ACTIONS(3080), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_c_SQUOTE] = ACTIONS(3080), - [anon_sym_c_DQUOTE] = ACTIONS(3080), - [anon_sym_r_SQUOTE] = ACTIONS(3080), - [anon_sym_r_DQUOTE] = ACTIONS(3080), - [sym_pseudo_compile_time_identifier] = ACTIONS(3080), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), - [anon_sym_assert] = ACTIONS(3080), - [anon_sym_defer] = ACTIONS(3080), - [anon_sym_goto] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_DOLLARfor] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_asm] = ACTIONS(3080), - [anon_sym_AT_LBRACK] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_const] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym___global] = ACTIONS(3041), + [anon_sym_type] = ACTIONS(3041), + [anon_sym_fn] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_union] = ACTIONS(3041), + [anon_sym_pub] = ACTIONS(3041), + [anon_sym_mut] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_go] = ACTIONS(3041), + [anon_sym_spawn] = ACTIONS(3041), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(3041), + [sym_true] = ACTIONS(3041), + [sym_false] = ACTIONS(3041), + [sym_nil] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_DOLLARif] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_select] = ACTIONS(3041), + [anon_sym_lock] = ACTIONS(3041), + [anon_sym_rlock] = ACTIONS(3041), + [anon_sym_unsafe] = ACTIONS(3041), + [anon_sym_sql] = ACTIONS(3041), + [sym_int_literal] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [anon_sym_c_SQUOTE] = ACTIONS(3041), + [anon_sym_c_DQUOTE] = ACTIONS(3041), + [anon_sym_r_SQUOTE] = ACTIONS(3041), + [anon_sym_r_DQUOTE] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3041), + [anon_sym_shared] = ACTIONS(3041), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3041), + [anon_sym_thread] = ACTIONS(3041), + [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_assert] = ACTIONS(3041), + [anon_sym_defer] = ACTIONS(3041), + [anon_sym_goto] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_DOLLARfor] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_asm] = ACTIONS(3041), + [anon_sym_AT_LBRACK] = ACTIONS(3041), }, [1834] = { [sym_line_comment] = STATE(1834), [sym_block_comment] = STATE(1834), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LF] = ACTIONS(3350), - [anon_sym_CR] = ACTIONS(3350), - [anon_sym_CR_LF] = ACTIONS(3350), + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym___global] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_fn] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_pub] = ACTIONS(3350), - [anon_sym_mut] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_interface] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_go] = ACTIONS(3350), - [anon_sym_spawn] = ACTIONS(3350), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [sym_none] = ACTIONS(3350), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [sym_nil] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_DOLLARif] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3350), - [anon_sym_rlock] = ACTIONS(3350), - [anon_sym_unsafe] = ACTIONS(3350), - [anon_sym_sql] = ACTIONS(3350), - [sym_int_literal] = ACTIONS(3350), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_c_SQUOTE] = ACTIONS(3350), - [anon_sym_c_DQUOTE] = ACTIONS(3350), - [anon_sym_r_SQUOTE] = ACTIONS(3350), - [anon_sym_r_DQUOTE] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3350), - [anon_sym_shared] = ACTIONS(3350), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3350), - [anon_sym_thread] = ACTIONS(3350), - [anon_sym_atomic] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_defer] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_DOLLARfor] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym_AT_LBRACK] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [anon_sym_c_SQUOTE] = ACTIONS(3049), + [anon_sym_c_DQUOTE] = ACTIONS(3049), + [anon_sym_r_SQUOTE] = ACTIONS(3049), + [anon_sym_r_DQUOTE] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), }, [1835] = { [sym_line_comment] = STATE(1835), [sym_block_comment] = STATE(1835), - [ts_builtin_sym_end] = ACTIONS(4703), - [sym_identifier] = ACTIONS(4705), - [anon_sym_LF] = ACTIONS(4705), - [anon_sym_CR] = ACTIONS(4705), - [anon_sym_CR_LF] = ACTIONS(4705), + [ts_builtin_sym_end] = ACTIONS(4709), + [sym_identifier] = ACTIONS(4711), + [anon_sym_LF] = ACTIONS(4711), + [anon_sym_CR] = ACTIONS(4711), + [anon_sym_CR_LF] = ACTIONS(4711), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_const] = ACTIONS(4705), - [anon_sym_LPAREN] = ACTIONS(4705), - [anon_sym___global] = ACTIONS(4705), - [anon_sym_type] = ACTIONS(4705), - [anon_sym_fn] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_STAR] = ACTIONS(4705), - [anon_sym_struct] = ACTIONS(4705), - [anon_sym_union] = ACTIONS(4705), - [anon_sym_pub] = ACTIONS(4705), - [anon_sym_mut] = ACTIONS(4705), - [anon_sym_enum] = ACTIONS(4705), - [anon_sym_interface] = ACTIONS(4705), - [anon_sym_QMARK] = ACTIONS(4705), - [anon_sym_BANG] = ACTIONS(4705), - [anon_sym_go] = ACTIONS(4705), - [anon_sym_spawn] = ACTIONS(4705), - [anon_sym_json_DOTdecode] = ACTIONS(4705), - [anon_sym_LBRACK2] = ACTIONS(4705), - [anon_sym_TILDE] = ACTIONS(4705), - [anon_sym_CARET] = ACTIONS(4705), - [anon_sym_AMP] = ACTIONS(4705), - [anon_sym_LT_DASH] = ACTIONS(4705), - [sym_none] = ACTIONS(4705), - [sym_true] = ACTIONS(4705), - [sym_false] = ACTIONS(4705), - [sym_nil] = ACTIONS(4705), - [anon_sym_if] = ACTIONS(4705), - [anon_sym_DOLLARif] = ACTIONS(4705), - [anon_sym_match] = ACTIONS(4705), - [anon_sym_select] = ACTIONS(4705), - [anon_sym_lock] = ACTIONS(4705), - [anon_sym_rlock] = ACTIONS(4705), - [anon_sym_unsafe] = ACTIONS(4705), - [anon_sym_sql] = ACTIONS(4705), - [sym_int_literal] = ACTIONS(4705), - [sym_float_literal] = ACTIONS(4705), - [sym_rune_literal] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4705), - [anon_sym_DQUOTE] = ACTIONS(4705), - [anon_sym_c_SQUOTE] = ACTIONS(4705), - [anon_sym_c_DQUOTE] = ACTIONS(4705), - [anon_sym_r_SQUOTE] = ACTIONS(4705), - [anon_sym_r_DQUOTE] = ACTIONS(4705), - [sym_pseudo_compile_time_identifier] = ACTIONS(4705), - [anon_sym_shared] = ACTIONS(4705), - [anon_sym_map_LBRACK] = ACTIONS(4705), - [anon_sym_chan] = ACTIONS(4705), - [anon_sym_thread] = ACTIONS(4705), - [anon_sym_atomic] = ACTIONS(4705), - [anon_sym_assert] = ACTIONS(4705), - [anon_sym_defer] = ACTIONS(4705), - [anon_sym_goto] = ACTIONS(4705), - [anon_sym_break] = ACTIONS(4705), - [anon_sym_continue] = ACTIONS(4705), - [anon_sym_return] = ACTIONS(4705), - [anon_sym_DOLLARfor] = ACTIONS(4705), - [anon_sym_for] = ACTIONS(4705), - [anon_sym_POUND] = ACTIONS(4705), - [anon_sym_asm] = ACTIONS(4705), - [anon_sym_AT_LBRACK] = ACTIONS(4705), + [anon_sym_DOT] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4711), + [anon_sym_const] = ACTIONS(4711), + [anon_sym_LPAREN] = ACTIONS(4711), + [anon_sym___global] = ACTIONS(4711), + [anon_sym_type] = ACTIONS(4711), + [anon_sym_fn] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4711), + [anon_sym_STAR] = ACTIONS(4711), + [anon_sym_struct] = ACTIONS(4711), + [anon_sym_union] = ACTIONS(4711), + [anon_sym_pub] = ACTIONS(4711), + [anon_sym_mut] = ACTIONS(4711), + [anon_sym_enum] = ACTIONS(4711), + [anon_sym_interface] = ACTIONS(4711), + [anon_sym_QMARK] = ACTIONS(4711), + [anon_sym_BANG] = ACTIONS(4711), + [anon_sym_go] = ACTIONS(4711), + [anon_sym_spawn] = ACTIONS(4711), + [anon_sym_json_DOTdecode] = ACTIONS(4711), + [anon_sym_LBRACK2] = ACTIONS(4711), + [anon_sym_TILDE] = ACTIONS(4711), + [anon_sym_CARET] = ACTIONS(4711), + [anon_sym_AMP] = ACTIONS(4711), + [anon_sym_LT_DASH] = ACTIONS(4711), + [sym_none] = ACTIONS(4711), + [sym_true] = ACTIONS(4711), + [sym_false] = ACTIONS(4711), + [sym_nil] = ACTIONS(4711), + [anon_sym_if] = ACTIONS(4711), + [anon_sym_DOLLARif] = ACTIONS(4711), + [anon_sym_match] = ACTIONS(4711), + [anon_sym_select] = ACTIONS(4711), + [anon_sym_lock] = ACTIONS(4711), + [anon_sym_rlock] = ACTIONS(4711), + [anon_sym_unsafe] = ACTIONS(4711), + [anon_sym_sql] = ACTIONS(4711), + [sym_int_literal] = ACTIONS(4711), + [sym_float_literal] = ACTIONS(4711), + [sym_rune_literal] = ACTIONS(4711), + [anon_sym_SQUOTE] = ACTIONS(4711), + [anon_sym_DQUOTE] = ACTIONS(4711), + [anon_sym_c_SQUOTE] = ACTIONS(4711), + [anon_sym_c_DQUOTE] = ACTIONS(4711), + [anon_sym_r_SQUOTE] = ACTIONS(4711), + [anon_sym_r_DQUOTE] = ACTIONS(4711), + [sym_pseudo_compile_time_identifier] = ACTIONS(4711), + [anon_sym_shared] = ACTIONS(4711), + [anon_sym_map_LBRACK] = ACTIONS(4711), + [anon_sym_chan] = ACTIONS(4711), + [anon_sym_thread] = ACTIONS(4711), + [anon_sym_atomic] = ACTIONS(4711), + [anon_sym_assert] = ACTIONS(4711), + [anon_sym_defer] = ACTIONS(4711), + [anon_sym_goto] = ACTIONS(4711), + [anon_sym_break] = ACTIONS(4711), + [anon_sym_continue] = ACTIONS(4711), + [anon_sym_return] = ACTIONS(4711), + [anon_sym_DOLLARfor] = ACTIONS(4711), + [anon_sym_for] = ACTIONS(4711), + [anon_sym_POUND] = ACTIONS(4711), + [anon_sym_asm] = ACTIONS(4711), + [anon_sym_AT_LBRACK] = ACTIONS(4711), }, [1836] = { [sym_line_comment] = STATE(1836), [sym_block_comment] = STATE(1836), - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_CR] = ACTIONS(3055), + [anon_sym_CR_LF] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [anon_sym_c_SQUOTE] = ACTIONS(3090), - [anon_sym_c_DQUOTE] = ACTIONS(3090), - [anon_sym_r_SQUOTE] = ACTIONS(3090), - [anon_sym_r_DQUOTE] = ACTIONS(3090), - [sym_pseudo_compile_time_identifier] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym___global] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_pub] = ACTIONS(3055), + [anon_sym_mut] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_interface] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_go] = ACTIONS(3055), + [anon_sym_spawn] = ACTIONS(3055), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3055), + [sym_none] = ACTIONS(3055), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [sym_nil] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_DOLLARif] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_select] = ACTIONS(3055), + [anon_sym_lock] = ACTIONS(3055), + [anon_sym_rlock] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_sql] = ACTIONS(3055), + [sym_int_literal] = ACTIONS(3055), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_DQUOTE] = ACTIONS(3055), + [anon_sym_c_SQUOTE] = ACTIONS(3055), + [anon_sym_c_DQUOTE] = ACTIONS(3055), + [anon_sym_r_SQUOTE] = ACTIONS(3055), + [anon_sym_r_DQUOTE] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3055), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), + [anon_sym_assert] = ACTIONS(3055), + [anon_sym_defer] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_DOLLARfor] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym_AT_LBRACK] = ACTIONS(3055), }, [1837] = { [sym_line_comment] = STATE(1837), [sym_block_comment] = STATE(1837), - [ts_builtin_sym_end] = ACTIONS(4359), - [sym_identifier] = ACTIONS(4361), - [anon_sym_LF] = ACTIONS(4361), - [anon_sym_CR] = ACTIONS(4361), - [anon_sym_CR_LF] = ACTIONS(4361), + [ts_builtin_sym_end] = ACTIONS(4713), + [sym_identifier] = ACTIONS(4715), + [anon_sym_LF] = ACTIONS(4715), + [anon_sym_CR] = ACTIONS(4715), + [anon_sym_CR_LF] = ACTIONS(4715), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_LBRACE] = ACTIONS(4361), - [anon_sym_const] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4361), - [anon_sym___global] = ACTIONS(4361), - [anon_sym_type] = ACTIONS(4361), - [anon_sym_fn] = ACTIONS(4361), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4361), - [anon_sym_struct] = ACTIONS(4361), - [anon_sym_union] = ACTIONS(4361), - [anon_sym_pub] = ACTIONS(4361), - [anon_sym_mut] = ACTIONS(4361), - [anon_sym_enum] = ACTIONS(4361), - [anon_sym_interface] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_go] = ACTIONS(4361), - [anon_sym_spawn] = ACTIONS(4361), - [anon_sym_json_DOTdecode] = ACTIONS(4361), - [anon_sym_LBRACK2] = ACTIONS(4361), - [anon_sym_TILDE] = ACTIONS(4361), - [anon_sym_CARET] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_DASH] = ACTIONS(4361), - [sym_none] = ACTIONS(4361), - [sym_true] = ACTIONS(4361), - [sym_false] = ACTIONS(4361), - [sym_nil] = ACTIONS(4361), - [anon_sym_if] = ACTIONS(4361), - [anon_sym_DOLLARif] = ACTIONS(4361), - [anon_sym_match] = ACTIONS(4361), - [anon_sym_select] = ACTIONS(4361), - [anon_sym_lock] = ACTIONS(4361), - [anon_sym_rlock] = ACTIONS(4361), - [anon_sym_unsafe] = ACTIONS(4361), - [anon_sym_sql] = ACTIONS(4361), - [sym_int_literal] = ACTIONS(4361), - [sym_float_literal] = ACTIONS(4361), - [sym_rune_literal] = ACTIONS(4361), - [anon_sym_SQUOTE] = ACTIONS(4361), - [anon_sym_DQUOTE] = ACTIONS(4361), - [anon_sym_c_SQUOTE] = ACTIONS(4361), - [anon_sym_c_DQUOTE] = ACTIONS(4361), - [anon_sym_r_SQUOTE] = ACTIONS(4361), - [anon_sym_r_DQUOTE] = ACTIONS(4361), - [sym_pseudo_compile_time_identifier] = ACTIONS(4361), - [anon_sym_shared] = ACTIONS(4361), - [anon_sym_map_LBRACK] = ACTIONS(4361), - [anon_sym_chan] = ACTIONS(4361), - [anon_sym_thread] = ACTIONS(4361), - [anon_sym_atomic] = ACTIONS(4361), - [anon_sym_assert] = ACTIONS(4361), - [anon_sym_defer] = ACTIONS(4361), - [anon_sym_goto] = ACTIONS(4361), - [anon_sym_break] = ACTIONS(4361), - [anon_sym_continue] = ACTIONS(4361), - [anon_sym_return] = ACTIONS(4361), - [anon_sym_DOLLARfor] = ACTIONS(4361), - [anon_sym_for] = ACTIONS(4361), - [anon_sym_POUND] = ACTIONS(4361), - [anon_sym_asm] = ACTIONS(4361), - [anon_sym_AT_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(4715), + [anon_sym_const] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(4715), + [anon_sym___global] = ACTIONS(4715), + [anon_sym_type] = ACTIONS(4715), + [anon_sym_fn] = ACTIONS(4715), + [anon_sym_PLUS] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4715), + [anon_sym_STAR] = ACTIONS(4715), + [anon_sym_struct] = ACTIONS(4715), + [anon_sym_union] = ACTIONS(4715), + [anon_sym_pub] = ACTIONS(4715), + [anon_sym_mut] = ACTIONS(4715), + [anon_sym_enum] = ACTIONS(4715), + [anon_sym_interface] = ACTIONS(4715), + [anon_sym_QMARK] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4715), + [anon_sym_go] = ACTIONS(4715), + [anon_sym_spawn] = ACTIONS(4715), + [anon_sym_json_DOTdecode] = ACTIONS(4715), + [anon_sym_LBRACK2] = ACTIONS(4715), + [anon_sym_TILDE] = ACTIONS(4715), + [anon_sym_CARET] = ACTIONS(4715), + [anon_sym_AMP] = ACTIONS(4715), + [anon_sym_LT_DASH] = ACTIONS(4715), + [sym_none] = ACTIONS(4715), + [sym_true] = ACTIONS(4715), + [sym_false] = ACTIONS(4715), + [sym_nil] = ACTIONS(4715), + [anon_sym_if] = ACTIONS(4715), + [anon_sym_DOLLARif] = ACTIONS(4715), + [anon_sym_match] = ACTIONS(4715), + [anon_sym_select] = ACTIONS(4715), + [anon_sym_lock] = ACTIONS(4715), + [anon_sym_rlock] = ACTIONS(4715), + [anon_sym_unsafe] = ACTIONS(4715), + [anon_sym_sql] = ACTIONS(4715), + [sym_int_literal] = ACTIONS(4715), + [sym_float_literal] = ACTIONS(4715), + [sym_rune_literal] = ACTIONS(4715), + [anon_sym_SQUOTE] = ACTIONS(4715), + [anon_sym_DQUOTE] = ACTIONS(4715), + [anon_sym_c_SQUOTE] = ACTIONS(4715), + [anon_sym_c_DQUOTE] = ACTIONS(4715), + [anon_sym_r_SQUOTE] = ACTIONS(4715), + [anon_sym_r_DQUOTE] = ACTIONS(4715), + [sym_pseudo_compile_time_identifier] = ACTIONS(4715), + [anon_sym_shared] = ACTIONS(4715), + [anon_sym_map_LBRACK] = ACTIONS(4715), + [anon_sym_chan] = ACTIONS(4715), + [anon_sym_thread] = ACTIONS(4715), + [anon_sym_atomic] = ACTIONS(4715), + [anon_sym_assert] = ACTIONS(4715), + [anon_sym_defer] = ACTIONS(4715), + [anon_sym_goto] = ACTIONS(4715), + [anon_sym_break] = ACTIONS(4715), + [anon_sym_continue] = ACTIONS(4715), + [anon_sym_return] = ACTIONS(4715), + [anon_sym_DOLLARfor] = ACTIONS(4715), + [anon_sym_for] = ACTIONS(4715), + [anon_sym_POUND] = ACTIONS(4715), + [anon_sym_asm] = ACTIONS(4715), + [anon_sym_AT_LBRACK] = ACTIONS(4715), }, [1838] = { [sym_line_comment] = STATE(1838), [sym_block_comment] = STATE(1838), - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_CR] = ACTIONS(851), + [anon_sym_CR_LF] = ACTIONS(851), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_c_SQUOTE] = ACTIONS(3336), - [anon_sym_c_DQUOTE] = ACTIONS(3336), - [anon_sym_r_SQUOTE] = ACTIONS(3336), - [anon_sym_r_DQUOTE] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym_AT_LBRACK] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_DOT] = ACTIONS(851), + [anon_sym_as] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_LBRACK2] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_GT_GT_GT] = ACTIONS(851), + [anon_sym_AMP_CARET] = ACTIONS(851), + [anon_sym_AMP_AMP] = ACTIONS(851), + [anon_sym_PIPE_PIPE] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(851), + [anon_sym_POUND_LBRACK] = ACTIONS(851), + [anon_sym_is] = ACTIONS(851), + [anon_sym_BANGis] = ACTIONS(851), + [anon_sym_in] = ACTIONS(851), + [anon_sym_BANGin] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(351), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1839] = { [sym_line_comment] = STATE(1839), [sym_block_comment] = STATE(1839), - [ts_builtin_sym_end] = ACTIONS(4707), - [sym_identifier] = ACTIONS(4709), - [anon_sym_LF] = ACTIONS(4709), - [anon_sym_CR] = ACTIONS(4709), - [anon_sym_CR_LF] = ACTIONS(4709), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2841), + [anon_sym_CR] = ACTIONS(2841), + [anon_sym_CR_LF] = ACTIONS(2841), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_const] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym___global] = ACTIONS(4709), - [anon_sym_type] = ACTIONS(4709), - [anon_sym_fn] = ACTIONS(4709), - [anon_sym_PLUS] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_struct] = ACTIONS(4709), - [anon_sym_union] = ACTIONS(4709), - [anon_sym_pub] = ACTIONS(4709), - [anon_sym_mut] = ACTIONS(4709), - [anon_sym_enum] = ACTIONS(4709), - [anon_sym_interface] = ACTIONS(4709), - [anon_sym_QMARK] = ACTIONS(4709), - [anon_sym_BANG] = ACTIONS(4709), - [anon_sym_go] = ACTIONS(4709), - [anon_sym_spawn] = ACTIONS(4709), - [anon_sym_json_DOTdecode] = ACTIONS(4709), - [anon_sym_LBRACK2] = ACTIONS(4709), - [anon_sym_TILDE] = ACTIONS(4709), - [anon_sym_CARET] = ACTIONS(4709), - [anon_sym_AMP] = ACTIONS(4709), - [anon_sym_LT_DASH] = ACTIONS(4709), - [sym_none] = ACTIONS(4709), - [sym_true] = ACTIONS(4709), - [sym_false] = ACTIONS(4709), - [sym_nil] = ACTIONS(4709), - [anon_sym_if] = ACTIONS(4709), - [anon_sym_DOLLARif] = ACTIONS(4709), - [anon_sym_match] = ACTIONS(4709), - [anon_sym_select] = ACTIONS(4709), - [anon_sym_lock] = ACTIONS(4709), - [anon_sym_rlock] = ACTIONS(4709), - [anon_sym_unsafe] = ACTIONS(4709), - [anon_sym_sql] = ACTIONS(4709), - [sym_int_literal] = ACTIONS(4709), - [sym_float_literal] = ACTIONS(4709), - [sym_rune_literal] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4709), - [anon_sym_DQUOTE] = ACTIONS(4709), - [anon_sym_c_SQUOTE] = ACTIONS(4709), - [anon_sym_c_DQUOTE] = ACTIONS(4709), - [anon_sym_r_SQUOTE] = ACTIONS(4709), - [anon_sym_r_DQUOTE] = ACTIONS(4709), - [sym_pseudo_compile_time_identifier] = ACTIONS(4709), - [anon_sym_shared] = ACTIONS(4709), - [anon_sym_map_LBRACK] = ACTIONS(4709), - [anon_sym_chan] = ACTIONS(4709), - [anon_sym_thread] = ACTIONS(4709), - [anon_sym_atomic] = ACTIONS(4709), - [anon_sym_assert] = ACTIONS(4709), - [anon_sym_defer] = ACTIONS(4709), - [anon_sym_goto] = ACTIONS(4709), - [anon_sym_break] = ACTIONS(4709), - [anon_sym_continue] = ACTIONS(4709), - [anon_sym_return] = ACTIONS(4709), - [anon_sym_DOLLARfor] = ACTIONS(4709), - [anon_sym_for] = ACTIONS(4709), - [anon_sym_POUND] = ACTIONS(4709), - [anon_sym_asm] = ACTIONS(4709), - [anon_sym_AT_LBRACK] = ACTIONS(4709), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym___global] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_pub] = ACTIONS(2841), + [anon_sym_mut] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_QMARK] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_go] = ACTIONS(2841), + [anon_sym_spawn] = ACTIONS(2841), + [anon_sym_json_DOTdecode] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_LT_DASH] = ACTIONS(2841), + [sym_none] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_nil] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_DOLLARif] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_select] = ACTIONS(2841), + [anon_sym_lock] = ACTIONS(2841), + [anon_sym_rlock] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_sql] = ACTIONS(2841), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), + [sym_rune_literal] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_c_SQUOTE] = ACTIONS(2841), + [anon_sym_c_DQUOTE] = ACTIONS(2841), + [anon_sym_r_SQUOTE] = ACTIONS(2841), + [anon_sym_r_DQUOTE] = ACTIONS(2841), + [sym_pseudo_compile_time_identifier] = ACTIONS(2841), + [anon_sym_shared] = ACTIONS(2841), + [anon_sym_map_LBRACK] = ACTIONS(2841), + [anon_sym_chan] = ACTIONS(2841), + [anon_sym_thread] = ACTIONS(2841), + [anon_sym_atomic] = ACTIONS(2841), + [anon_sym_assert] = ACTIONS(2841), + [anon_sym_defer] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_DOLLARfor] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2841), + [anon_sym_AT_LBRACK] = ACTIONS(2841), }, [1840] = { [sym_line_comment] = STATE(1840), [sym_block_comment] = STATE(1840), - [ts_builtin_sym_end] = ACTIONS(3082), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LF] = ACTIONS(3084), - [anon_sym_CR] = ACTIONS(3084), - [anon_sym_CR_LF] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(4717), + [sym_identifier] = ACTIONS(4719), + [anon_sym_LF] = ACTIONS(4719), + [anon_sym_CR] = ACTIONS(4719), + [anon_sym_CR_LF] = ACTIONS(4719), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_const] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym___global] = ACTIONS(3084), - [anon_sym_type] = ACTIONS(3084), - [anon_sym_fn] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_union] = ACTIONS(3084), - [anon_sym_pub] = ACTIONS(3084), - [anon_sym_mut] = ACTIONS(3084), - [anon_sym_enum] = ACTIONS(3084), - [anon_sym_interface] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_go] = ACTIONS(3084), - [anon_sym_spawn] = ACTIONS(3084), - [anon_sym_json_DOTdecode] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_LT_DASH] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_true] = ACTIONS(3084), - [sym_false] = ACTIONS(3084), - [sym_nil] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_DOLLARif] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3084), - [anon_sym_rlock] = ACTIONS(3084), - [anon_sym_unsafe] = ACTIONS(3084), - [anon_sym_sql] = ACTIONS(3084), - [sym_int_literal] = ACTIONS(3084), - [sym_float_literal] = ACTIONS(3084), - [sym_rune_literal] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [anon_sym_c_SQUOTE] = ACTIONS(3084), - [anon_sym_c_DQUOTE] = ACTIONS(3084), - [anon_sym_r_SQUOTE] = ACTIONS(3084), - [anon_sym_r_DQUOTE] = ACTIONS(3084), - [sym_pseudo_compile_time_identifier] = ACTIONS(3084), - [anon_sym_shared] = ACTIONS(3084), - [anon_sym_map_LBRACK] = ACTIONS(3084), - [anon_sym_chan] = ACTIONS(3084), - [anon_sym_thread] = ACTIONS(3084), - [anon_sym_atomic] = ACTIONS(3084), - [anon_sym_assert] = ACTIONS(3084), - [anon_sym_defer] = ACTIONS(3084), - [anon_sym_goto] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_DOLLARfor] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [anon_sym_asm] = ACTIONS(3084), - [anon_sym_AT_LBRACK] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4719), + [anon_sym_const] = ACTIONS(4719), + [anon_sym_LPAREN] = ACTIONS(4719), + [anon_sym___global] = ACTIONS(4719), + [anon_sym_type] = ACTIONS(4719), + [anon_sym_fn] = ACTIONS(4719), + [anon_sym_PLUS] = ACTIONS(4719), + [anon_sym_DASH] = ACTIONS(4719), + [anon_sym_STAR] = ACTIONS(4719), + [anon_sym_struct] = ACTIONS(4719), + [anon_sym_union] = ACTIONS(4719), + [anon_sym_pub] = ACTIONS(4719), + [anon_sym_mut] = ACTIONS(4719), + [anon_sym_enum] = ACTIONS(4719), + [anon_sym_interface] = ACTIONS(4719), + [anon_sym_QMARK] = ACTIONS(4719), + [anon_sym_BANG] = ACTIONS(4719), + [anon_sym_go] = ACTIONS(4719), + [anon_sym_spawn] = ACTIONS(4719), + [anon_sym_json_DOTdecode] = ACTIONS(4719), + [anon_sym_LBRACK2] = ACTIONS(4719), + [anon_sym_TILDE] = ACTIONS(4719), + [anon_sym_CARET] = ACTIONS(4719), + [anon_sym_AMP] = ACTIONS(4719), + [anon_sym_LT_DASH] = ACTIONS(4719), + [sym_none] = ACTIONS(4719), + [sym_true] = ACTIONS(4719), + [sym_false] = ACTIONS(4719), + [sym_nil] = ACTIONS(4719), + [anon_sym_if] = ACTIONS(4719), + [anon_sym_DOLLARif] = ACTIONS(4719), + [anon_sym_match] = ACTIONS(4719), + [anon_sym_select] = ACTIONS(4719), + [anon_sym_lock] = ACTIONS(4719), + [anon_sym_rlock] = ACTIONS(4719), + [anon_sym_unsafe] = ACTIONS(4719), + [anon_sym_sql] = ACTIONS(4719), + [sym_int_literal] = ACTIONS(4719), + [sym_float_literal] = ACTIONS(4719), + [sym_rune_literal] = ACTIONS(4719), + [anon_sym_SQUOTE] = ACTIONS(4719), + [anon_sym_DQUOTE] = ACTIONS(4719), + [anon_sym_c_SQUOTE] = ACTIONS(4719), + [anon_sym_c_DQUOTE] = ACTIONS(4719), + [anon_sym_r_SQUOTE] = ACTIONS(4719), + [anon_sym_r_DQUOTE] = ACTIONS(4719), + [sym_pseudo_compile_time_identifier] = ACTIONS(4719), + [anon_sym_shared] = ACTIONS(4719), + [anon_sym_map_LBRACK] = ACTIONS(4719), + [anon_sym_chan] = ACTIONS(4719), + [anon_sym_thread] = ACTIONS(4719), + [anon_sym_atomic] = ACTIONS(4719), + [anon_sym_assert] = ACTIONS(4719), + [anon_sym_defer] = ACTIONS(4719), + [anon_sym_goto] = ACTIONS(4719), + [anon_sym_break] = ACTIONS(4719), + [anon_sym_continue] = ACTIONS(4719), + [anon_sym_return] = ACTIONS(4719), + [anon_sym_DOLLARfor] = ACTIONS(4719), + [anon_sym_for] = ACTIONS(4719), + [anon_sym_POUND] = ACTIONS(4719), + [anon_sym_asm] = ACTIONS(4719), + [anon_sym_AT_LBRACK] = ACTIONS(4719), }, [1841] = { [sym_line_comment] = STATE(1841), [sym_block_comment] = STATE(1841), - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(4721), + [sym_identifier] = ACTIONS(4723), + [anon_sym_LF] = ACTIONS(4723), + [anon_sym_CR] = ACTIONS(4723), + [anon_sym_CR_LF] = ACTIONS(4723), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3328), - [anon_sym_r_SQUOTE] = ACTIONS(3328), - [anon_sym_r_DQUOTE] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(4723), + [anon_sym_LPAREN] = ACTIONS(4723), + [anon_sym___global] = ACTIONS(4723), + [anon_sym_type] = ACTIONS(4723), + [anon_sym_fn] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_struct] = ACTIONS(4723), + [anon_sym_union] = ACTIONS(4723), + [anon_sym_pub] = ACTIONS(4723), + [anon_sym_mut] = ACTIONS(4723), + [anon_sym_enum] = ACTIONS(4723), + [anon_sym_interface] = ACTIONS(4723), + [anon_sym_QMARK] = ACTIONS(4723), + [anon_sym_BANG] = ACTIONS(4723), + [anon_sym_go] = ACTIONS(4723), + [anon_sym_spawn] = ACTIONS(4723), + [anon_sym_json_DOTdecode] = ACTIONS(4723), + [anon_sym_LBRACK2] = ACTIONS(4723), + [anon_sym_TILDE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_LT_DASH] = ACTIONS(4723), + [sym_none] = ACTIONS(4723), + [sym_true] = ACTIONS(4723), + [sym_false] = ACTIONS(4723), + [sym_nil] = ACTIONS(4723), + [anon_sym_if] = ACTIONS(4723), + [anon_sym_DOLLARif] = ACTIONS(4723), + [anon_sym_match] = ACTIONS(4723), + [anon_sym_select] = ACTIONS(4723), + [anon_sym_lock] = ACTIONS(4723), + [anon_sym_rlock] = ACTIONS(4723), + [anon_sym_unsafe] = ACTIONS(4723), + [anon_sym_sql] = ACTIONS(4723), + [sym_int_literal] = ACTIONS(4723), + [sym_float_literal] = ACTIONS(4723), + [sym_rune_literal] = ACTIONS(4723), + [anon_sym_SQUOTE] = ACTIONS(4723), + [anon_sym_DQUOTE] = ACTIONS(4723), + [anon_sym_c_SQUOTE] = ACTIONS(4723), + [anon_sym_c_DQUOTE] = ACTIONS(4723), + [anon_sym_r_SQUOTE] = ACTIONS(4723), + [anon_sym_r_DQUOTE] = ACTIONS(4723), + [sym_pseudo_compile_time_identifier] = ACTIONS(4723), + [anon_sym_shared] = ACTIONS(4723), + [anon_sym_map_LBRACK] = ACTIONS(4723), + [anon_sym_chan] = ACTIONS(4723), + [anon_sym_thread] = ACTIONS(4723), + [anon_sym_atomic] = ACTIONS(4723), + [anon_sym_assert] = ACTIONS(4723), + [anon_sym_defer] = ACTIONS(4723), + [anon_sym_goto] = ACTIONS(4723), + [anon_sym_break] = ACTIONS(4723), + [anon_sym_continue] = ACTIONS(4723), + [anon_sym_return] = ACTIONS(4723), + [anon_sym_DOLLARfor] = ACTIONS(4723), + [anon_sym_for] = ACTIONS(4723), + [anon_sym_POUND] = ACTIONS(4723), + [anon_sym_asm] = ACTIONS(4723), + [anon_sym_AT_LBRACK] = ACTIONS(4723), }, [1842] = { [sym_line_comment] = STATE(1842), [sym_block_comment] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(4711), - [sym_identifier] = ACTIONS(4713), - [anon_sym_LF] = ACTIONS(4713), - [anon_sym_CR] = ACTIONS(4713), - [anon_sym_CR_LF] = ACTIONS(4713), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_const] = ACTIONS(4713), - [anon_sym_LPAREN] = ACTIONS(4713), - [anon_sym___global] = ACTIONS(4713), - [anon_sym_type] = ACTIONS(4713), - [anon_sym_fn] = ACTIONS(4713), - [anon_sym_PLUS] = ACTIONS(4713), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_STAR] = ACTIONS(4713), - [anon_sym_struct] = ACTIONS(4713), - [anon_sym_union] = ACTIONS(4713), - [anon_sym_pub] = ACTIONS(4713), - [anon_sym_mut] = ACTIONS(4713), - [anon_sym_enum] = ACTIONS(4713), - [anon_sym_interface] = ACTIONS(4713), - [anon_sym_QMARK] = ACTIONS(4713), - [anon_sym_BANG] = ACTIONS(4713), - [anon_sym_go] = ACTIONS(4713), - [anon_sym_spawn] = ACTIONS(4713), - [anon_sym_json_DOTdecode] = ACTIONS(4713), - [anon_sym_LBRACK2] = ACTIONS(4713), - [anon_sym_TILDE] = ACTIONS(4713), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_AMP] = ACTIONS(4713), - [anon_sym_LT_DASH] = ACTIONS(4713), - [sym_none] = ACTIONS(4713), - [sym_true] = ACTIONS(4713), - [sym_false] = ACTIONS(4713), - [sym_nil] = ACTIONS(4713), - [anon_sym_if] = ACTIONS(4713), - [anon_sym_DOLLARif] = ACTIONS(4713), - [anon_sym_match] = ACTIONS(4713), - [anon_sym_select] = ACTIONS(4713), - [anon_sym_lock] = ACTIONS(4713), - [anon_sym_rlock] = ACTIONS(4713), - [anon_sym_unsafe] = ACTIONS(4713), - [anon_sym_sql] = ACTIONS(4713), - [sym_int_literal] = ACTIONS(4713), - [sym_float_literal] = ACTIONS(4713), - [sym_rune_literal] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4713), - [anon_sym_DQUOTE] = ACTIONS(4713), - [anon_sym_c_SQUOTE] = ACTIONS(4713), - [anon_sym_c_DQUOTE] = ACTIONS(4713), - [anon_sym_r_SQUOTE] = ACTIONS(4713), - [anon_sym_r_DQUOTE] = ACTIONS(4713), - [sym_pseudo_compile_time_identifier] = ACTIONS(4713), - [anon_sym_shared] = ACTIONS(4713), - [anon_sym_map_LBRACK] = ACTIONS(4713), - [anon_sym_chan] = ACTIONS(4713), - [anon_sym_thread] = ACTIONS(4713), - [anon_sym_atomic] = ACTIONS(4713), - [anon_sym_assert] = ACTIONS(4713), - [anon_sym_defer] = ACTIONS(4713), - [anon_sym_goto] = ACTIONS(4713), - [anon_sym_break] = ACTIONS(4713), - [anon_sym_continue] = ACTIONS(4713), - [anon_sym_return] = ACTIONS(4713), - [anon_sym_DOLLARfor] = ACTIONS(4713), - [anon_sym_for] = ACTIONS(4713), - [anon_sym_POUND] = ACTIONS(4713), - [anon_sym_asm] = ACTIONS(4713), - [anon_sym_AT_LBRACK] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), }, [1843] = { [sym_line_comment] = STATE(1843), [sym_block_comment] = STATE(1843), - [ts_builtin_sym_end] = ACTIONS(4715), - [sym_identifier] = ACTIONS(4717), - [anon_sym_LF] = ACTIONS(4717), - [anon_sym_CR] = ACTIONS(4717), - [anon_sym_CR_LF] = ACTIONS(4717), + [ts_builtin_sym_end] = ACTIONS(4725), + [sym_identifier] = ACTIONS(4727), + [anon_sym_LF] = ACTIONS(4727), + [anon_sym_CR] = ACTIONS(4727), + [anon_sym_CR_LF] = ACTIONS(4727), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_const] = ACTIONS(4717), - [anon_sym_LPAREN] = ACTIONS(4717), - [anon_sym___global] = ACTIONS(4717), - [anon_sym_type] = ACTIONS(4717), - [anon_sym_fn] = ACTIONS(4717), - [anon_sym_PLUS] = ACTIONS(4717), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_STAR] = ACTIONS(4717), - [anon_sym_struct] = ACTIONS(4717), - [anon_sym_union] = ACTIONS(4717), - [anon_sym_pub] = ACTIONS(4717), - [anon_sym_mut] = ACTIONS(4717), - [anon_sym_enum] = ACTIONS(4717), - [anon_sym_interface] = ACTIONS(4717), - [anon_sym_QMARK] = ACTIONS(4717), - [anon_sym_BANG] = ACTIONS(4717), - [anon_sym_go] = ACTIONS(4717), - [anon_sym_spawn] = ACTIONS(4717), - [anon_sym_json_DOTdecode] = ACTIONS(4717), - [anon_sym_LBRACK2] = ACTIONS(4717), - [anon_sym_TILDE] = ACTIONS(4717), - [anon_sym_CARET] = ACTIONS(4717), - [anon_sym_AMP] = ACTIONS(4717), - [anon_sym_LT_DASH] = ACTIONS(4717), - [sym_none] = ACTIONS(4717), - [sym_true] = ACTIONS(4717), - [sym_false] = ACTIONS(4717), - [sym_nil] = ACTIONS(4717), - [anon_sym_if] = ACTIONS(4717), - [anon_sym_DOLLARif] = ACTIONS(4717), - [anon_sym_match] = ACTIONS(4717), - [anon_sym_select] = ACTIONS(4717), - [anon_sym_lock] = ACTIONS(4717), - [anon_sym_rlock] = ACTIONS(4717), - [anon_sym_unsafe] = ACTIONS(4717), - [anon_sym_sql] = ACTIONS(4717), - [sym_int_literal] = ACTIONS(4717), - [sym_float_literal] = ACTIONS(4717), - [sym_rune_literal] = ACTIONS(4717), - [anon_sym_SQUOTE] = ACTIONS(4717), - [anon_sym_DQUOTE] = ACTIONS(4717), - [anon_sym_c_SQUOTE] = ACTIONS(4717), - [anon_sym_c_DQUOTE] = ACTIONS(4717), - [anon_sym_r_SQUOTE] = ACTIONS(4717), - [anon_sym_r_DQUOTE] = ACTIONS(4717), - [sym_pseudo_compile_time_identifier] = ACTIONS(4717), - [anon_sym_shared] = ACTIONS(4717), - [anon_sym_map_LBRACK] = ACTIONS(4717), - [anon_sym_chan] = ACTIONS(4717), - [anon_sym_thread] = ACTIONS(4717), - [anon_sym_atomic] = ACTIONS(4717), - [anon_sym_assert] = ACTIONS(4717), - [anon_sym_defer] = ACTIONS(4717), - [anon_sym_goto] = ACTIONS(4717), - [anon_sym_break] = ACTIONS(4717), - [anon_sym_continue] = ACTIONS(4717), - [anon_sym_return] = ACTIONS(4717), - [anon_sym_DOLLARfor] = ACTIONS(4717), - [anon_sym_for] = ACTIONS(4717), - [anon_sym_POUND] = ACTIONS(4717), - [anon_sym_asm] = ACTIONS(4717), - [anon_sym_AT_LBRACK] = ACTIONS(4717), + [anon_sym_DOT] = ACTIONS(4727), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_const] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4727), + [anon_sym___global] = ACTIONS(4727), + [anon_sym_type] = ACTIONS(4727), + [anon_sym_fn] = ACTIONS(4727), + [anon_sym_PLUS] = ACTIONS(4727), + [anon_sym_DASH] = ACTIONS(4727), + [anon_sym_STAR] = ACTIONS(4727), + [anon_sym_struct] = ACTIONS(4727), + [anon_sym_union] = ACTIONS(4727), + [anon_sym_pub] = ACTIONS(4727), + [anon_sym_mut] = ACTIONS(4727), + [anon_sym_enum] = ACTIONS(4727), + [anon_sym_interface] = ACTIONS(4727), + [anon_sym_QMARK] = ACTIONS(4727), + [anon_sym_BANG] = ACTIONS(4727), + [anon_sym_go] = ACTIONS(4727), + [anon_sym_spawn] = ACTIONS(4727), + [anon_sym_json_DOTdecode] = ACTIONS(4727), + [anon_sym_LBRACK2] = ACTIONS(4727), + [anon_sym_TILDE] = ACTIONS(4727), + [anon_sym_CARET] = ACTIONS(4727), + [anon_sym_AMP] = ACTIONS(4727), + [anon_sym_LT_DASH] = ACTIONS(4727), + [sym_none] = ACTIONS(4727), + [sym_true] = ACTIONS(4727), + [sym_false] = ACTIONS(4727), + [sym_nil] = ACTIONS(4727), + [anon_sym_if] = ACTIONS(4727), + [anon_sym_DOLLARif] = ACTIONS(4727), + [anon_sym_match] = ACTIONS(4727), + [anon_sym_select] = ACTIONS(4727), + [anon_sym_lock] = ACTIONS(4727), + [anon_sym_rlock] = ACTIONS(4727), + [anon_sym_unsafe] = ACTIONS(4727), + [anon_sym_sql] = ACTIONS(4727), + [sym_int_literal] = ACTIONS(4727), + [sym_float_literal] = ACTIONS(4727), + [sym_rune_literal] = ACTIONS(4727), + [anon_sym_SQUOTE] = ACTIONS(4727), + [anon_sym_DQUOTE] = ACTIONS(4727), + [anon_sym_c_SQUOTE] = ACTIONS(4727), + [anon_sym_c_DQUOTE] = ACTIONS(4727), + [anon_sym_r_SQUOTE] = ACTIONS(4727), + [anon_sym_r_DQUOTE] = ACTIONS(4727), + [sym_pseudo_compile_time_identifier] = ACTIONS(4727), + [anon_sym_shared] = ACTIONS(4727), + [anon_sym_map_LBRACK] = ACTIONS(4727), + [anon_sym_chan] = ACTIONS(4727), + [anon_sym_thread] = ACTIONS(4727), + [anon_sym_atomic] = ACTIONS(4727), + [anon_sym_assert] = ACTIONS(4727), + [anon_sym_defer] = ACTIONS(4727), + [anon_sym_goto] = ACTIONS(4727), + [anon_sym_break] = ACTIONS(4727), + [anon_sym_continue] = ACTIONS(4727), + [anon_sym_return] = ACTIONS(4727), + [anon_sym_DOLLARfor] = ACTIONS(4727), + [anon_sym_for] = ACTIONS(4727), + [anon_sym_POUND] = ACTIONS(4727), + [anon_sym_asm] = ACTIONS(4727), + [anon_sym_AT_LBRACK] = ACTIONS(4727), }, [1844] = { [sym_line_comment] = STATE(1844), [sym_block_comment] = STATE(1844), - [ts_builtin_sym_end] = ACTIONS(4719), - [sym_identifier] = ACTIONS(4721), - [anon_sym_LF] = ACTIONS(4721), - [anon_sym_CR] = ACTIONS(4721), - [anon_sym_CR_LF] = ACTIONS(4721), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_const] = ACTIONS(4721), - [anon_sym_LPAREN] = ACTIONS(4721), - [anon_sym___global] = ACTIONS(4721), - [anon_sym_type] = ACTIONS(4721), - [anon_sym_fn] = ACTIONS(4721), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4721), - [anon_sym_struct] = ACTIONS(4721), - [anon_sym_union] = ACTIONS(4721), - [anon_sym_pub] = ACTIONS(4721), - [anon_sym_mut] = ACTIONS(4721), - [anon_sym_enum] = ACTIONS(4721), - [anon_sym_interface] = ACTIONS(4721), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_go] = ACTIONS(4721), - [anon_sym_spawn] = ACTIONS(4721), - [anon_sym_json_DOTdecode] = ACTIONS(4721), - [anon_sym_LBRACK2] = ACTIONS(4721), - [anon_sym_TILDE] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_DASH] = ACTIONS(4721), - [sym_none] = ACTIONS(4721), - [sym_true] = ACTIONS(4721), - [sym_false] = ACTIONS(4721), - [sym_nil] = ACTIONS(4721), - [anon_sym_if] = ACTIONS(4721), - [anon_sym_DOLLARif] = ACTIONS(4721), - [anon_sym_match] = ACTIONS(4721), - [anon_sym_select] = ACTIONS(4721), - [anon_sym_lock] = ACTIONS(4721), - [anon_sym_rlock] = ACTIONS(4721), - [anon_sym_unsafe] = ACTIONS(4721), - [anon_sym_sql] = ACTIONS(4721), - [sym_int_literal] = ACTIONS(4721), - [sym_float_literal] = ACTIONS(4721), - [sym_rune_literal] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4721), - [anon_sym_DQUOTE] = ACTIONS(4721), - [anon_sym_c_SQUOTE] = ACTIONS(4721), - [anon_sym_c_DQUOTE] = ACTIONS(4721), - [anon_sym_r_SQUOTE] = ACTIONS(4721), - [anon_sym_r_DQUOTE] = ACTIONS(4721), - [sym_pseudo_compile_time_identifier] = ACTIONS(4721), - [anon_sym_shared] = ACTIONS(4721), - [anon_sym_map_LBRACK] = ACTIONS(4721), - [anon_sym_chan] = ACTIONS(4721), - [anon_sym_thread] = ACTIONS(4721), - [anon_sym_atomic] = ACTIONS(4721), - [anon_sym_assert] = ACTIONS(4721), - [anon_sym_defer] = ACTIONS(4721), - [anon_sym_goto] = ACTIONS(4721), - [anon_sym_break] = ACTIONS(4721), - [anon_sym_continue] = ACTIONS(4721), - [anon_sym_return] = ACTIONS(4721), - [anon_sym_DOLLARfor] = ACTIONS(4721), - [anon_sym_for] = ACTIONS(4721), - [anon_sym_POUND] = ACTIONS(4721), - [anon_sym_asm] = ACTIONS(4721), - [anon_sym_AT_LBRACK] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [anon_sym_c_SQUOTE] = ACTIONS(3246), + [anon_sym_c_DQUOTE] = ACTIONS(3246), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), }, [1845] = { [sym_line_comment] = STATE(1845), [sym_block_comment] = STATE(1845), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2433), - [anon_sym_LF] = ACTIONS(2433), - [anon_sym_CR] = ACTIONS(2433), - [anon_sym_CR_LF] = ACTIONS(2433), + [ts_builtin_sym_end] = ACTIONS(4729), + [sym_identifier] = ACTIONS(4731), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_CR] = ACTIONS(4731), + [anon_sym_CR_LF] = ACTIONS(4731), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym___global] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_QMARK] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_go] = ACTIONS(2433), - [anon_sym_spawn] = ACTIONS(2433), - [anon_sym_json_DOTdecode] = ACTIONS(2433), - [anon_sym_LBRACK2] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_nil] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_DOLLARif] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_select] = ACTIONS(2433), - [anon_sym_lock] = ACTIONS(2433), - [anon_sym_rlock] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_sql] = ACTIONS(2433), - [sym_int_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_rune_literal] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [anon_sym_c_SQUOTE] = ACTIONS(2433), - [anon_sym_c_DQUOTE] = ACTIONS(2433), - [anon_sym_r_SQUOTE] = ACTIONS(2433), - [anon_sym_r_DQUOTE] = ACTIONS(2433), - [sym_pseudo_compile_time_identifier] = ACTIONS(2433), - [anon_sym_shared] = ACTIONS(2433), - [anon_sym_map_LBRACK] = ACTIONS(2433), - [anon_sym_chan] = ACTIONS(2433), - [anon_sym_thread] = ACTIONS(2433), - [anon_sym_atomic] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_DOLLARfor] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_asm] = ACTIONS(2433), - [anon_sym_AT_LBRACK] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(4731), + [anon_sym_LBRACE] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(4731), + [anon_sym___global] = ACTIONS(4731), + [anon_sym_type] = ACTIONS(4731), + [anon_sym_fn] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4731), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_STAR] = ACTIONS(4731), + [anon_sym_struct] = ACTIONS(4731), + [anon_sym_union] = ACTIONS(4731), + [anon_sym_pub] = ACTIONS(4731), + [anon_sym_mut] = ACTIONS(4731), + [anon_sym_enum] = ACTIONS(4731), + [anon_sym_interface] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4731), + [anon_sym_BANG] = ACTIONS(4731), + [anon_sym_go] = ACTIONS(4731), + [anon_sym_spawn] = ACTIONS(4731), + [anon_sym_json_DOTdecode] = ACTIONS(4731), + [anon_sym_LBRACK2] = ACTIONS(4731), + [anon_sym_TILDE] = ACTIONS(4731), + [anon_sym_CARET] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4731), + [anon_sym_LT_DASH] = ACTIONS(4731), + [sym_none] = ACTIONS(4731), + [sym_true] = ACTIONS(4731), + [sym_false] = ACTIONS(4731), + [sym_nil] = ACTIONS(4731), + [anon_sym_if] = ACTIONS(4731), + [anon_sym_DOLLARif] = ACTIONS(4731), + [anon_sym_match] = ACTIONS(4731), + [anon_sym_select] = ACTIONS(4731), + [anon_sym_lock] = ACTIONS(4731), + [anon_sym_rlock] = ACTIONS(4731), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_sql] = ACTIONS(4731), + [sym_int_literal] = ACTIONS(4731), + [sym_float_literal] = ACTIONS(4731), + [sym_rune_literal] = ACTIONS(4731), + [anon_sym_SQUOTE] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_c_SQUOTE] = ACTIONS(4731), + [anon_sym_c_DQUOTE] = ACTIONS(4731), + [anon_sym_r_SQUOTE] = ACTIONS(4731), + [anon_sym_r_DQUOTE] = ACTIONS(4731), + [sym_pseudo_compile_time_identifier] = ACTIONS(4731), + [anon_sym_shared] = ACTIONS(4731), + [anon_sym_map_LBRACK] = ACTIONS(4731), + [anon_sym_chan] = ACTIONS(4731), + [anon_sym_thread] = ACTIONS(4731), + [anon_sym_atomic] = ACTIONS(4731), + [anon_sym_assert] = ACTIONS(4731), + [anon_sym_defer] = ACTIONS(4731), + [anon_sym_goto] = ACTIONS(4731), + [anon_sym_break] = ACTIONS(4731), + [anon_sym_continue] = ACTIONS(4731), + [anon_sym_return] = ACTIONS(4731), + [anon_sym_DOLLARfor] = ACTIONS(4731), + [anon_sym_for] = ACTIONS(4731), + [anon_sym_POUND] = ACTIONS(4731), + [anon_sym_asm] = ACTIONS(4731), + [anon_sym_AT_LBRACK] = ACTIONS(4731), }, [1846] = { [sym_line_comment] = STATE(1846), [sym_block_comment] = STATE(1846), - [ts_builtin_sym_end] = ACTIONS(4723), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LF] = ACTIONS(4725), - [anon_sym_CR] = ACTIONS(4725), - [anon_sym_CR_LF] = ACTIONS(4725), + [ts_builtin_sym_end] = ACTIONS(4733), + [sym_identifier] = ACTIONS(4735), + [anon_sym_LF] = ACTIONS(4735), + [anon_sym_CR] = ACTIONS(4735), + [anon_sym_CR_LF] = ACTIONS(4735), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_const] = ACTIONS(4725), - [anon_sym_LPAREN] = ACTIONS(4725), - [anon_sym___global] = ACTIONS(4725), - [anon_sym_type] = ACTIONS(4725), - [anon_sym_fn] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4725), - [anon_sym_struct] = ACTIONS(4725), - [anon_sym_union] = ACTIONS(4725), - [anon_sym_pub] = ACTIONS(4725), - [anon_sym_mut] = ACTIONS(4725), - [anon_sym_enum] = ACTIONS(4725), - [anon_sym_interface] = ACTIONS(4725), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(4725), - [anon_sym_go] = ACTIONS(4725), - [anon_sym_spawn] = ACTIONS(4725), - [anon_sym_json_DOTdecode] = ACTIONS(4725), - [anon_sym_LBRACK2] = ACTIONS(4725), - [anon_sym_TILDE] = ACTIONS(4725), - [anon_sym_CARET] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_DASH] = ACTIONS(4725), - [sym_none] = ACTIONS(4725), - [sym_true] = ACTIONS(4725), - [sym_false] = ACTIONS(4725), - [sym_nil] = ACTIONS(4725), - [anon_sym_if] = ACTIONS(4725), - [anon_sym_DOLLARif] = ACTIONS(4725), - [anon_sym_match] = ACTIONS(4725), - [anon_sym_select] = ACTIONS(4725), - [anon_sym_lock] = ACTIONS(4725), - [anon_sym_rlock] = ACTIONS(4725), - [anon_sym_unsafe] = ACTIONS(4725), - [anon_sym_sql] = ACTIONS(4725), - [sym_int_literal] = ACTIONS(4725), - [sym_float_literal] = ACTIONS(4725), - [sym_rune_literal] = ACTIONS(4725), - [anon_sym_SQUOTE] = ACTIONS(4725), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym_c_SQUOTE] = ACTIONS(4725), - [anon_sym_c_DQUOTE] = ACTIONS(4725), - [anon_sym_r_SQUOTE] = ACTIONS(4725), - [anon_sym_r_DQUOTE] = ACTIONS(4725), - [sym_pseudo_compile_time_identifier] = ACTIONS(4725), - [anon_sym_shared] = ACTIONS(4725), - [anon_sym_map_LBRACK] = ACTIONS(4725), - [anon_sym_chan] = ACTIONS(4725), - [anon_sym_thread] = ACTIONS(4725), - [anon_sym_atomic] = ACTIONS(4725), - [anon_sym_assert] = ACTIONS(4725), - [anon_sym_defer] = ACTIONS(4725), - [anon_sym_goto] = ACTIONS(4725), - [anon_sym_break] = ACTIONS(4725), - [anon_sym_continue] = ACTIONS(4725), - [anon_sym_return] = ACTIONS(4725), - [anon_sym_DOLLARfor] = ACTIONS(4725), - [anon_sym_for] = ACTIONS(4725), - [anon_sym_POUND] = ACTIONS(4725), - [anon_sym_asm] = ACTIONS(4725), - [anon_sym_AT_LBRACK] = ACTIONS(4725), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_LPAREN] = ACTIONS(4735), + [anon_sym___global] = ACTIONS(4735), + [anon_sym_type] = ACTIONS(4735), + [anon_sym_fn] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_struct] = ACTIONS(4735), + [anon_sym_union] = ACTIONS(4735), + [anon_sym_pub] = ACTIONS(4735), + [anon_sym_mut] = ACTIONS(4735), + [anon_sym_enum] = ACTIONS(4735), + [anon_sym_interface] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [anon_sym_BANG] = ACTIONS(4735), + [anon_sym_go] = ACTIONS(4735), + [anon_sym_spawn] = ACTIONS(4735), + [anon_sym_json_DOTdecode] = ACTIONS(4735), + [anon_sym_LBRACK2] = ACTIONS(4735), + [anon_sym_TILDE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_LT_DASH] = ACTIONS(4735), + [sym_none] = ACTIONS(4735), + [sym_true] = ACTIONS(4735), + [sym_false] = ACTIONS(4735), + [sym_nil] = ACTIONS(4735), + [anon_sym_if] = ACTIONS(4735), + [anon_sym_DOLLARif] = ACTIONS(4735), + [anon_sym_match] = ACTIONS(4735), + [anon_sym_select] = ACTIONS(4735), + [anon_sym_lock] = ACTIONS(4735), + [anon_sym_rlock] = ACTIONS(4735), + [anon_sym_unsafe] = ACTIONS(4735), + [anon_sym_sql] = ACTIONS(4735), + [sym_int_literal] = ACTIONS(4735), + [sym_float_literal] = ACTIONS(4735), + [sym_rune_literal] = ACTIONS(4735), + [anon_sym_SQUOTE] = ACTIONS(4735), + [anon_sym_DQUOTE] = ACTIONS(4735), + [anon_sym_c_SQUOTE] = ACTIONS(4735), + [anon_sym_c_DQUOTE] = ACTIONS(4735), + [anon_sym_r_SQUOTE] = ACTIONS(4735), + [anon_sym_r_DQUOTE] = ACTIONS(4735), + [sym_pseudo_compile_time_identifier] = ACTIONS(4735), + [anon_sym_shared] = ACTIONS(4735), + [anon_sym_map_LBRACK] = ACTIONS(4735), + [anon_sym_chan] = ACTIONS(4735), + [anon_sym_thread] = ACTIONS(4735), + [anon_sym_atomic] = ACTIONS(4735), + [anon_sym_assert] = ACTIONS(4735), + [anon_sym_defer] = ACTIONS(4735), + [anon_sym_goto] = ACTIONS(4735), + [anon_sym_break] = ACTIONS(4735), + [anon_sym_continue] = ACTIONS(4735), + [anon_sym_return] = ACTIONS(4735), + [anon_sym_DOLLARfor] = ACTIONS(4735), + [anon_sym_for] = ACTIONS(4735), + [anon_sym_POUND] = ACTIONS(4735), + [anon_sym_asm] = ACTIONS(4735), + [anon_sym_AT_LBRACK] = ACTIONS(4735), }, [1847] = { [sym_line_comment] = STATE(1847), [sym_block_comment] = STATE(1847), - [ts_builtin_sym_end] = ACTIONS(4727), - [sym_identifier] = ACTIONS(4729), - [anon_sym_LF] = ACTIONS(4729), - [anon_sym_CR] = ACTIONS(4729), - [anon_sym_CR_LF] = ACTIONS(4729), + [ts_builtin_sym_end] = ACTIONS(4737), + [sym_identifier] = ACTIONS(4739), + [anon_sym_LF] = ACTIONS(4739), + [anon_sym_CR] = ACTIONS(4739), + [anon_sym_CR_LF] = ACTIONS(4739), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_const] = ACTIONS(4729), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym___global] = ACTIONS(4729), - [anon_sym_type] = ACTIONS(4729), - [anon_sym_fn] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4729), - [anon_sym_struct] = ACTIONS(4729), - [anon_sym_union] = ACTIONS(4729), - [anon_sym_pub] = ACTIONS(4729), - [anon_sym_mut] = ACTIONS(4729), - [anon_sym_enum] = ACTIONS(4729), - [anon_sym_interface] = ACTIONS(4729), - [anon_sym_QMARK] = ACTIONS(4729), - [anon_sym_BANG] = ACTIONS(4729), - [anon_sym_go] = ACTIONS(4729), - [anon_sym_spawn] = ACTIONS(4729), - [anon_sym_json_DOTdecode] = ACTIONS(4729), - [anon_sym_LBRACK2] = ACTIONS(4729), - [anon_sym_TILDE] = ACTIONS(4729), - [anon_sym_CARET] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4729), - [anon_sym_LT_DASH] = ACTIONS(4729), - [sym_none] = ACTIONS(4729), - [sym_true] = ACTIONS(4729), - [sym_false] = ACTIONS(4729), - [sym_nil] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4729), - [anon_sym_DOLLARif] = ACTIONS(4729), - [anon_sym_match] = ACTIONS(4729), - [anon_sym_select] = ACTIONS(4729), - [anon_sym_lock] = ACTIONS(4729), - [anon_sym_rlock] = ACTIONS(4729), - [anon_sym_unsafe] = ACTIONS(4729), - [anon_sym_sql] = ACTIONS(4729), - [sym_int_literal] = ACTIONS(4729), - [sym_float_literal] = ACTIONS(4729), - [sym_rune_literal] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(4729), - [anon_sym_c_SQUOTE] = ACTIONS(4729), - [anon_sym_c_DQUOTE] = ACTIONS(4729), - [anon_sym_r_SQUOTE] = ACTIONS(4729), - [anon_sym_r_DQUOTE] = ACTIONS(4729), - [sym_pseudo_compile_time_identifier] = ACTIONS(4729), - [anon_sym_shared] = ACTIONS(4729), - [anon_sym_map_LBRACK] = ACTIONS(4729), - [anon_sym_chan] = ACTIONS(4729), - [anon_sym_thread] = ACTIONS(4729), - [anon_sym_atomic] = ACTIONS(4729), - [anon_sym_assert] = ACTIONS(4729), - [anon_sym_defer] = ACTIONS(4729), - [anon_sym_goto] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_continue] = ACTIONS(4729), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_DOLLARfor] = ACTIONS(4729), - [anon_sym_for] = ACTIONS(4729), - [anon_sym_POUND] = ACTIONS(4729), - [anon_sym_asm] = ACTIONS(4729), - [anon_sym_AT_LBRACK] = ACTIONS(4729), + [anon_sym_DOT] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4739), + [anon_sym_const] = ACTIONS(4739), + [anon_sym_LPAREN] = ACTIONS(4739), + [anon_sym___global] = ACTIONS(4739), + [anon_sym_type] = ACTIONS(4739), + [anon_sym_fn] = ACTIONS(4739), + [anon_sym_PLUS] = ACTIONS(4739), + [anon_sym_DASH] = ACTIONS(4739), + [anon_sym_STAR] = ACTIONS(4739), + [anon_sym_struct] = ACTIONS(4739), + [anon_sym_union] = ACTIONS(4739), + [anon_sym_pub] = ACTIONS(4739), + [anon_sym_mut] = ACTIONS(4739), + [anon_sym_enum] = ACTIONS(4739), + [anon_sym_interface] = ACTIONS(4739), + [anon_sym_QMARK] = ACTIONS(4739), + [anon_sym_BANG] = ACTIONS(4739), + [anon_sym_go] = ACTIONS(4739), + [anon_sym_spawn] = ACTIONS(4739), + [anon_sym_json_DOTdecode] = ACTIONS(4739), + [anon_sym_LBRACK2] = ACTIONS(4739), + [anon_sym_TILDE] = ACTIONS(4739), + [anon_sym_CARET] = ACTIONS(4739), + [anon_sym_AMP] = ACTIONS(4739), + [anon_sym_LT_DASH] = ACTIONS(4739), + [sym_none] = ACTIONS(4739), + [sym_true] = ACTIONS(4739), + [sym_false] = ACTIONS(4739), + [sym_nil] = ACTIONS(4739), + [anon_sym_if] = ACTIONS(4739), + [anon_sym_DOLLARif] = ACTIONS(4739), + [anon_sym_match] = ACTIONS(4739), + [anon_sym_select] = ACTIONS(4739), + [anon_sym_lock] = ACTIONS(4739), + [anon_sym_rlock] = ACTIONS(4739), + [anon_sym_unsafe] = ACTIONS(4739), + [anon_sym_sql] = ACTIONS(4739), + [sym_int_literal] = ACTIONS(4739), + [sym_float_literal] = ACTIONS(4739), + [sym_rune_literal] = ACTIONS(4739), + [anon_sym_SQUOTE] = ACTIONS(4739), + [anon_sym_DQUOTE] = ACTIONS(4739), + [anon_sym_c_SQUOTE] = ACTIONS(4739), + [anon_sym_c_DQUOTE] = ACTIONS(4739), + [anon_sym_r_SQUOTE] = ACTIONS(4739), + [anon_sym_r_DQUOTE] = ACTIONS(4739), + [sym_pseudo_compile_time_identifier] = ACTIONS(4739), + [anon_sym_shared] = ACTIONS(4739), + [anon_sym_map_LBRACK] = ACTIONS(4739), + [anon_sym_chan] = ACTIONS(4739), + [anon_sym_thread] = ACTIONS(4739), + [anon_sym_atomic] = ACTIONS(4739), + [anon_sym_assert] = ACTIONS(4739), + [anon_sym_defer] = ACTIONS(4739), + [anon_sym_goto] = ACTIONS(4739), + [anon_sym_break] = ACTIONS(4739), + [anon_sym_continue] = ACTIONS(4739), + [anon_sym_return] = ACTIONS(4739), + [anon_sym_DOLLARfor] = ACTIONS(4739), + [anon_sym_for] = ACTIONS(4739), + [anon_sym_POUND] = ACTIONS(4739), + [anon_sym_asm] = ACTIONS(4739), + [anon_sym_AT_LBRACK] = ACTIONS(4739), }, [1848] = { [sym_line_comment] = STATE(1848), [sym_block_comment] = STATE(1848), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_c_SQUOTE] = ACTIONS(3356), + [anon_sym_c_DQUOTE] = ACTIONS(3356), + [anon_sym_r_SQUOTE] = ACTIONS(3356), + [anon_sym_r_DQUOTE] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), }, [1849] = { [sym_line_comment] = STATE(1849), [sym_block_comment] = STATE(1849), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), + [ts_builtin_sym_end] = ACTIONS(4741), + [sym_identifier] = ACTIONS(4743), + [anon_sym_LF] = ACTIONS(4743), + [anon_sym_CR] = ACTIONS(4743), + [anon_sym_CR_LF] = ACTIONS(4743), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [anon_sym_c_SQUOTE] = ACTIONS(3005), - [anon_sym_c_DQUOTE] = ACTIONS(3005), - [anon_sym_r_SQUOTE] = ACTIONS(3005), - [anon_sym_r_DQUOTE] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(4743), + [anon_sym_LBRACE] = ACTIONS(4743), + [anon_sym_const] = ACTIONS(4743), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym___global] = ACTIONS(4743), + [anon_sym_type] = ACTIONS(4743), + [anon_sym_fn] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4743), + [anon_sym_STAR] = ACTIONS(4743), + [anon_sym_struct] = ACTIONS(4743), + [anon_sym_union] = ACTIONS(4743), + [anon_sym_pub] = ACTIONS(4743), + [anon_sym_mut] = ACTIONS(4743), + [anon_sym_enum] = ACTIONS(4743), + [anon_sym_interface] = ACTIONS(4743), + [anon_sym_QMARK] = ACTIONS(4743), + [anon_sym_BANG] = ACTIONS(4743), + [anon_sym_go] = ACTIONS(4743), + [anon_sym_spawn] = ACTIONS(4743), + [anon_sym_json_DOTdecode] = ACTIONS(4743), + [anon_sym_LBRACK2] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4743), + [anon_sym_CARET] = ACTIONS(4743), + [anon_sym_AMP] = ACTIONS(4743), + [anon_sym_LT_DASH] = ACTIONS(4743), + [sym_none] = ACTIONS(4743), + [sym_true] = ACTIONS(4743), + [sym_false] = ACTIONS(4743), + [sym_nil] = ACTIONS(4743), + [anon_sym_if] = ACTIONS(4743), + [anon_sym_DOLLARif] = ACTIONS(4743), + [anon_sym_match] = ACTIONS(4743), + [anon_sym_select] = ACTIONS(4743), + [anon_sym_lock] = ACTIONS(4743), + [anon_sym_rlock] = ACTIONS(4743), + [anon_sym_unsafe] = ACTIONS(4743), + [anon_sym_sql] = ACTIONS(4743), + [sym_int_literal] = ACTIONS(4743), + [sym_float_literal] = ACTIONS(4743), + [sym_rune_literal] = ACTIONS(4743), + [anon_sym_SQUOTE] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_c_SQUOTE] = ACTIONS(4743), + [anon_sym_c_DQUOTE] = ACTIONS(4743), + [anon_sym_r_SQUOTE] = ACTIONS(4743), + [anon_sym_r_DQUOTE] = ACTIONS(4743), + [sym_pseudo_compile_time_identifier] = ACTIONS(4743), + [anon_sym_shared] = ACTIONS(4743), + [anon_sym_map_LBRACK] = ACTIONS(4743), + [anon_sym_chan] = ACTIONS(4743), + [anon_sym_thread] = ACTIONS(4743), + [anon_sym_atomic] = ACTIONS(4743), + [anon_sym_assert] = ACTIONS(4743), + [anon_sym_defer] = ACTIONS(4743), + [anon_sym_goto] = ACTIONS(4743), + [anon_sym_break] = ACTIONS(4743), + [anon_sym_continue] = ACTIONS(4743), + [anon_sym_return] = ACTIONS(4743), + [anon_sym_DOLLARfor] = ACTIONS(4743), + [anon_sym_for] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(4743), + [anon_sym_asm] = ACTIONS(4743), + [anon_sym_AT_LBRACK] = ACTIONS(4743), }, [1850] = { [sym_line_comment] = STATE(1850), [sym_block_comment] = STATE(1850), - [ts_builtin_sym_end] = ACTIONS(4731), - [sym_identifier] = ACTIONS(4733), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_CR] = ACTIONS(4733), - [anon_sym_CR_LF] = ACTIONS(4733), + [ts_builtin_sym_end] = ACTIONS(4745), + [sym_identifier] = ACTIONS(4747), + [anon_sym_LF] = ACTIONS(4747), + [anon_sym_CR] = ACTIONS(4747), + [anon_sym_CR_LF] = ACTIONS(4747), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_const] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym___global] = ACTIONS(4733), - [anon_sym_type] = ACTIONS(4733), - [anon_sym_fn] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4733), - [anon_sym_DASH] = ACTIONS(4733), - [anon_sym_STAR] = ACTIONS(4733), - [anon_sym_struct] = ACTIONS(4733), - [anon_sym_union] = ACTIONS(4733), - [anon_sym_pub] = ACTIONS(4733), - [anon_sym_mut] = ACTIONS(4733), - [anon_sym_enum] = ACTIONS(4733), - [anon_sym_interface] = ACTIONS(4733), - [anon_sym_QMARK] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4733), - [anon_sym_go] = ACTIONS(4733), - [anon_sym_spawn] = ACTIONS(4733), - [anon_sym_json_DOTdecode] = ACTIONS(4733), - [anon_sym_LBRACK2] = ACTIONS(4733), - [anon_sym_TILDE] = ACTIONS(4733), - [anon_sym_CARET] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4733), - [anon_sym_LT_DASH] = ACTIONS(4733), - [sym_none] = ACTIONS(4733), - [sym_true] = ACTIONS(4733), - [sym_false] = ACTIONS(4733), - [sym_nil] = ACTIONS(4733), - [anon_sym_if] = ACTIONS(4733), - [anon_sym_DOLLARif] = ACTIONS(4733), - [anon_sym_match] = ACTIONS(4733), - [anon_sym_select] = ACTIONS(4733), - [anon_sym_lock] = ACTIONS(4733), - [anon_sym_rlock] = ACTIONS(4733), - [anon_sym_unsafe] = ACTIONS(4733), - [anon_sym_sql] = ACTIONS(4733), - [sym_int_literal] = ACTIONS(4733), - [sym_float_literal] = ACTIONS(4733), - [sym_rune_literal] = ACTIONS(4733), - [anon_sym_SQUOTE] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_c_SQUOTE] = ACTIONS(4733), - [anon_sym_c_DQUOTE] = ACTIONS(4733), - [anon_sym_r_SQUOTE] = ACTIONS(4733), - [anon_sym_r_DQUOTE] = ACTIONS(4733), - [sym_pseudo_compile_time_identifier] = ACTIONS(4733), - [anon_sym_shared] = ACTIONS(4733), - [anon_sym_map_LBRACK] = ACTIONS(4733), - [anon_sym_chan] = ACTIONS(4733), - [anon_sym_thread] = ACTIONS(4733), - [anon_sym_atomic] = ACTIONS(4733), - [anon_sym_assert] = ACTIONS(4733), - [anon_sym_defer] = ACTIONS(4733), - [anon_sym_goto] = ACTIONS(4733), - [anon_sym_break] = ACTIONS(4733), - [anon_sym_continue] = ACTIONS(4733), - [anon_sym_return] = ACTIONS(4733), - [anon_sym_DOLLARfor] = ACTIONS(4733), - [anon_sym_for] = ACTIONS(4733), - [anon_sym_POUND] = ACTIONS(4733), - [anon_sym_asm] = ACTIONS(4733), - [anon_sym_AT_LBRACK] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_const] = ACTIONS(4747), + [anon_sym_LPAREN] = ACTIONS(4747), + [anon_sym___global] = ACTIONS(4747), + [anon_sym_type] = ACTIONS(4747), + [anon_sym_fn] = ACTIONS(4747), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4747), + [anon_sym_STAR] = ACTIONS(4747), + [anon_sym_struct] = ACTIONS(4747), + [anon_sym_union] = ACTIONS(4747), + [anon_sym_pub] = ACTIONS(4747), + [anon_sym_mut] = ACTIONS(4747), + [anon_sym_enum] = ACTIONS(4747), + [anon_sym_interface] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [anon_sym_BANG] = ACTIONS(4747), + [anon_sym_go] = ACTIONS(4747), + [anon_sym_spawn] = ACTIONS(4747), + [anon_sym_json_DOTdecode] = ACTIONS(4747), + [anon_sym_LBRACK2] = ACTIONS(4747), + [anon_sym_TILDE] = ACTIONS(4747), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_AMP] = ACTIONS(4747), + [anon_sym_LT_DASH] = ACTIONS(4747), + [sym_none] = ACTIONS(4747), + [sym_true] = ACTIONS(4747), + [sym_false] = ACTIONS(4747), + [sym_nil] = ACTIONS(4747), + [anon_sym_if] = ACTIONS(4747), + [anon_sym_DOLLARif] = ACTIONS(4747), + [anon_sym_match] = ACTIONS(4747), + [anon_sym_select] = ACTIONS(4747), + [anon_sym_lock] = ACTIONS(4747), + [anon_sym_rlock] = ACTIONS(4747), + [anon_sym_unsafe] = ACTIONS(4747), + [anon_sym_sql] = ACTIONS(4747), + [sym_int_literal] = ACTIONS(4747), + [sym_float_literal] = ACTIONS(4747), + [sym_rune_literal] = ACTIONS(4747), + [anon_sym_SQUOTE] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_c_SQUOTE] = ACTIONS(4747), + [anon_sym_c_DQUOTE] = ACTIONS(4747), + [anon_sym_r_SQUOTE] = ACTIONS(4747), + [anon_sym_r_DQUOTE] = ACTIONS(4747), + [sym_pseudo_compile_time_identifier] = ACTIONS(4747), + [anon_sym_shared] = ACTIONS(4747), + [anon_sym_map_LBRACK] = ACTIONS(4747), + [anon_sym_chan] = ACTIONS(4747), + [anon_sym_thread] = ACTIONS(4747), + [anon_sym_atomic] = ACTIONS(4747), + [anon_sym_assert] = ACTIONS(4747), + [anon_sym_defer] = ACTIONS(4747), + [anon_sym_goto] = ACTIONS(4747), + [anon_sym_break] = ACTIONS(4747), + [anon_sym_continue] = ACTIONS(4747), + [anon_sym_return] = ACTIONS(4747), + [anon_sym_DOLLARfor] = ACTIONS(4747), + [anon_sym_for] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4747), + [anon_sym_asm] = ACTIONS(4747), + [anon_sym_AT_LBRACK] = ACTIONS(4747), }, [1851] = { [sym_line_comment] = STATE(1851), [sym_block_comment] = STATE(1851), - [ts_builtin_sym_end] = ACTIONS(4735), - [sym_identifier] = ACTIONS(4737), - [anon_sym_LF] = ACTIONS(4737), - [anon_sym_CR] = ACTIONS(4737), - [anon_sym_CR_LF] = ACTIONS(4737), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LF] = ACTIONS(2967), + [anon_sym_CR] = ACTIONS(2967), + [anon_sym_CR_LF] = ACTIONS(2967), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4737), - [anon_sym_LBRACE] = ACTIONS(4737), - [anon_sym_const] = ACTIONS(4737), - [anon_sym_LPAREN] = ACTIONS(4737), - [anon_sym___global] = ACTIONS(4737), - [anon_sym_type] = ACTIONS(4737), - [anon_sym_fn] = ACTIONS(4737), - [anon_sym_PLUS] = ACTIONS(4737), - [anon_sym_DASH] = ACTIONS(4737), - [anon_sym_STAR] = ACTIONS(4737), - [anon_sym_struct] = ACTIONS(4737), - [anon_sym_union] = ACTIONS(4737), - [anon_sym_pub] = ACTIONS(4737), - [anon_sym_mut] = ACTIONS(4737), - [anon_sym_enum] = ACTIONS(4737), - [anon_sym_interface] = ACTIONS(4737), - [anon_sym_QMARK] = ACTIONS(4737), - [anon_sym_BANG] = ACTIONS(4737), - [anon_sym_go] = ACTIONS(4737), - [anon_sym_spawn] = ACTIONS(4737), - [anon_sym_json_DOTdecode] = ACTIONS(4737), - [anon_sym_LBRACK2] = ACTIONS(4737), - [anon_sym_TILDE] = ACTIONS(4737), - [anon_sym_CARET] = ACTIONS(4737), - [anon_sym_AMP] = ACTIONS(4737), - [anon_sym_LT_DASH] = ACTIONS(4737), - [sym_none] = ACTIONS(4737), - [sym_true] = ACTIONS(4737), - [sym_false] = ACTIONS(4737), - [sym_nil] = ACTIONS(4737), - [anon_sym_if] = ACTIONS(4737), - [anon_sym_DOLLARif] = ACTIONS(4737), - [anon_sym_match] = ACTIONS(4737), - [anon_sym_select] = ACTIONS(4737), - [anon_sym_lock] = ACTIONS(4737), - [anon_sym_rlock] = ACTIONS(4737), - [anon_sym_unsafe] = ACTIONS(4737), - [anon_sym_sql] = ACTIONS(4737), - [sym_int_literal] = ACTIONS(4737), - [sym_float_literal] = ACTIONS(4737), - [sym_rune_literal] = ACTIONS(4737), - [anon_sym_SQUOTE] = ACTIONS(4737), - [anon_sym_DQUOTE] = ACTIONS(4737), - [anon_sym_c_SQUOTE] = ACTIONS(4737), - [anon_sym_c_DQUOTE] = ACTIONS(4737), - [anon_sym_r_SQUOTE] = ACTIONS(4737), - [anon_sym_r_DQUOTE] = ACTIONS(4737), - [sym_pseudo_compile_time_identifier] = ACTIONS(4737), - [anon_sym_shared] = ACTIONS(4737), - [anon_sym_map_LBRACK] = ACTIONS(4737), - [anon_sym_chan] = ACTIONS(4737), - [anon_sym_thread] = ACTIONS(4737), - [anon_sym_atomic] = ACTIONS(4737), - [anon_sym_assert] = ACTIONS(4737), - [anon_sym_defer] = ACTIONS(4737), - [anon_sym_goto] = ACTIONS(4737), - [anon_sym_break] = ACTIONS(4737), - [anon_sym_continue] = ACTIONS(4737), - [anon_sym_return] = ACTIONS(4737), - [anon_sym_DOLLARfor] = ACTIONS(4737), - [anon_sym_for] = ACTIONS(4737), - [anon_sym_POUND] = ACTIONS(4737), - [anon_sym_asm] = ACTIONS(4737), - [anon_sym_AT_LBRACK] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym___global] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_mut] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_go] = ACTIONS(2967), + [anon_sym_spawn] = ACTIONS(2967), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_LBRACK2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_nil] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_DOLLARif] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_select] = ACTIONS(2967), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2967), + [anon_sym_shared] = ACTIONS(2967), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2967), + [anon_sym_thread] = ACTIONS(2967), + [anon_sym_atomic] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_defer] = ACTIONS(2967), + [anon_sym_goto] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_DOLLARfor] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_asm] = ACTIONS(2967), + [anon_sym_AT_LBRACK] = ACTIONS(2967), }, [1852] = { [sym_line_comment] = STATE(1852), [sym_block_comment] = STATE(1852), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym___global] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_pub] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym_AT_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [1853] = { [sym_line_comment] = STATE(1853), [sym_block_comment] = STATE(1853), - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_LF] = ACTIONS(3248), - [anon_sym_CR] = ACTIONS(3248), - [anon_sym_CR_LF] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym___global] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_fn] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_union] = ACTIONS(3248), - [anon_sym_pub] = ACTIONS(3248), - [anon_sym_mut] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_go] = ACTIONS(3248), - [anon_sym_spawn] = ACTIONS(3248), - [anon_sym_json_DOTdecode] = ACTIONS(3248), - [anon_sym_LBRACK2] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [anon_sym_LT_DASH] = ACTIONS(3248), - [sym_none] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_nil] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_DOLLARif] = ACTIONS(3248), - [anon_sym_match] = ACTIONS(3248), - [anon_sym_select] = ACTIONS(3248), - [anon_sym_lock] = ACTIONS(3248), - [anon_sym_rlock] = ACTIONS(3248), - [anon_sym_unsafe] = ACTIONS(3248), - [anon_sym_sql] = ACTIONS(3248), - [sym_int_literal] = ACTIONS(3248), - [sym_float_literal] = ACTIONS(3248), - [sym_rune_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_c_SQUOTE] = ACTIONS(3248), - [anon_sym_c_DQUOTE] = ACTIONS(3248), - [anon_sym_r_SQUOTE] = ACTIONS(3248), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3248), - [anon_sym_shared] = ACTIONS(3248), - [anon_sym_map_LBRACK] = ACTIONS(3248), - [anon_sym_chan] = ACTIONS(3248), - [anon_sym_thread] = ACTIONS(3248), - [anon_sym_atomic] = ACTIONS(3248), - [anon_sym_assert] = ACTIONS(3248), - [anon_sym_defer] = ACTIONS(3248), - [anon_sym_goto] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_DOLLARfor] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_asm] = ACTIONS(3248), - [anon_sym_AT_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym___global] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_union] = ACTIONS(3250), + [anon_sym_pub] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + [anon_sym_AT_LBRACK] = ACTIONS(3250), }, [1854] = { [sym_line_comment] = STATE(1854), [sym_block_comment] = STATE(1854), - [ts_builtin_sym_end] = ACTIONS(4739), - [sym_identifier] = ACTIONS(4741), - [anon_sym_LF] = ACTIONS(4741), - [anon_sym_CR] = ACTIONS(4741), - [anon_sym_CR_LF] = ACTIONS(4741), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_const] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym___global] = ACTIONS(4741), - [anon_sym_type] = ACTIONS(4741), - [anon_sym_fn] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_struct] = ACTIONS(4741), - [anon_sym_union] = ACTIONS(4741), - [anon_sym_pub] = ACTIONS(4741), - [anon_sym_mut] = ACTIONS(4741), - [anon_sym_enum] = ACTIONS(4741), - [anon_sym_interface] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_go] = ACTIONS(4741), - [anon_sym_spawn] = ACTIONS(4741), - [anon_sym_json_DOTdecode] = ACTIONS(4741), - [anon_sym_LBRACK2] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_CARET] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4741), - [anon_sym_LT_DASH] = ACTIONS(4741), - [sym_none] = ACTIONS(4741), - [sym_true] = ACTIONS(4741), - [sym_false] = ACTIONS(4741), - [sym_nil] = ACTIONS(4741), - [anon_sym_if] = ACTIONS(4741), - [anon_sym_DOLLARif] = ACTIONS(4741), - [anon_sym_match] = ACTIONS(4741), - [anon_sym_select] = ACTIONS(4741), - [anon_sym_lock] = ACTIONS(4741), - [anon_sym_rlock] = ACTIONS(4741), - [anon_sym_unsafe] = ACTIONS(4741), - [anon_sym_sql] = ACTIONS(4741), - [sym_int_literal] = ACTIONS(4741), - [sym_float_literal] = ACTIONS(4741), - [sym_rune_literal] = ACTIONS(4741), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_c_SQUOTE] = ACTIONS(4741), - [anon_sym_c_DQUOTE] = ACTIONS(4741), - [anon_sym_r_SQUOTE] = ACTIONS(4741), - [anon_sym_r_DQUOTE] = ACTIONS(4741), - [sym_pseudo_compile_time_identifier] = ACTIONS(4741), - [anon_sym_shared] = ACTIONS(4741), - [anon_sym_map_LBRACK] = ACTIONS(4741), - [anon_sym_chan] = ACTIONS(4741), - [anon_sym_thread] = ACTIONS(4741), - [anon_sym_atomic] = ACTIONS(4741), - [anon_sym_assert] = ACTIONS(4741), - [anon_sym_defer] = ACTIONS(4741), - [anon_sym_goto] = ACTIONS(4741), - [anon_sym_break] = ACTIONS(4741), - [anon_sym_continue] = ACTIONS(4741), - [anon_sym_return] = ACTIONS(4741), - [anon_sym_DOLLARfor] = ACTIONS(4741), - [anon_sym_for] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_asm] = ACTIONS(4741), - [anon_sym_AT_LBRACK] = ACTIONS(4741), + [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), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_c_SQUOTE] = ACTIONS(4391), + [anon_sym_c_DQUOTE] = ACTIONS(4391), + [anon_sym_r_SQUOTE] = ACTIONS(4391), + [anon_sym_r_DQUOTE] = 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), }, [1855] = { [sym_line_comment] = STATE(1855), [sym_block_comment] = STATE(1855), - [ts_builtin_sym_end] = ACTIONS(4743), - [sym_identifier] = ACTIONS(4745), - [anon_sym_LF] = ACTIONS(4745), - [anon_sym_CR] = ACTIONS(4745), - [anon_sym_CR_LF] = ACTIONS(4745), + [ts_builtin_sym_end] = ACTIONS(4749), + [sym_identifier] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_CR] = ACTIONS(4751), + [anon_sym_CR_LF] = ACTIONS(4751), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4745), - [anon_sym_LBRACE] = ACTIONS(4745), - [anon_sym_const] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym___global] = ACTIONS(4745), - [anon_sym_type] = ACTIONS(4745), - [anon_sym_fn] = ACTIONS(4745), - [anon_sym_PLUS] = ACTIONS(4745), - [anon_sym_DASH] = ACTIONS(4745), - [anon_sym_STAR] = ACTIONS(4745), - [anon_sym_struct] = ACTIONS(4745), - [anon_sym_union] = ACTIONS(4745), - [anon_sym_pub] = ACTIONS(4745), - [anon_sym_mut] = ACTIONS(4745), - [anon_sym_enum] = ACTIONS(4745), - [anon_sym_interface] = ACTIONS(4745), - [anon_sym_QMARK] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4745), - [anon_sym_go] = ACTIONS(4745), - [anon_sym_spawn] = ACTIONS(4745), - [anon_sym_json_DOTdecode] = ACTIONS(4745), - [anon_sym_LBRACK2] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4745), - [anon_sym_CARET] = ACTIONS(4745), - [anon_sym_AMP] = ACTIONS(4745), - [anon_sym_LT_DASH] = ACTIONS(4745), - [sym_none] = ACTIONS(4745), - [sym_true] = ACTIONS(4745), - [sym_false] = ACTIONS(4745), - [sym_nil] = ACTIONS(4745), - [anon_sym_if] = ACTIONS(4745), - [anon_sym_DOLLARif] = ACTIONS(4745), - [anon_sym_match] = ACTIONS(4745), - [anon_sym_select] = ACTIONS(4745), - [anon_sym_lock] = ACTIONS(4745), - [anon_sym_rlock] = ACTIONS(4745), - [anon_sym_unsafe] = ACTIONS(4745), - [anon_sym_sql] = ACTIONS(4745), - [sym_int_literal] = ACTIONS(4745), - [sym_float_literal] = ACTIONS(4745), - [sym_rune_literal] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(4745), - [anon_sym_c_SQUOTE] = ACTIONS(4745), - [anon_sym_c_DQUOTE] = ACTIONS(4745), - [anon_sym_r_SQUOTE] = ACTIONS(4745), - [anon_sym_r_DQUOTE] = ACTIONS(4745), - [sym_pseudo_compile_time_identifier] = ACTIONS(4745), - [anon_sym_shared] = ACTIONS(4745), - [anon_sym_map_LBRACK] = ACTIONS(4745), - [anon_sym_chan] = ACTIONS(4745), - [anon_sym_thread] = ACTIONS(4745), - [anon_sym_atomic] = ACTIONS(4745), - [anon_sym_assert] = ACTIONS(4745), - [anon_sym_defer] = ACTIONS(4745), - [anon_sym_goto] = ACTIONS(4745), - [anon_sym_break] = ACTIONS(4745), - [anon_sym_continue] = ACTIONS(4745), - [anon_sym_return] = ACTIONS(4745), - [anon_sym_DOLLARfor] = ACTIONS(4745), - [anon_sym_for] = ACTIONS(4745), - [anon_sym_POUND] = ACTIONS(4745), - [anon_sym_asm] = ACTIONS(4745), - [anon_sym_AT_LBRACK] = ACTIONS(4745), + [anon_sym_DOT] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_const] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym___global] = ACTIONS(4751), + [anon_sym_type] = ACTIONS(4751), + [anon_sym_fn] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_struct] = ACTIONS(4751), + [anon_sym_union] = ACTIONS(4751), + [anon_sym_pub] = ACTIONS(4751), + [anon_sym_mut] = ACTIONS(4751), + [anon_sym_enum] = ACTIONS(4751), + [anon_sym_interface] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [anon_sym_BANG] = ACTIONS(4751), + [anon_sym_go] = ACTIONS(4751), + [anon_sym_spawn] = ACTIONS(4751), + [anon_sym_json_DOTdecode] = ACTIONS(4751), + [anon_sym_LBRACK2] = ACTIONS(4751), + [anon_sym_TILDE] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), + [anon_sym_LT_DASH] = ACTIONS(4751), + [sym_none] = ACTIONS(4751), + [sym_true] = ACTIONS(4751), + [sym_false] = ACTIONS(4751), + [sym_nil] = ACTIONS(4751), + [anon_sym_if] = ACTIONS(4751), + [anon_sym_DOLLARif] = ACTIONS(4751), + [anon_sym_match] = ACTIONS(4751), + [anon_sym_select] = ACTIONS(4751), + [anon_sym_lock] = ACTIONS(4751), + [anon_sym_rlock] = ACTIONS(4751), + [anon_sym_unsafe] = ACTIONS(4751), + [anon_sym_sql] = ACTIONS(4751), + [sym_int_literal] = ACTIONS(4751), + [sym_float_literal] = ACTIONS(4751), + [sym_rune_literal] = ACTIONS(4751), + [anon_sym_SQUOTE] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_c_SQUOTE] = ACTIONS(4751), + [anon_sym_c_DQUOTE] = ACTIONS(4751), + [anon_sym_r_SQUOTE] = ACTIONS(4751), + [anon_sym_r_DQUOTE] = ACTIONS(4751), + [sym_pseudo_compile_time_identifier] = ACTIONS(4751), + [anon_sym_shared] = ACTIONS(4751), + [anon_sym_map_LBRACK] = ACTIONS(4751), + [anon_sym_chan] = ACTIONS(4751), + [anon_sym_thread] = ACTIONS(4751), + [anon_sym_atomic] = ACTIONS(4751), + [anon_sym_assert] = ACTIONS(4751), + [anon_sym_defer] = ACTIONS(4751), + [anon_sym_goto] = ACTIONS(4751), + [anon_sym_break] = ACTIONS(4751), + [anon_sym_continue] = ACTIONS(4751), + [anon_sym_return] = ACTIONS(4751), + [anon_sym_DOLLARfor] = ACTIONS(4751), + [anon_sym_for] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4751), + [anon_sym_asm] = ACTIONS(4751), + [anon_sym_AT_LBRACK] = ACTIONS(4751), }, [1856] = { [sym_line_comment] = STATE(1856), [sym_block_comment] = STATE(1856), - [ts_builtin_sym_end] = ACTIONS(4747), - [sym_identifier] = ACTIONS(4749), - [anon_sym_LF] = ACTIONS(4749), - [anon_sym_CR] = ACTIONS(4749), - [anon_sym_CR_LF] = ACTIONS(4749), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_const] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym___global] = ACTIONS(4749), - [anon_sym_type] = ACTIONS(4749), - [anon_sym_fn] = ACTIONS(4749), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_struct] = ACTIONS(4749), - [anon_sym_union] = ACTIONS(4749), - [anon_sym_pub] = ACTIONS(4749), - [anon_sym_mut] = ACTIONS(4749), - [anon_sym_enum] = ACTIONS(4749), - [anon_sym_interface] = ACTIONS(4749), - [anon_sym_QMARK] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_go] = ACTIONS(4749), - [anon_sym_spawn] = ACTIONS(4749), - [anon_sym_json_DOTdecode] = ACTIONS(4749), - [anon_sym_LBRACK2] = ACTIONS(4749), - [anon_sym_TILDE] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_LT_DASH] = ACTIONS(4749), - [sym_none] = ACTIONS(4749), - [sym_true] = ACTIONS(4749), - [sym_false] = ACTIONS(4749), - [sym_nil] = ACTIONS(4749), - [anon_sym_if] = ACTIONS(4749), - [anon_sym_DOLLARif] = ACTIONS(4749), - [anon_sym_match] = ACTIONS(4749), - [anon_sym_select] = ACTIONS(4749), - [anon_sym_lock] = ACTIONS(4749), - [anon_sym_rlock] = ACTIONS(4749), - [anon_sym_unsafe] = ACTIONS(4749), - [anon_sym_sql] = ACTIONS(4749), - [sym_int_literal] = ACTIONS(4749), - [sym_float_literal] = ACTIONS(4749), - [sym_rune_literal] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DQUOTE] = ACTIONS(4749), - [anon_sym_c_SQUOTE] = ACTIONS(4749), - [anon_sym_c_DQUOTE] = ACTIONS(4749), - [anon_sym_r_SQUOTE] = ACTIONS(4749), - [anon_sym_r_DQUOTE] = ACTIONS(4749), - [sym_pseudo_compile_time_identifier] = ACTIONS(4749), - [anon_sym_shared] = ACTIONS(4749), - [anon_sym_map_LBRACK] = ACTIONS(4749), - [anon_sym_chan] = ACTIONS(4749), - [anon_sym_thread] = ACTIONS(4749), - [anon_sym_atomic] = ACTIONS(4749), - [anon_sym_assert] = ACTIONS(4749), - [anon_sym_defer] = ACTIONS(4749), - [anon_sym_goto] = ACTIONS(4749), - [anon_sym_break] = ACTIONS(4749), - [anon_sym_continue] = ACTIONS(4749), - [anon_sym_return] = ACTIONS(4749), - [anon_sym_DOLLARfor] = ACTIONS(4749), - [anon_sym_for] = ACTIONS(4749), - [anon_sym_POUND] = ACTIONS(4749), - [anon_sym_asm] = ACTIONS(4749), - [anon_sym_AT_LBRACK] = ACTIONS(4749), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), }, [1857] = { [sym_line_comment] = STATE(1857), [sym_block_comment] = STATE(1857), - [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(4753), + [sym_identifier] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_CR] = ACTIONS(4755), + [anon_sym_CR_LF] = ACTIONS(4755), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4415), - [anon_sym_DQUOTE] = ACTIONS(4415), - [anon_sym_c_SQUOTE] = ACTIONS(4415), - [anon_sym_c_DQUOTE] = ACTIONS(4415), - [anon_sym_r_SQUOTE] = ACTIONS(4415), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_const] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4755), + [anon_sym___global] = ACTIONS(4755), + [anon_sym_type] = ACTIONS(4755), + [anon_sym_fn] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4755), + [anon_sym_struct] = ACTIONS(4755), + [anon_sym_union] = ACTIONS(4755), + [anon_sym_pub] = ACTIONS(4755), + [anon_sym_mut] = ACTIONS(4755), + [anon_sym_enum] = ACTIONS(4755), + [anon_sym_interface] = ACTIONS(4755), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_go] = ACTIONS(4755), + [anon_sym_spawn] = ACTIONS(4755), + [anon_sym_json_DOTdecode] = ACTIONS(4755), + [anon_sym_LBRACK2] = ACTIONS(4755), + [anon_sym_TILDE] = ACTIONS(4755), + [anon_sym_CARET] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_DASH] = ACTIONS(4755), + [sym_none] = ACTIONS(4755), + [sym_true] = ACTIONS(4755), + [sym_false] = ACTIONS(4755), + [sym_nil] = ACTIONS(4755), + [anon_sym_if] = ACTIONS(4755), + [anon_sym_DOLLARif] = ACTIONS(4755), + [anon_sym_match] = ACTIONS(4755), + [anon_sym_select] = ACTIONS(4755), + [anon_sym_lock] = ACTIONS(4755), + [anon_sym_rlock] = ACTIONS(4755), + [anon_sym_unsafe] = ACTIONS(4755), + [anon_sym_sql] = ACTIONS(4755), + [sym_int_literal] = ACTIONS(4755), + [sym_float_literal] = ACTIONS(4755), + [sym_rune_literal] = ACTIONS(4755), + [anon_sym_SQUOTE] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_c_SQUOTE] = ACTIONS(4755), + [anon_sym_c_DQUOTE] = ACTIONS(4755), + [anon_sym_r_SQUOTE] = ACTIONS(4755), + [anon_sym_r_DQUOTE] = ACTIONS(4755), + [sym_pseudo_compile_time_identifier] = ACTIONS(4755), + [anon_sym_shared] = ACTIONS(4755), + [anon_sym_map_LBRACK] = ACTIONS(4755), + [anon_sym_chan] = ACTIONS(4755), + [anon_sym_thread] = ACTIONS(4755), + [anon_sym_atomic] = ACTIONS(4755), + [anon_sym_assert] = ACTIONS(4755), + [anon_sym_defer] = ACTIONS(4755), + [anon_sym_goto] = ACTIONS(4755), + [anon_sym_break] = ACTIONS(4755), + [anon_sym_continue] = ACTIONS(4755), + [anon_sym_return] = ACTIONS(4755), + [anon_sym_DOLLARfor] = ACTIONS(4755), + [anon_sym_for] = ACTIONS(4755), + [anon_sym_POUND] = ACTIONS(4755), + [anon_sym_asm] = ACTIONS(4755), + [anon_sym_AT_LBRACK] = ACTIONS(4755), }, [1858] = { [sym_line_comment] = STATE(1858), [sym_block_comment] = STATE(1858), - [ts_builtin_sym_end] = ACTIONS(4751), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LF] = ACTIONS(4753), - [anon_sym_CR] = ACTIONS(4753), - [anon_sym_CR_LF] = ACTIONS(4753), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3300), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_CR] = ACTIONS(3300), + [anon_sym_CR_LF] = ACTIONS(3300), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_const] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym___global] = ACTIONS(4753), - [anon_sym_type] = ACTIONS(4753), - [anon_sym_fn] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_struct] = ACTIONS(4753), - [anon_sym_union] = ACTIONS(4753), - [anon_sym_pub] = ACTIONS(4753), - [anon_sym_mut] = ACTIONS(4753), - [anon_sym_enum] = ACTIONS(4753), - [anon_sym_interface] = ACTIONS(4753), - [anon_sym_QMARK] = ACTIONS(4753), - [anon_sym_BANG] = ACTIONS(4753), - [anon_sym_go] = ACTIONS(4753), - [anon_sym_spawn] = ACTIONS(4753), - [anon_sym_json_DOTdecode] = ACTIONS(4753), - [anon_sym_LBRACK2] = ACTIONS(4753), - [anon_sym_TILDE] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_AMP] = ACTIONS(4753), - [anon_sym_LT_DASH] = ACTIONS(4753), - [sym_none] = ACTIONS(4753), - [sym_true] = ACTIONS(4753), - [sym_false] = ACTIONS(4753), - [sym_nil] = ACTIONS(4753), - [anon_sym_if] = ACTIONS(4753), - [anon_sym_DOLLARif] = ACTIONS(4753), - [anon_sym_match] = ACTIONS(4753), - [anon_sym_select] = ACTIONS(4753), - [anon_sym_lock] = ACTIONS(4753), - [anon_sym_rlock] = ACTIONS(4753), - [anon_sym_unsafe] = ACTIONS(4753), - [anon_sym_sql] = ACTIONS(4753), - [sym_int_literal] = ACTIONS(4753), - [sym_float_literal] = ACTIONS(4753), - [sym_rune_literal] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4753), - [anon_sym_DQUOTE] = ACTIONS(4753), - [anon_sym_c_SQUOTE] = ACTIONS(4753), - [anon_sym_c_DQUOTE] = ACTIONS(4753), - [anon_sym_r_SQUOTE] = ACTIONS(4753), - [anon_sym_r_DQUOTE] = ACTIONS(4753), - [sym_pseudo_compile_time_identifier] = ACTIONS(4753), - [anon_sym_shared] = ACTIONS(4753), - [anon_sym_map_LBRACK] = ACTIONS(4753), - [anon_sym_chan] = ACTIONS(4753), - [anon_sym_thread] = ACTIONS(4753), - [anon_sym_atomic] = ACTIONS(4753), - [anon_sym_assert] = ACTIONS(4753), - [anon_sym_defer] = ACTIONS(4753), - [anon_sym_goto] = ACTIONS(4753), - [anon_sym_break] = ACTIONS(4753), - [anon_sym_continue] = ACTIONS(4753), - [anon_sym_return] = ACTIONS(4753), - [anon_sym_DOLLARfor] = ACTIONS(4753), - [anon_sym_for] = ACTIONS(4753), - [anon_sym_POUND] = ACTIONS(4753), - [anon_sym_asm] = ACTIONS(4753), - [anon_sym_AT_LBRACK] = ACTIONS(4753), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym___global] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_pub] = ACTIONS(3300), + [anon_sym_mut] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_go] = ACTIONS(3300), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [sym_none] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_nil] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_DOLLARif] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_select] = ACTIONS(3300), + [anon_sym_lock] = ACTIONS(3300), + [anon_sym_rlock] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_sql] = ACTIONS(3300), + [sym_int_literal] = ACTIONS(3300), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_c_SQUOTE] = ACTIONS(3300), + [anon_sym_c_DQUOTE] = ACTIONS(3300), + [anon_sym_r_SQUOTE] = ACTIONS(3300), + [anon_sym_r_DQUOTE] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3300), + [anon_sym_shared] = ACTIONS(3300), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3300), + [anon_sym_thread] = ACTIONS(3300), + [anon_sym_atomic] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_defer] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_DOLLARfor] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym_AT_LBRACK] = ACTIONS(3300), }, [1859] = { [sym_line_comment] = STATE(1859), [sym_block_comment] = STATE(1859), - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LF] = ACTIONS(3258), - [anon_sym_CR] = ACTIONS(3258), - [anon_sym_CR_LF] = ACTIONS(3258), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym___global] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_fn] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3258), - [anon_sym_struct] = ACTIONS(3258), - [anon_sym_union] = ACTIONS(3258), - [anon_sym_pub] = ACTIONS(3258), - [anon_sym_mut] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_QMARK] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_go] = ACTIONS(3258), - [anon_sym_spawn] = ACTIONS(3258), - [anon_sym_json_DOTdecode] = ACTIONS(3258), - [anon_sym_LBRACK2] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_LT_DASH] = ACTIONS(3258), - [sym_none] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_nil] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_DOLLARif] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3258), - [anon_sym_select] = ACTIONS(3258), - [anon_sym_lock] = ACTIONS(3258), - [anon_sym_rlock] = ACTIONS(3258), - [anon_sym_unsafe] = ACTIONS(3258), - [anon_sym_sql] = ACTIONS(3258), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(3258), - [sym_rune_literal] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_c_SQUOTE] = ACTIONS(3258), - [anon_sym_c_DQUOTE] = ACTIONS(3258), - [anon_sym_r_SQUOTE] = ACTIONS(3258), - [anon_sym_r_DQUOTE] = ACTIONS(3258), - [sym_pseudo_compile_time_identifier] = ACTIONS(3258), - [anon_sym_shared] = ACTIONS(3258), - [anon_sym_map_LBRACK] = ACTIONS(3258), - [anon_sym_chan] = ACTIONS(3258), - [anon_sym_thread] = ACTIONS(3258), - [anon_sym_atomic] = ACTIONS(3258), - [anon_sym_assert] = ACTIONS(3258), - [anon_sym_defer] = ACTIONS(3258), - [anon_sym_goto] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_DOLLARfor] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3258), - [anon_sym_asm] = ACTIONS(3258), - [anon_sym_AT_LBRACK] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_c_SQUOTE] = ACTIONS(3318), + [anon_sym_c_DQUOTE] = ACTIONS(3318), + [anon_sym_r_SQUOTE] = ACTIONS(3318), + [anon_sym_r_DQUOTE] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), }, [1860] = { [sym_line_comment] = STATE(1860), [sym_block_comment] = STATE(1860), - [ts_builtin_sym_end] = ACTIONS(4755), - [sym_identifier] = ACTIONS(4757), - [anon_sym_LF] = ACTIONS(4757), - [anon_sym_CR] = ACTIONS(4757), - [anon_sym_CR_LF] = ACTIONS(4757), + [ts_builtin_sym_end] = ACTIONS(4757), + [sym_identifier] = ACTIONS(4759), + [anon_sym_LF] = ACTIONS(4759), + [anon_sym_CR] = ACTIONS(4759), + [anon_sym_CR_LF] = ACTIONS(4759), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4757), - [anon_sym_LBRACE] = ACTIONS(4757), - [anon_sym_const] = ACTIONS(4757), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym___global] = ACTIONS(4757), - [anon_sym_type] = ACTIONS(4757), - [anon_sym_fn] = ACTIONS(4757), - [anon_sym_PLUS] = ACTIONS(4757), - [anon_sym_DASH] = ACTIONS(4757), - [anon_sym_STAR] = ACTIONS(4757), - [anon_sym_struct] = ACTIONS(4757), - [anon_sym_union] = ACTIONS(4757), - [anon_sym_pub] = ACTIONS(4757), - [anon_sym_mut] = ACTIONS(4757), - [anon_sym_enum] = ACTIONS(4757), - [anon_sym_interface] = ACTIONS(4757), - [anon_sym_QMARK] = ACTIONS(4757), - [anon_sym_BANG] = ACTIONS(4757), - [anon_sym_go] = ACTIONS(4757), - [anon_sym_spawn] = ACTIONS(4757), - [anon_sym_json_DOTdecode] = ACTIONS(4757), - [anon_sym_LBRACK2] = ACTIONS(4757), - [anon_sym_TILDE] = ACTIONS(4757), - [anon_sym_CARET] = ACTIONS(4757), - [anon_sym_AMP] = ACTIONS(4757), - [anon_sym_LT_DASH] = ACTIONS(4757), - [sym_none] = ACTIONS(4757), - [sym_true] = ACTIONS(4757), - [sym_false] = ACTIONS(4757), - [sym_nil] = ACTIONS(4757), - [anon_sym_if] = ACTIONS(4757), - [anon_sym_DOLLARif] = ACTIONS(4757), - [anon_sym_match] = ACTIONS(4757), - [anon_sym_select] = ACTIONS(4757), - [anon_sym_lock] = ACTIONS(4757), - [anon_sym_rlock] = ACTIONS(4757), - [anon_sym_unsafe] = ACTIONS(4757), - [anon_sym_sql] = ACTIONS(4757), - [sym_int_literal] = ACTIONS(4757), - [sym_float_literal] = ACTIONS(4757), - [sym_rune_literal] = ACTIONS(4757), - [anon_sym_SQUOTE] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(4757), - [anon_sym_c_SQUOTE] = ACTIONS(4757), - [anon_sym_c_DQUOTE] = ACTIONS(4757), - [anon_sym_r_SQUOTE] = ACTIONS(4757), - [anon_sym_r_DQUOTE] = ACTIONS(4757), - [sym_pseudo_compile_time_identifier] = ACTIONS(4757), - [anon_sym_shared] = ACTIONS(4757), - [anon_sym_map_LBRACK] = ACTIONS(4757), - [anon_sym_chan] = ACTIONS(4757), - [anon_sym_thread] = ACTIONS(4757), - [anon_sym_atomic] = ACTIONS(4757), - [anon_sym_assert] = ACTIONS(4757), - [anon_sym_defer] = ACTIONS(4757), - [anon_sym_goto] = ACTIONS(4757), - [anon_sym_break] = ACTIONS(4757), - [anon_sym_continue] = ACTIONS(4757), - [anon_sym_return] = ACTIONS(4757), - [anon_sym_DOLLARfor] = ACTIONS(4757), - [anon_sym_for] = ACTIONS(4757), - [anon_sym_POUND] = ACTIONS(4757), - [anon_sym_asm] = ACTIONS(4757), - [anon_sym_AT_LBRACK] = ACTIONS(4757), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_const] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym___global] = ACTIONS(4759), + [anon_sym_type] = ACTIONS(4759), + [anon_sym_fn] = ACTIONS(4759), + [anon_sym_PLUS] = ACTIONS(4759), + [anon_sym_DASH] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4759), + [anon_sym_struct] = ACTIONS(4759), + [anon_sym_union] = ACTIONS(4759), + [anon_sym_pub] = ACTIONS(4759), + [anon_sym_mut] = ACTIONS(4759), + [anon_sym_enum] = ACTIONS(4759), + [anon_sym_interface] = ACTIONS(4759), + [anon_sym_QMARK] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4759), + [anon_sym_go] = ACTIONS(4759), + [anon_sym_spawn] = ACTIONS(4759), + [anon_sym_json_DOTdecode] = ACTIONS(4759), + [anon_sym_LBRACK2] = ACTIONS(4759), + [anon_sym_TILDE] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4759), + [anon_sym_LT_DASH] = ACTIONS(4759), + [sym_none] = ACTIONS(4759), + [sym_true] = ACTIONS(4759), + [sym_false] = ACTIONS(4759), + [sym_nil] = ACTIONS(4759), + [anon_sym_if] = ACTIONS(4759), + [anon_sym_DOLLARif] = ACTIONS(4759), + [anon_sym_match] = ACTIONS(4759), + [anon_sym_select] = ACTIONS(4759), + [anon_sym_lock] = ACTIONS(4759), + [anon_sym_rlock] = ACTIONS(4759), + [anon_sym_unsafe] = ACTIONS(4759), + [anon_sym_sql] = ACTIONS(4759), + [sym_int_literal] = ACTIONS(4759), + [sym_float_literal] = ACTIONS(4759), + [sym_rune_literal] = ACTIONS(4759), + [anon_sym_SQUOTE] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_c_SQUOTE] = ACTIONS(4759), + [anon_sym_c_DQUOTE] = ACTIONS(4759), + [anon_sym_r_SQUOTE] = ACTIONS(4759), + [anon_sym_r_DQUOTE] = ACTIONS(4759), + [sym_pseudo_compile_time_identifier] = ACTIONS(4759), + [anon_sym_shared] = ACTIONS(4759), + [anon_sym_map_LBRACK] = ACTIONS(4759), + [anon_sym_chan] = ACTIONS(4759), + [anon_sym_thread] = ACTIONS(4759), + [anon_sym_atomic] = ACTIONS(4759), + [anon_sym_assert] = ACTIONS(4759), + [anon_sym_defer] = ACTIONS(4759), + [anon_sym_goto] = ACTIONS(4759), + [anon_sym_break] = ACTIONS(4759), + [anon_sym_continue] = ACTIONS(4759), + [anon_sym_return] = ACTIONS(4759), + [anon_sym_DOLLARfor] = ACTIONS(4759), + [anon_sym_for] = ACTIONS(4759), + [anon_sym_POUND] = ACTIONS(4759), + [anon_sym_asm] = ACTIONS(4759), + [anon_sym_AT_LBRACK] = ACTIONS(4759), }, [1861] = { [sym_line_comment] = STATE(1861), [sym_block_comment] = STATE(1861), - [ts_builtin_sym_end] = ACTIONS(4759), - [sym_identifier] = ACTIONS(4761), - [anon_sym_LF] = ACTIONS(4761), - [anon_sym_CR] = ACTIONS(4761), - [anon_sym_CR_LF] = ACTIONS(4761), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4761), - [anon_sym_LBRACE] = ACTIONS(4761), - [anon_sym_const] = ACTIONS(4761), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym___global] = ACTIONS(4761), - [anon_sym_type] = ACTIONS(4761), - [anon_sym_fn] = ACTIONS(4761), - [anon_sym_PLUS] = ACTIONS(4761), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_STAR] = ACTIONS(4761), - [anon_sym_struct] = ACTIONS(4761), - [anon_sym_union] = ACTIONS(4761), - [anon_sym_pub] = ACTIONS(4761), - [anon_sym_mut] = ACTIONS(4761), - [anon_sym_enum] = ACTIONS(4761), - [anon_sym_interface] = ACTIONS(4761), - [anon_sym_QMARK] = ACTIONS(4761), - [anon_sym_BANG] = ACTIONS(4761), - [anon_sym_go] = ACTIONS(4761), - [anon_sym_spawn] = ACTIONS(4761), - [anon_sym_json_DOTdecode] = ACTIONS(4761), - [anon_sym_LBRACK2] = ACTIONS(4761), - [anon_sym_TILDE] = ACTIONS(4761), - [anon_sym_CARET] = ACTIONS(4761), - [anon_sym_AMP] = ACTIONS(4761), - [anon_sym_LT_DASH] = ACTIONS(4761), - [sym_none] = ACTIONS(4761), - [sym_true] = ACTIONS(4761), - [sym_false] = ACTIONS(4761), - [sym_nil] = ACTIONS(4761), - [anon_sym_if] = ACTIONS(4761), - [anon_sym_DOLLARif] = ACTIONS(4761), - [anon_sym_match] = ACTIONS(4761), - [anon_sym_select] = ACTIONS(4761), - [anon_sym_lock] = ACTIONS(4761), - [anon_sym_rlock] = ACTIONS(4761), - [anon_sym_unsafe] = ACTIONS(4761), - [anon_sym_sql] = ACTIONS(4761), - [sym_int_literal] = ACTIONS(4761), - [sym_float_literal] = ACTIONS(4761), - [sym_rune_literal] = ACTIONS(4761), - [anon_sym_SQUOTE] = ACTIONS(4761), - [anon_sym_DQUOTE] = ACTIONS(4761), - [anon_sym_c_SQUOTE] = ACTIONS(4761), - [anon_sym_c_DQUOTE] = ACTIONS(4761), - [anon_sym_r_SQUOTE] = ACTIONS(4761), - [anon_sym_r_DQUOTE] = ACTIONS(4761), - [sym_pseudo_compile_time_identifier] = ACTIONS(4761), - [anon_sym_shared] = ACTIONS(4761), - [anon_sym_map_LBRACK] = ACTIONS(4761), - [anon_sym_chan] = ACTIONS(4761), - [anon_sym_thread] = ACTIONS(4761), - [anon_sym_atomic] = ACTIONS(4761), - [anon_sym_assert] = ACTIONS(4761), - [anon_sym_defer] = ACTIONS(4761), - [anon_sym_goto] = ACTIONS(4761), - [anon_sym_break] = ACTIONS(4761), - [anon_sym_continue] = ACTIONS(4761), - [anon_sym_return] = ACTIONS(4761), - [anon_sym_DOLLARfor] = ACTIONS(4761), - [anon_sym_for] = ACTIONS(4761), - [anon_sym_POUND] = ACTIONS(4761), - [anon_sym_asm] = ACTIONS(4761), - [anon_sym_AT_LBRACK] = ACTIONS(4761), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_c_SQUOTE] = ACTIONS(3350), + [anon_sym_c_DQUOTE] = ACTIONS(3350), + [anon_sym_r_SQUOTE] = ACTIONS(3350), + [anon_sym_r_DQUOTE] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), }, [1862] = { [sym_line_comment] = STATE(1862), [sym_block_comment] = STATE(1862), - [ts_builtin_sym_end] = ACTIONS(4763), - [sym_identifier] = ACTIONS(4765), - [anon_sym_LF] = ACTIONS(4765), - [anon_sym_CR] = ACTIONS(4765), - [anon_sym_CR_LF] = ACTIONS(4765), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_LBRACE] = ACTIONS(4765), - [anon_sym_const] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4765), - [anon_sym___global] = ACTIONS(4765), - [anon_sym_type] = ACTIONS(4765), - [anon_sym_fn] = ACTIONS(4765), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_struct] = ACTIONS(4765), - [anon_sym_union] = ACTIONS(4765), - [anon_sym_pub] = ACTIONS(4765), - [anon_sym_mut] = ACTIONS(4765), - [anon_sym_enum] = ACTIONS(4765), - [anon_sym_interface] = ACTIONS(4765), - [anon_sym_QMARK] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_go] = ACTIONS(4765), - [anon_sym_spawn] = ACTIONS(4765), - [anon_sym_json_DOTdecode] = ACTIONS(4765), - [anon_sym_LBRACK2] = ACTIONS(4765), - [anon_sym_TILDE] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym_AMP] = ACTIONS(4765), - [anon_sym_LT_DASH] = ACTIONS(4765), - [sym_none] = ACTIONS(4765), - [sym_true] = ACTIONS(4765), - [sym_false] = ACTIONS(4765), - [sym_nil] = ACTIONS(4765), - [anon_sym_if] = ACTIONS(4765), - [anon_sym_DOLLARif] = ACTIONS(4765), - [anon_sym_match] = ACTIONS(4765), - [anon_sym_select] = ACTIONS(4765), - [anon_sym_lock] = ACTIONS(4765), - [anon_sym_rlock] = ACTIONS(4765), - [anon_sym_unsafe] = ACTIONS(4765), - [anon_sym_sql] = ACTIONS(4765), - [sym_int_literal] = ACTIONS(4765), - [sym_float_literal] = ACTIONS(4765), - [sym_rune_literal] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DQUOTE] = ACTIONS(4765), - [anon_sym_c_SQUOTE] = ACTIONS(4765), - [anon_sym_c_DQUOTE] = ACTIONS(4765), - [anon_sym_r_SQUOTE] = ACTIONS(4765), - [anon_sym_r_DQUOTE] = ACTIONS(4765), - [sym_pseudo_compile_time_identifier] = ACTIONS(4765), - [anon_sym_shared] = ACTIONS(4765), - [anon_sym_map_LBRACK] = ACTIONS(4765), - [anon_sym_chan] = ACTIONS(4765), - [anon_sym_thread] = ACTIONS(4765), - [anon_sym_atomic] = ACTIONS(4765), - [anon_sym_assert] = ACTIONS(4765), - [anon_sym_defer] = ACTIONS(4765), - [anon_sym_goto] = ACTIONS(4765), - [anon_sym_break] = ACTIONS(4765), - [anon_sym_continue] = ACTIONS(4765), - [anon_sym_return] = ACTIONS(4765), - [anon_sym_DOLLARfor] = ACTIONS(4765), - [anon_sym_for] = ACTIONS(4765), - [anon_sym_POUND] = ACTIONS(4765), - [anon_sym_asm] = ACTIONS(4765), - [anon_sym_AT_LBRACK] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym___global] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_pub] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [anon_sym_c_SQUOTE] = ACTIONS(3270), + [anon_sym_c_DQUOTE] = ACTIONS(3270), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym_AT_LBRACK] = ACTIONS(3270), }, [1863] = { [sym_line_comment] = STATE(1863), [sym_block_comment] = STATE(1863), - [ts_builtin_sym_end] = ACTIONS(4767), - [sym_identifier] = ACTIONS(4769), - [anon_sym_LF] = ACTIONS(4769), - [anon_sym_CR] = ACTIONS(4769), - [anon_sym_CR_LF] = ACTIONS(4769), + [ts_builtin_sym_end] = ACTIONS(4761), + [sym_identifier] = ACTIONS(4763), + [anon_sym_LF] = ACTIONS(4763), + [anon_sym_CR] = ACTIONS(4763), + [anon_sym_CR_LF] = ACTIONS(4763), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4769), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_const] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym___global] = ACTIONS(4769), - [anon_sym_type] = ACTIONS(4769), - [anon_sym_fn] = ACTIONS(4769), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_struct] = ACTIONS(4769), - [anon_sym_union] = ACTIONS(4769), - [anon_sym_pub] = ACTIONS(4769), - [anon_sym_mut] = ACTIONS(4769), - [anon_sym_enum] = ACTIONS(4769), - [anon_sym_interface] = ACTIONS(4769), - [anon_sym_QMARK] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_go] = ACTIONS(4769), - [anon_sym_spawn] = ACTIONS(4769), - [anon_sym_json_DOTdecode] = ACTIONS(4769), - [anon_sym_LBRACK2] = ACTIONS(4769), - [anon_sym_TILDE] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym_AMP] = ACTIONS(4769), - [anon_sym_LT_DASH] = ACTIONS(4769), - [sym_none] = ACTIONS(4769), - [sym_true] = ACTIONS(4769), - [sym_false] = ACTIONS(4769), - [sym_nil] = ACTIONS(4769), - [anon_sym_if] = ACTIONS(4769), - [anon_sym_DOLLARif] = ACTIONS(4769), - [anon_sym_match] = ACTIONS(4769), - [anon_sym_select] = ACTIONS(4769), - [anon_sym_lock] = ACTIONS(4769), - [anon_sym_rlock] = ACTIONS(4769), - [anon_sym_unsafe] = ACTIONS(4769), - [anon_sym_sql] = ACTIONS(4769), - [sym_int_literal] = ACTIONS(4769), - [sym_float_literal] = ACTIONS(4769), - [sym_rune_literal] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [anon_sym_c_SQUOTE] = ACTIONS(4769), - [anon_sym_c_DQUOTE] = ACTIONS(4769), - [anon_sym_r_SQUOTE] = ACTIONS(4769), - [anon_sym_r_DQUOTE] = ACTIONS(4769), - [sym_pseudo_compile_time_identifier] = ACTIONS(4769), - [anon_sym_shared] = ACTIONS(4769), - [anon_sym_map_LBRACK] = ACTIONS(4769), - [anon_sym_chan] = ACTIONS(4769), - [anon_sym_thread] = ACTIONS(4769), - [anon_sym_atomic] = ACTIONS(4769), - [anon_sym_assert] = ACTIONS(4769), - [anon_sym_defer] = ACTIONS(4769), - [anon_sym_goto] = ACTIONS(4769), - [anon_sym_break] = ACTIONS(4769), - [anon_sym_continue] = ACTIONS(4769), - [anon_sym_return] = ACTIONS(4769), - [anon_sym_DOLLARfor] = ACTIONS(4769), - [anon_sym_for] = ACTIONS(4769), - [anon_sym_POUND] = ACTIONS(4769), - [anon_sym_asm] = ACTIONS(4769), - [anon_sym_AT_LBRACK] = ACTIONS(4769), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4763), + [anon_sym___global] = ACTIONS(4763), + [anon_sym_type] = ACTIONS(4763), + [anon_sym_fn] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_struct] = ACTIONS(4763), + [anon_sym_union] = ACTIONS(4763), + [anon_sym_pub] = ACTIONS(4763), + [anon_sym_mut] = ACTIONS(4763), + [anon_sym_enum] = ACTIONS(4763), + [anon_sym_interface] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4763), + [anon_sym_BANG] = ACTIONS(4763), + [anon_sym_go] = ACTIONS(4763), + [anon_sym_spawn] = ACTIONS(4763), + [anon_sym_json_DOTdecode] = ACTIONS(4763), + [anon_sym_LBRACK2] = ACTIONS(4763), + [anon_sym_TILDE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_LT_DASH] = ACTIONS(4763), + [sym_none] = ACTIONS(4763), + [sym_true] = ACTIONS(4763), + [sym_false] = ACTIONS(4763), + [sym_nil] = ACTIONS(4763), + [anon_sym_if] = ACTIONS(4763), + [anon_sym_DOLLARif] = ACTIONS(4763), + [anon_sym_match] = ACTIONS(4763), + [anon_sym_select] = ACTIONS(4763), + [anon_sym_lock] = ACTIONS(4763), + [anon_sym_rlock] = ACTIONS(4763), + [anon_sym_unsafe] = ACTIONS(4763), + [anon_sym_sql] = ACTIONS(4763), + [sym_int_literal] = ACTIONS(4763), + [sym_float_literal] = ACTIONS(4763), + [sym_rune_literal] = ACTIONS(4763), + [anon_sym_SQUOTE] = ACTIONS(4763), + [anon_sym_DQUOTE] = ACTIONS(4763), + [anon_sym_c_SQUOTE] = ACTIONS(4763), + [anon_sym_c_DQUOTE] = ACTIONS(4763), + [anon_sym_r_SQUOTE] = ACTIONS(4763), + [anon_sym_r_DQUOTE] = ACTIONS(4763), + [sym_pseudo_compile_time_identifier] = ACTIONS(4763), + [anon_sym_shared] = ACTIONS(4763), + [anon_sym_map_LBRACK] = ACTIONS(4763), + [anon_sym_chan] = ACTIONS(4763), + [anon_sym_thread] = ACTIONS(4763), + [anon_sym_atomic] = ACTIONS(4763), + [anon_sym_assert] = ACTIONS(4763), + [anon_sym_defer] = ACTIONS(4763), + [anon_sym_goto] = ACTIONS(4763), + [anon_sym_break] = ACTIONS(4763), + [anon_sym_continue] = ACTIONS(4763), + [anon_sym_return] = ACTIONS(4763), + [anon_sym_DOLLARfor] = ACTIONS(4763), + [anon_sym_for] = ACTIONS(4763), + [anon_sym_POUND] = ACTIONS(4763), + [anon_sym_asm] = ACTIONS(4763), + [anon_sym_AT_LBRACK] = ACTIONS(4763), }, [1864] = { [sym_line_comment] = STATE(1864), [sym_block_comment] = STATE(1864), - [ts_builtin_sym_end] = ACTIONS(4771), - [sym_identifier] = ACTIONS(4773), - [anon_sym_LF] = ACTIONS(4773), - [anon_sym_CR] = ACTIONS(4773), - [anon_sym_CR_LF] = ACTIONS(4773), + [ts_builtin_sym_end] = ACTIONS(4765), + [sym_identifier] = ACTIONS(4767), + [anon_sym_LF] = ACTIONS(4767), + [anon_sym_CR] = ACTIONS(4767), + [anon_sym_CR_LF] = ACTIONS(4767), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4773), - [anon_sym_LBRACE] = ACTIONS(4773), - [anon_sym_const] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4773), - [anon_sym___global] = ACTIONS(4773), - [anon_sym_type] = ACTIONS(4773), - [anon_sym_fn] = ACTIONS(4773), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_struct] = ACTIONS(4773), - [anon_sym_union] = ACTIONS(4773), - [anon_sym_pub] = ACTIONS(4773), - [anon_sym_mut] = ACTIONS(4773), - [anon_sym_enum] = ACTIONS(4773), - [anon_sym_interface] = ACTIONS(4773), - [anon_sym_QMARK] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_go] = ACTIONS(4773), - [anon_sym_spawn] = ACTIONS(4773), - [anon_sym_json_DOTdecode] = ACTIONS(4773), - [anon_sym_LBRACK2] = ACTIONS(4773), - [anon_sym_TILDE] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym_AMP] = ACTIONS(4773), - [anon_sym_LT_DASH] = ACTIONS(4773), - [sym_none] = ACTIONS(4773), - [sym_true] = ACTIONS(4773), - [sym_false] = ACTIONS(4773), - [sym_nil] = ACTIONS(4773), - [anon_sym_if] = ACTIONS(4773), - [anon_sym_DOLLARif] = ACTIONS(4773), - [anon_sym_match] = ACTIONS(4773), - [anon_sym_select] = ACTIONS(4773), - [anon_sym_lock] = ACTIONS(4773), - [anon_sym_rlock] = ACTIONS(4773), - [anon_sym_unsafe] = ACTIONS(4773), - [anon_sym_sql] = ACTIONS(4773), - [sym_int_literal] = ACTIONS(4773), - [sym_float_literal] = ACTIONS(4773), - [sym_rune_literal] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DQUOTE] = ACTIONS(4773), - [anon_sym_c_SQUOTE] = ACTIONS(4773), - [anon_sym_c_DQUOTE] = ACTIONS(4773), - [anon_sym_r_SQUOTE] = ACTIONS(4773), - [anon_sym_r_DQUOTE] = ACTIONS(4773), - [sym_pseudo_compile_time_identifier] = ACTIONS(4773), - [anon_sym_shared] = ACTIONS(4773), - [anon_sym_map_LBRACK] = ACTIONS(4773), - [anon_sym_chan] = ACTIONS(4773), - [anon_sym_thread] = ACTIONS(4773), - [anon_sym_atomic] = ACTIONS(4773), - [anon_sym_assert] = ACTIONS(4773), - [anon_sym_defer] = ACTIONS(4773), - [anon_sym_goto] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_continue] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_DOLLARfor] = ACTIONS(4773), - [anon_sym_for] = ACTIONS(4773), - [anon_sym_POUND] = ACTIONS(4773), - [anon_sym_asm] = ACTIONS(4773), - [anon_sym_AT_LBRACK] = ACTIONS(4773), + [anon_sym_DOT] = ACTIONS(4767), + [anon_sym_LBRACE] = ACTIONS(4767), + [anon_sym_const] = ACTIONS(4767), + [anon_sym_LPAREN] = ACTIONS(4767), + [anon_sym___global] = ACTIONS(4767), + [anon_sym_type] = ACTIONS(4767), + [anon_sym_fn] = ACTIONS(4767), + [anon_sym_PLUS] = ACTIONS(4767), + [anon_sym_DASH] = ACTIONS(4767), + [anon_sym_STAR] = ACTIONS(4767), + [anon_sym_struct] = ACTIONS(4767), + [anon_sym_union] = ACTIONS(4767), + [anon_sym_pub] = ACTIONS(4767), + [anon_sym_mut] = ACTIONS(4767), + [anon_sym_enum] = ACTIONS(4767), + [anon_sym_interface] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4767), + [anon_sym_BANG] = ACTIONS(4767), + [anon_sym_go] = ACTIONS(4767), + [anon_sym_spawn] = ACTIONS(4767), + [anon_sym_json_DOTdecode] = ACTIONS(4767), + [anon_sym_LBRACK2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4767), + [anon_sym_CARET] = ACTIONS(4767), + [anon_sym_AMP] = ACTIONS(4767), + [anon_sym_LT_DASH] = ACTIONS(4767), + [sym_none] = ACTIONS(4767), + [sym_true] = ACTIONS(4767), + [sym_false] = ACTIONS(4767), + [sym_nil] = ACTIONS(4767), + [anon_sym_if] = ACTIONS(4767), + [anon_sym_DOLLARif] = ACTIONS(4767), + [anon_sym_match] = ACTIONS(4767), + [anon_sym_select] = ACTIONS(4767), + [anon_sym_lock] = ACTIONS(4767), + [anon_sym_rlock] = ACTIONS(4767), + [anon_sym_unsafe] = ACTIONS(4767), + [anon_sym_sql] = ACTIONS(4767), + [sym_int_literal] = ACTIONS(4767), + [sym_float_literal] = ACTIONS(4767), + [sym_rune_literal] = ACTIONS(4767), + [anon_sym_SQUOTE] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_c_SQUOTE] = ACTIONS(4767), + [anon_sym_c_DQUOTE] = ACTIONS(4767), + [anon_sym_r_SQUOTE] = ACTIONS(4767), + [anon_sym_r_DQUOTE] = ACTIONS(4767), + [sym_pseudo_compile_time_identifier] = ACTIONS(4767), + [anon_sym_shared] = ACTIONS(4767), + [anon_sym_map_LBRACK] = ACTIONS(4767), + [anon_sym_chan] = ACTIONS(4767), + [anon_sym_thread] = ACTIONS(4767), + [anon_sym_atomic] = ACTIONS(4767), + [anon_sym_assert] = ACTIONS(4767), + [anon_sym_defer] = ACTIONS(4767), + [anon_sym_goto] = ACTIONS(4767), + [anon_sym_break] = ACTIONS(4767), + [anon_sym_continue] = ACTIONS(4767), + [anon_sym_return] = ACTIONS(4767), + [anon_sym_DOLLARfor] = ACTIONS(4767), + [anon_sym_for] = ACTIONS(4767), + [anon_sym_POUND] = ACTIONS(4767), + [anon_sym_asm] = ACTIONS(4767), + [anon_sym_AT_LBRACK] = ACTIONS(4767), }, [1865] = { [sym_line_comment] = STATE(1865), [sym_block_comment] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(4775), - [sym_identifier] = ACTIONS(4777), - [anon_sym_LF] = ACTIONS(4777), - [anon_sym_CR] = ACTIONS(4777), - [anon_sym_CR_LF] = ACTIONS(4777), + [ts_builtin_sym_end] = ACTIONS(4769), + [sym_identifier] = ACTIONS(4771), + [anon_sym_LF] = ACTIONS(4771), + [anon_sym_CR] = ACTIONS(4771), + [anon_sym_CR_LF] = ACTIONS(4771), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_LBRACE] = ACTIONS(4777), - [anon_sym_const] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4777), - [anon_sym___global] = ACTIONS(4777), - [anon_sym_type] = ACTIONS(4777), - [anon_sym_fn] = ACTIONS(4777), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_struct] = ACTIONS(4777), - [anon_sym_union] = ACTIONS(4777), - [anon_sym_pub] = ACTIONS(4777), - [anon_sym_mut] = ACTIONS(4777), - [anon_sym_enum] = ACTIONS(4777), - [anon_sym_interface] = ACTIONS(4777), - [anon_sym_QMARK] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_go] = ACTIONS(4777), - [anon_sym_spawn] = ACTIONS(4777), - [anon_sym_json_DOTdecode] = ACTIONS(4777), - [anon_sym_LBRACK2] = ACTIONS(4777), - [anon_sym_TILDE] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym_AMP] = ACTIONS(4777), - [anon_sym_LT_DASH] = ACTIONS(4777), - [sym_none] = ACTIONS(4777), - [sym_true] = ACTIONS(4777), - [sym_false] = ACTIONS(4777), - [sym_nil] = ACTIONS(4777), - [anon_sym_if] = ACTIONS(4777), - [anon_sym_DOLLARif] = ACTIONS(4777), - [anon_sym_match] = ACTIONS(4777), - [anon_sym_select] = ACTIONS(4777), - [anon_sym_lock] = ACTIONS(4777), - [anon_sym_rlock] = ACTIONS(4777), - [anon_sym_unsafe] = ACTIONS(4777), - [anon_sym_sql] = ACTIONS(4777), - [sym_int_literal] = ACTIONS(4777), - [sym_float_literal] = ACTIONS(4777), - [sym_rune_literal] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DQUOTE] = ACTIONS(4777), - [anon_sym_c_SQUOTE] = ACTIONS(4777), - [anon_sym_c_DQUOTE] = ACTIONS(4777), - [anon_sym_r_SQUOTE] = ACTIONS(4777), - [anon_sym_r_DQUOTE] = ACTIONS(4777), - [sym_pseudo_compile_time_identifier] = ACTIONS(4777), - [anon_sym_shared] = ACTIONS(4777), - [anon_sym_map_LBRACK] = ACTIONS(4777), - [anon_sym_chan] = ACTIONS(4777), - [anon_sym_thread] = ACTIONS(4777), - [anon_sym_atomic] = ACTIONS(4777), - [anon_sym_assert] = ACTIONS(4777), - [anon_sym_defer] = ACTIONS(4777), - [anon_sym_goto] = ACTIONS(4777), - [anon_sym_break] = ACTIONS(4777), - [anon_sym_continue] = ACTIONS(4777), - [anon_sym_return] = ACTIONS(4777), - [anon_sym_DOLLARfor] = ACTIONS(4777), - [anon_sym_for] = ACTIONS(4777), - [anon_sym_POUND] = ACTIONS(4777), - [anon_sym_asm] = ACTIONS(4777), - [anon_sym_AT_LBRACK] = ACTIONS(4777), + [anon_sym_DOT] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_LPAREN] = ACTIONS(4771), + [anon_sym___global] = ACTIONS(4771), + [anon_sym_type] = ACTIONS(4771), + [anon_sym_fn] = ACTIONS(4771), + [anon_sym_PLUS] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4771), + [anon_sym_STAR] = ACTIONS(4771), + [anon_sym_struct] = ACTIONS(4771), + [anon_sym_union] = ACTIONS(4771), + [anon_sym_pub] = ACTIONS(4771), + [anon_sym_mut] = ACTIONS(4771), + [anon_sym_enum] = ACTIONS(4771), + [anon_sym_interface] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_BANG] = ACTIONS(4771), + [anon_sym_go] = ACTIONS(4771), + [anon_sym_spawn] = ACTIONS(4771), + [anon_sym_json_DOTdecode] = ACTIONS(4771), + [anon_sym_LBRACK2] = ACTIONS(4771), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_CARET] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4771), + [anon_sym_LT_DASH] = ACTIONS(4771), + [sym_none] = ACTIONS(4771), + [sym_true] = ACTIONS(4771), + [sym_false] = ACTIONS(4771), + [sym_nil] = ACTIONS(4771), + [anon_sym_if] = ACTIONS(4771), + [anon_sym_DOLLARif] = ACTIONS(4771), + [anon_sym_match] = ACTIONS(4771), + [anon_sym_select] = ACTIONS(4771), + [anon_sym_lock] = ACTIONS(4771), + [anon_sym_rlock] = ACTIONS(4771), + [anon_sym_unsafe] = ACTIONS(4771), + [anon_sym_sql] = ACTIONS(4771), + [sym_int_literal] = ACTIONS(4771), + [sym_float_literal] = ACTIONS(4771), + [sym_rune_literal] = ACTIONS(4771), + [anon_sym_SQUOTE] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [anon_sym_c_SQUOTE] = ACTIONS(4771), + [anon_sym_c_DQUOTE] = ACTIONS(4771), + [anon_sym_r_SQUOTE] = ACTIONS(4771), + [anon_sym_r_DQUOTE] = ACTIONS(4771), + [sym_pseudo_compile_time_identifier] = ACTIONS(4771), + [anon_sym_shared] = ACTIONS(4771), + [anon_sym_map_LBRACK] = ACTIONS(4771), + [anon_sym_chan] = ACTIONS(4771), + [anon_sym_thread] = ACTIONS(4771), + [anon_sym_atomic] = ACTIONS(4771), + [anon_sym_assert] = ACTIONS(4771), + [anon_sym_defer] = ACTIONS(4771), + [anon_sym_goto] = ACTIONS(4771), + [anon_sym_break] = ACTIONS(4771), + [anon_sym_continue] = ACTIONS(4771), + [anon_sym_return] = ACTIONS(4771), + [anon_sym_DOLLARfor] = ACTIONS(4771), + [anon_sym_for] = ACTIONS(4771), + [anon_sym_POUND] = ACTIONS(4771), + [anon_sym_asm] = ACTIONS(4771), + [anon_sym_AT_LBRACK] = ACTIONS(4771), }, [1866] = { [sym_line_comment] = STATE(1866), [sym_block_comment] = STATE(1866), - [ts_builtin_sym_end] = ACTIONS(4779), - [sym_identifier] = ACTIONS(4781), - [anon_sym_LF] = ACTIONS(4781), - [anon_sym_CR] = ACTIONS(4781), - [anon_sym_CR_LF] = ACTIONS(4781), + [ts_builtin_sym_end] = ACTIONS(4773), + [sym_identifier] = ACTIONS(4775), + [anon_sym_LF] = ACTIONS(4775), + [anon_sym_CR] = ACTIONS(4775), + [anon_sym_CR_LF] = ACTIONS(4775), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4781), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_const] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4781), - [anon_sym___global] = ACTIONS(4781), - [anon_sym_type] = ACTIONS(4781), - [anon_sym_fn] = ACTIONS(4781), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_struct] = ACTIONS(4781), - [anon_sym_union] = ACTIONS(4781), - [anon_sym_pub] = ACTIONS(4781), - [anon_sym_mut] = ACTIONS(4781), - [anon_sym_enum] = ACTIONS(4781), - [anon_sym_interface] = ACTIONS(4781), - [anon_sym_QMARK] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_go] = ACTIONS(4781), - [anon_sym_spawn] = ACTIONS(4781), - [anon_sym_json_DOTdecode] = ACTIONS(4781), - [anon_sym_LBRACK2] = ACTIONS(4781), - [anon_sym_TILDE] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym_AMP] = ACTIONS(4781), - [anon_sym_LT_DASH] = ACTIONS(4781), - [sym_none] = ACTIONS(4781), - [sym_true] = ACTIONS(4781), - [sym_false] = ACTIONS(4781), - [sym_nil] = ACTIONS(4781), - [anon_sym_if] = ACTIONS(4781), - [anon_sym_DOLLARif] = ACTIONS(4781), - [anon_sym_match] = ACTIONS(4781), - [anon_sym_select] = ACTIONS(4781), - [anon_sym_lock] = ACTIONS(4781), - [anon_sym_rlock] = ACTIONS(4781), - [anon_sym_unsafe] = ACTIONS(4781), - [anon_sym_sql] = ACTIONS(4781), - [sym_int_literal] = ACTIONS(4781), - [sym_float_literal] = ACTIONS(4781), - [sym_rune_literal] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DQUOTE] = ACTIONS(4781), - [anon_sym_c_SQUOTE] = ACTIONS(4781), - [anon_sym_c_DQUOTE] = ACTIONS(4781), - [anon_sym_r_SQUOTE] = ACTIONS(4781), - [anon_sym_r_DQUOTE] = ACTIONS(4781), - [sym_pseudo_compile_time_identifier] = ACTIONS(4781), - [anon_sym_shared] = ACTIONS(4781), - [anon_sym_map_LBRACK] = ACTIONS(4781), - [anon_sym_chan] = ACTIONS(4781), - [anon_sym_thread] = ACTIONS(4781), - [anon_sym_atomic] = ACTIONS(4781), - [anon_sym_assert] = ACTIONS(4781), - [anon_sym_defer] = ACTIONS(4781), - [anon_sym_goto] = ACTIONS(4781), - [anon_sym_break] = ACTIONS(4781), - [anon_sym_continue] = ACTIONS(4781), - [anon_sym_return] = ACTIONS(4781), - [anon_sym_DOLLARfor] = ACTIONS(4781), - [anon_sym_for] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(4781), - [anon_sym_asm] = ACTIONS(4781), - [anon_sym_AT_LBRACK] = ACTIONS(4781), + [anon_sym_DOT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4775), + [anon_sym_const] = ACTIONS(4775), + [anon_sym_LPAREN] = ACTIONS(4775), + [anon_sym___global] = ACTIONS(4775), + [anon_sym_type] = ACTIONS(4775), + [anon_sym_fn] = ACTIONS(4775), + [anon_sym_PLUS] = ACTIONS(4775), + [anon_sym_DASH] = ACTIONS(4775), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_struct] = ACTIONS(4775), + [anon_sym_union] = ACTIONS(4775), + [anon_sym_pub] = ACTIONS(4775), + [anon_sym_mut] = ACTIONS(4775), + [anon_sym_enum] = ACTIONS(4775), + [anon_sym_interface] = ACTIONS(4775), + [anon_sym_QMARK] = ACTIONS(4775), + [anon_sym_BANG] = ACTIONS(4775), + [anon_sym_go] = ACTIONS(4775), + [anon_sym_spawn] = ACTIONS(4775), + [anon_sym_json_DOTdecode] = ACTIONS(4775), + [anon_sym_LBRACK2] = ACTIONS(4775), + [anon_sym_TILDE] = ACTIONS(4775), + [anon_sym_CARET] = ACTIONS(4775), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_LT_DASH] = ACTIONS(4775), + [sym_none] = ACTIONS(4775), + [sym_true] = ACTIONS(4775), + [sym_false] = ACTIONS(4775), + [sym_nil] = ACTIONS(4775), + [anon_sym_if] = ACTIONS(4775), + [anon_sym_DOLLARif] = ACTIONS(4775), + [anon_sym_match] = ACTIONS(4775), + [anon_sym_select] = ACTIONS(4775), + [anon_sym_lock] = ACTIONS(4775), + [anon_sym_rlock] = ACTIONS(4775), + [anon_sym_unsafe] = ACTIONS(4775), + [anon_sym_sql] = ACTIONS(4775), + [sym_int_literal] = ACTIONS(4775), + [sym_float_literal] = ACTIONS(4775), + [sym_rune_literal] = ACTIONS(4775), + [anon_sym_SQUOTE] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [anon_sym_c_SQUOTE] = ACTIONS(4775), + [anon_sym_c_DQUOTE] = ACTIONS(4775), + [anon_sym_r_SQUOTE] = ACTIONS(4775), + [anon_sym_r_DQUOTE] = ACTIONS(4775), + [sym_pseudo_compile_time_identifier] = ACTIONS(4775), + [anon_sym_shared] = ACTIONS(4775), + [anon_sym_map_LBRACK] = ACTIONS(4775), + [anon_sym_chan] = ACTIONS(4775), + [anon_sym_thread] = ACTIONS(4775), + [anon_sym_atomic] = ACTIONS(4775), + [anon_sym_assert] = ACTIONS(4775), + [anon_sym_defer] = ACTIONS(4775), + [anon_sym_goto] = ACTIONS(4775), + [anon_sym_break] = ACTIONS(4775), + [anon_sym_continue] = ACTIONS(4775), + [anon_sym_return] = ACTIONS(4775), + [anon_sym_DOLLARfor] = ACTIONS(4775), + [anon_sym_for] = ACTIONS(4775), + [anon_sym_POUND] = ACTIONS(4775), + [anon_sym_asm] = ACTIONS(4775), + [anon_sym_AT_LBRACK] = ACTIONS(4775), }, [1867] = { [sym_line_comment] = STATE(1867), [sym_block_comment] = STATE(1867), - [ts_builtin_sym_end] = ACTIONS(4783), - [sym_identifier] = ACTIONS(4785), - [anon_sym_LF] = ACTIONS(4785), - [anon_sym_CR] = ACTIONS(4785), - [anon_sym_CR_LF] = ACTIONS(4785), + [ts_builtin_sym_end] = ACTIONS(4777), + [sym_identifier] = ACTIONS(4779), + [anon_sym_LF] = ACTIONS(4779), + [anon_sym_CR] = ACTIONS(4779), + [anon_sym_CR_LF] = ACTIONS(4779), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4785), - [anon_sym_LBRACE] = ACTIONS(4785), - [anon_sym_const] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4785), - [anon_sym___global] = ACTIONS(4785), - [anon_sym_type] = ACTIONS(4785), - [anon_sym_fn] = ACTIONS(4785), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_struct] = ACTIONS(4785), - [anon_sym_union] = ACTIONS(4785), - [anon_sym_pub] = ACTIONS(4785), - [anon_sym_mut] = ACTIONS(4785), - [anon_sym_enum] = ACTIONS(4785), - [anon_sym_interface] = ACTIONS(4785), - [anon_sym_QMARK] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_go] = ACTIONS(4785), - [anon_sym_spawn] = ACTIONS(4785), - [anon_sym_json_DOTdecode] = ACTIONS(4785), - [anon_sym_LBRACK2] = ACTIONS(4785), - [anon_sym_TILDE] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym_AMP] = ACTIONS(4785), - [anon_sym_LT_DASH] = ACTIONS(4785), - [sym_none] = ACTIONS(4785), - [sym_true] = ACTIONS(4785), - [sym_false] = ACTIONS(4785), - [sym_nil] = ACTIONS(4785), - [anon_sym_if] = ACTIONS(4785), - [anon_sym_DOLLARif] = ACTIONS(4785), - [anon_sym_match] = ACTIONS(4785), - [anon_sym_select] = ACTIONS(4785), - [anon_sym_lock] = ACTIONS(4785), - [anon_sym_rlock] = ACTIONS(4785), - [anon_sym_unsafe] = ACTIONS(4785), - [anon_sym_sql] = ACTIONS(4785), - [sym_int_literal] = ACTIONS(4785), - [sym_float_literal] = ACTIONS(4785), - [sym_rune_literal] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4785), - [anon_sym_c_SQUOTE] = ACTIONS(4785), - [anon_sym_c_DQUOTE] = ACTIONS(4785), - [anon_sym_r_SQUOTE] = ACTIONS(4785), - [anon_sym_r_DQUOTE] = ACTIONS(4785), - [sym_pseudo_compile_time_identifier] = ACTIONS(4785), - [anon_sym_shared] = ACTIONS(4785), - [anon_sym_map_LBRACK] = ACTIONS(4785), - [anon_sym_chan] = ACTIONS(4785), - [anon_sym_thread] = ACTIONS(4785), - [anon_sym_atomic] = ACTIONS(4785), - [anon_sym_assert] = ACTIONS(4785), - [anon_sym_defer] = ACTIONS(4785), - [anon_sym_goto] = ACTIONS(4785), - [anon_sym_break] = ACTIONS(4785), - [anon_sym_continue] = ACTIONS(4785), - [anon_sym_return] = ACTIONS(4785), - [anon_sym_DOLLARfor] = ACTIONS(4785), - [anon_sym_for] = ACTIONS(4785), - [anon_sym_POUND] = ACTIONS(4785), - [anon_sym_asm] = ACTIONS(4785), - [anon_sym_AT_LBRACK] = ACTIONS(4785), + [anon_sym_DOT] = ACTIONS(4779), + [anon_sym_LBRACE] = ACTIONS(4779), + [anon_sym_const] = ACTIONS(4779), + [anon_sym_LPAREN] = ACTIONS(4779), + [anon_sym___global] = ACTIONS(4779), + [anon_sym_type] = ACTIONS(4779), + [anon_sym_fn] = ACTIONS(4779), + [anon_sym_PLUS] = ACTIONS(4779), + [anon_sym_DASH] = ACTIONS(4779), + [anon_sym_STAR] = ACTIONS(4779), + [anon_sym_struct] = ACTIONS(4779), + [anon_sym_union] = ACTIONS(4779), + [anon_sym_pub] = ACTIONS(4779), + [anon_sym_mut] = ACTIONS(4779), + [anon_sym_enum] = ACTIONS(4779), + [anon_sym_interface] = ACTIONS(4779), + [anon_sym_QMARK] = ACTIONS(4779), + [anon_sym_BANG] = ACTIONS(4779), + [anon_sym_go] = ACTIONS(4779), + [anon_sym_spawn] = ACTIONS(4779), + [anon_sym_json_DOTdecode] = ACTIONS(4779), + [anon_sym_LBRACK2] = ACTIONS(4779), + [anon_sym_TILDE] = ACTIONS(4779), + [anon_sym_CARET] = ACTIONS(4779), + [anon_sym_AMP] = ACTIONS(4779), + [anon_sym_LT_DASH] = ACTIONS(4779), + [sym_none] = ACTIONS(4779), + [sym_true] = ACTIONS(4779), + [sym_false] = ACTIONS(4779), + [sym_nil] = ACTIONS(4779), + [anon_sym_if] = ACTIONS(4779), + [anon_sym_DOLLARif] = ACTIONS(4779), + [anon_sym_match] = ACTIONS(4779), + [anon_sym_select] = ACTIONS(4779), + [anon_sym_lock] = ACTIONS(4779), + [anon_sym_rlock] = ACTIONS(4779), + [anon_sym_unsafe] = ACTIONS(4779), + [anon_sym_sql] = ACTIONS(4779), + [sym_int_literal] = ACTIONS(4779), + [sym_float_literal] = ACTIONS(4779), + [sym_rune_literal] = ACTIONS(4779), + [anon_sym_SQUOTE] = ACTIONS(4779), + [anon_sym_DQUOTE] = ACTIONS(4779), + [anon_sym_c_SQUOTE] = ACTIONS(4779), + [anon_sym_c_DQUOTE] = ACTIONS(4779), + [anon_sym_r_SQUOTE] = ACTIONS(4779), + [anon_sym_r_DQUOTE] = ACTIONS(4779), + [sym_pseudo_compile_time_identifier] = ACTIONS(4779), + [anon_sym_shared] = ACTIONS(4779), + [anon_sym_map_LBRACK] = ACTIONS(4779), + [anon_sym_chan] = ACTIONS(4779), + [anon_sym_thread] = ACTIONS(4779), + [anon_sym_atomic] = ACTIONS(4779), + [anon_sym_assert] = ACTIONS(4779), + [anon_sym_defer] = ACTIONS(4779), + [anon_sym_goto] = ACTIONS(4779), + [anon_sym_break] = ACTIONS(4779), + [anon_sym_continue] = ACTIONS(4779), + [anon_sym_return] = ACTIONS(4779), + [anon_sym_DOLLARfor] = ACTIONS(4779), + [anon_sym_for] = ACTIONS(4779), + [anon_sym_POUND] = ACTIONS(4779), + [anon_sym_asm] = ACTIONS(4779), + [anon_sym_AT_LBRACK] = ACTIONS(4779), }, [1868] = { [sym_line_comment] = STATE(1868), [sym_block_comment] = STATE(1868), - [ts_builtin_sym_end] = ACTIONS(4787), - [sym_identifier] = ACTIONS(4789), - [anon_sym_LF] = ACTIONS(4789), - [anon_sym_CR] = ACTIONS(4789), - [anon_sym_CR_LF] = ACTIONS(4789), + [ts_builtin_sym_end] = ACTIONS(4781), + [sym_identifier] = ACTIONS(4783), + [anon_sym_LF] = ACTIONS(4783), + [anon_sym_CR] = ACTIONS(4783), + [anon_sym_CR_LF] = ACTIONS(4783), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4789), - [anon_sym_LBRACE] = ACTIONS(4789), - [anon_sym_const] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4789), - [anon_sym___global] = ACTIONS(4789), - [anon_sym_type] = ACTIONS(4789), - [anon_sym_fn] = ACTIONS(4789), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_struct] = ACTIONS(4789), - [anon_sym_union] = ACTIONS(4789), - [anon_sym_pub] = ACTIONS(4789), - [anon_sym_mut] = ACTIONS(4789), - [anon_sym_enum] = ACTIONS(4789), - [anon_sym_interface] = ACTIONS(4789), - [anon_sym_QMARK] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_go] = ACTIONS(4789), - [anon_sym_spawn] = ACTIONS(4789), - [anon_sym_json_DOTdecode] = ACTIONS(4789), - [anon_sym_LBRACK2] = ACTIONS(4789), - [anon_sym_TILDE] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym_AMP] = ACTIONS(4789), - [anon_sym_LT_DASH] = ACTIONS(4789), - [sym_none] = ACTIONS(4789), - [sym_true] = ACTIONS(4789), - [sym_false] = ACTIONS(4789), - [sym_nil] = ACTIONS(4789), - [anon_sym_if] = ACTIONS(4789), - [anon_sym_DOLLARif] = ACTIONS(4789), - [anon_sym_match] = ACTIONS(4789), - [anon_sym_select] = ACTIONS(4789), - [anon_sym_lock] = ACTIONS(4789), - [anon_sym_rlock] = ACTIONS(4789), - [anon_sym_unsafe] = ACTIONS(4789), - [anon_sym_sql] = ACTIONS(4789), - [sym_int_literal] = ACTIONS(4789), - [sym_float_literal] = ACTIONS(4789), - [sym_rune_literal] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DQUOTE] = ACTIONS(4789), - [anon_sym_c_SQUOTE] = ACTIONS(4789), - [anon_sym_c_DQUOTE] = ACTIONS(4789), - [anon_sym_r_SQUOTE] = ACTIONS(4789), - [anon_sym_r_DQUOTE] = ACTIONS(4789), - [sym_pseudo_compile_time_identifier] = ACTIONS(4789), - [anon_sym_shared] = ACTIONS(4789), - [anon_sym_map_LBRACK] = ACTIONS(4789), - [anon_sym_chan] = ACTIONS(4789), - [anon_sym_thread] = ACTIONS(4789), - [anon_sym_atomic] = ACTIONS(4789), - [anon_sym_assert] = ACTIONS(4789), - [anon_sym_defer] = ACTIONS(4789), - [anon_sym_goto] = ACTIONS(4789), - [anon_sym_break] = ACTIONS(4789), - [anon_sym_continue] = ACTIONS(4789), - [anon_sym_return] = ACTIONS(4789), - [anon_sym_DOLLARfor] = ACTIONS(4789), - [anon_sym_for] = ACTIONS(4789), - [anon_sym_POUND] = ACTIONS(4789), - [anon_sym_asm] = ACTIONS(4789), - [anon_sym_AT_LBRACK] = ACTIONS(4789), + [anon_sym_DOT] = ACTIONS(4783), + [anon_sym_LBRACE] = ACTIONS(4783), + [anon_sym_const] = ACTIONS(4783), + [anon_sym_LPAREN] = ACTIONS(4783), + [anon_sym___global] = ACTIONS(4783), + [anon_sym_type] = ACTIONS(4783), + [anon_sym_fn] = ACTIONS(4783), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_union] = ACTIONS(4783), + [anon_sym_pub] = ACTIONS(4783), + [anon_sym_mut] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_interface] = ACTIONS(4783), + [anon_sym_QMARK] = ACTIONS(4783), + [anon_sym_BANG] = ACTIONS(4783), + [anon_sym_go] = ACTIONS(4783), + [anon_sym_spawn] = ACTIONS(4783), + [anon_sym_json_DOTdecode] = ACTIONS(4783), + [anon_sym_LBRACK2] = ACTIONS(4783), + [anon_sym_TILDE] = ACTIONS(4783), + [anon_sym_CARET] = ACTIONS(4783), + [anon_sym_AMP] = ACTIONS(4783), + [anon_sym_LT_DASH] = ACTIONS(4783), + [sym_none] = ACTIONS(4783), + [sym_true] = ACTIONS(4783), + [sym_false] = ACTIONS(4783), + [sym_nil] = ACTIONS(4783), + [anon_sym_if] = ACTIONS(4783), + [anon_sym_DOLLARif] = ACTIONS(4783), + [anon_sym_match] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [anon_sym_lock] = ACTIONS(4783), + [anon_sym_rlock] = ACTIONS(4783), + [anon_sym_unsafe] = ACTIONS(4783), + [anon_sym_sql] = ACTIONS(4783), + [sym_int_literal] = ACTIONS(4783), + [sym_float_literal] = ACTIONS(4783), + [sym_rune_literal] = ACTIONS(4783), + [anon_sym_SQUOTE] = ACTIONS(4783), + [anon_sym_DQUOTE] = ACTIONS(4783), + [anon_sym_c_SQUOTE] = ACTIONS(4783), + [anon_sym_c_DQUOTE] = ACTIONS(4783), + [anon_sym_r_SQUOTE] = ACTIONS(4783), + [anon_sym_r_DQUOTE] = ACTIONS(4783), + [sym_pseudo_compile_time_identifier] = ACTIONS(4783), + [anon_sym_shared] = ACTIONS(4783), + [anon_sym_map_LBRACK] = ACTIONS(4783), + [anon_sym_chan] = ACTIONS(4783), + [anon_sym_thread] = ACTIONS(4783), + [anon_sym_atomic] = ACTIONS(4783), + [anon_sym_assert] = ACTIONS(4783), + [anon_sym_defer] = ACTIONS(4783), + [anon_sym_goto] = ACTIONS(4783), + [anon_sym_break] = ACTIONS(4783), + [anon_sym_continue] = ACTIONS(4783), + [anon_sym_return] = ACTIONS(4783), + [anon_sym_DOLLARfor] = ACTIONS(4783), + [anon_sym_for] = ACTIONS(4783), + [anon_sym_POUND] = ACTIONS(4783), + [anon_sym_asm] = ACTIONS(4783), + [anon_sym_AT_LBRACK] = ACTIONS(4783), }, [1869] = { [sym_line_comment] = STATE(1869), [sym_block_comment] = STATE(1869), - [ts_builtin_sym_end] = ACTIONS(4791), - [sym_identifier] = ACTIONS(4793), - [anon_sym_LF] = ACTIONS(4793), - [anon_sym_CR] = ACTIONS(4793), - [anon_sym_CR_LF] = ACTIONS(4793), + [ts_builtin_sym_end] = ACTIONS(4785), + [sym_identifier] = ACTIONS(4787), + [anon_sym_LF] = ACTIONS(4787), + [anon_sym_CR] = ACTIONS(4787), + [anon_sym_CR_LF] = ACTIONS(4787), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4793), - [anon_sym_LBRACE] = ACTIONS(4793), - [anon_sym_const] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym___global] = ACTIONS(4793), - [anon_sym_type] = ACTIONS(4793), - [anon_sym_fn] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_struct] = ACTIONS(4793), - [anon_sym_union] = ACTIONS(4793), - [anon_sym_pub] = ACTIONS(4793), - [anon_sym_mut] = ACTIONS(4793), - [anon_sym_enum] = ACTIONS(4793), - [anon_sym_interface] = ACTIONS(4793), - [anon_sym_QMARK] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_go] = ACTIONS(4793), - [anon_sym_spawn] = ACTIONS(4793), - [anon_sym_json_DOTdecode] = ACTIONS(4793), - [anon_sym_LBRACK2] = ACTIONS(4793), - [anon_sym_TILDE] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym_AMP] = ACTIONS(4793), - [anon_sym_LT_DASH] = ACTIONS(4793), - [sym_none] = ACTIONS(4793), - [sym_true] = ACTIONS(4793), - [sym_false] = ACTIONS(4793), - [sym_nil] = ACTIONS(4793), - [anon_sym_if] = ACTIONS(4793), - [anon_sym_DOLLARif] = ACTIONS(4793), - [anon_sym_match] = ACTIONS(4793), - [anon_sym_select] = ACTIONS(4793), - [anon_sym_lock] = ACTIONS(4793), - [anon_sym_rlock] = ACTIONS(4793), - [anon_sym_unsafe] = ACTIONS(4793), - [anon_sym_sql] = ACTIONS(4793), - [sym_int_literal] = ACTIONS(4793), - [sym_float_literal] = ACTIONS(4793), - [sym_rune_literal] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [anon_sym_c_SQUOTE] = ACTIONS(4793), - [anon_sym_c_DQUOTE] = ACTIONS(4793), - [anon_sym_r_SQUOTE] = ACTIONS(4793), - [anon_sym_r_DQUOTE] = ACTIONS(4793), - [sym_pseudo_compile_time_identifier] = ACTIONS(4793), - [anon_sym_shared] = ACTIONS(4793), - [anon_sym_map_LBRACK] = ACTIONS(4793), - [anon_sym_chan] = ACTIONS(4793), - [anon_sym_thread] = ACTIONS(4793), - [anon_sym_atomic] = ACTIONS(4793), - [anon_sym_assert] = ACTIONS(4793), - [anon_sym_defer] = ACTIONS(4793), - [anon_sym_goto] = ACTIONS(4793), - [anon_sym_break] = ACTIONS(4793), - [anon_sym_continue] = ACTIONS(4793), - [anon_sym_return] = ACTIONS(4793), - [anon_sym_DOLLARfor] = ACTIONS(4793), - [anon_sym_for] = ACTIONS(4793), - [anon_sym_POUND] = ACTIONS(4793), - [anon_sym_asm] = ACTIONS(4793), - [anon_sym_AT_LBRACK] = ACTIONS(4793), + [anon_sym_DOT] = ACTIONS(4787), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4787), + [anon_sym_LPAREN] = ACTIONS(4787), + [anon_sym___global] = ACTIONS(4787), + [anon_sym_type] = ACTIONS(4787), + [anon_sym_fn] = ACTIONS(4787), + [anon_sym_PLUS] = ACTIONS(4787), + [anon_sym_DASH] = ACTIONS(4787), + [anon_sym_STAR] = ACTIONS(4787), + [anon_sym_struct] = ACTIONS(4787), + [anon_sym_union] = ACTIONS(4787), + [anon_sym_pub] = ACTIONS(4787), + [anon_sym_mut] = ACTIONS(4787), + [anon_sym_enum] = ACTIONS(4787), + [anon_sym_interface] = ACTIONS(4787), + [anon_sym_QMARK] = ACTIONS(4787), + [anon_sym_BANG] = ACTIONS(4787), + [anon_sym_go] = ACTIONS(4787), + [anon_sym_spawn] = ACTIONS(4787), + [anon_sym_json_DOTdecode] = ACTIONS(4787), + [anon_sym_LBRACK2] = ACTIONS(4787), + [anon_sym_TILDE] = ACTIONS(4787), + [anon_sym_CARET] = ACTIONS(4787), + [anon_sym_AMP] = ACTIONS(4787), + [anon_sym_LT_DASH] = ACTIONS(4787), + [sym_none] = ACTIONS(4787), + [sym_true] = ACTIONS(4787), + [sym_false] = ACTIONS(4787), + [sym_nil] = ACTIONS(4787), + [anon_sym_if] = ACTIONS(4787), + [anon_sym_DOLLARif] = ACTIONS(4787), + [anon_sym_match] = ACTIONS(4787), + [anon_sym_select] = ACTIONS(4787), + [anon_sym_lock] = ACTIONS(4787), + [anon_sym_rlock] = ACTIONS(4787), + [anon_sym_unsafe] = ACTIONS(4787), + [anon_sym_sql] = ACTIONS(4787), + [sym_int_literal] = ACTIONS(4787), + [sym_float_literal] = ACTIONS(4787), + [sym_rune_literal] = ACTIONS(4787), + [anon_sym_SQUOTE] = ACTIONS(4787), + [anon_sym_DQUOTE] = ACTIONS(4787), + [anon_sym_c_SQUOTE] = ACTIONS(4787), + [anon_sym_c_DQUOTE] = ACTIONS(4787), + [anon_sym_r_SQUOTE] = ACTIONS(4787), + [anon_sym_r_DQUOTE] = ACTIONS(4787), + [sym_pseudo_compile_time_identifier] = ACTIONS(4787), + [anon_sym_shared] = ACTIONS(4787), + [anon_sym_map_LBRACK] = ACTIONS(4787), + [anon_sym_chan] = ACTIONS(4787), + [anon_sym_thread] = ACTIONS(4787), + [anon_sym_atomic] = ACTIONS(4787), + [anon_sym_assert] = ACTIONS(4787), + [anon_sym_defer] = ACTIONS(4787), + [anon_sym_goto] = ACTIONS(4787), + [anon_sym_break] = ACTIONS(4787), + [anon_sym_continue] = ACTIONS(4787), + [anon_sym_return] = ACTIONS(4787), + [anon_sym_DOLLARfor] = ACTIONS(4787), + [anon_sym_for] = ACTIONS(4787), + [anon_sym_POUND] = ACTIONS(4787), + [anon_sym_asm] = ACTIONS(4787), + [anon_sym_AT_LBRACK] = ACTIONS(4787), }, [1870] = { [sym_line_comment] = STATE(1870), [sym_block_comment] = STATE(1870), - [ts_builtin_sym_end] = ACTIONS(4795), - [sym_identifier] = ACTIONS(4797), - [anon_sym_LF] = ACTIONS(4797), - [anon_sym_CR] = ACTIONS(4797), - [anon_sym_CR_LF] = ACTIONS(4797), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_const] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym___global] = ACTIONS(4797), - [anon_sym_type] = ACTIONS(4797), - [anon_sym_fn] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_struct] = ACTIONS(4797), - [anon_sym_union] = ACTIONS(4797), - [anon_sym_pub] = ACTIONS(4797), - [anon_sym_mut] = ACTIONS(4797), - [anon_sym_enum] = ACTIONS(4797), - [anon_sym_interface] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_go] = ACTIONS(4797), - [anon_sym_spawn] = ACTIONS(4797), - [anon_sym_json_DOTdecode] = ACTIONS(4797), - [anon_sym_LBRACK2] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4797), - [anon_sym_LT_DASH] = ACTIONS(4797), - [sym_none] = ACTIONS(4797), - [sym_true] = ACTIONS(4797), - [sym_false] = ACTIONS(4797), - [sym_nil] = ACTIONS(4797), - [anon_sym_if] = ACTIONS(4797), - [anon_sym_DOLLARif] = ACTIONS(4797), - [anon_sym_match] = ACTIONS(4797), - [anon_sym_select] = ACTIONS(4797), - [anon_sym_lock] = ACTIONS(4797), - [anon_sym_rlock] = ACTIONS(4797), - [anon_sym_unsafe] = ACTIONS(4797), - [anon_sym_sql] = ACTIONS(4797), - [sym_int_literal] = ACTIONS(4797), - [sym_float_literal] = ACTIONS(4797), - [sym_rune_literal] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_c_SQUOTE] = ACTIONS(4797), - [anon_sym_c_DQUOTE] = ACTIONS(4797), - [anon_sym_r_SQUOTE] = ACTIONS(4797), - [anon_sym_r_DQUOTE] = ACTIONS(4797), - [sym_pseudo_compile_time_identifier] = ACTIONS(4797), - [anon_sym_shared] = ACTIONS(4797), - [anon_sym_map_LBRACK] = ACTIONS(4797), - [anon_sym_chan] = ACTIONS(4797), - [anon_sym_thread] = ACTIONS(4797), - [anon_sym_atomic] = ACTIONS(4797), - [anon_sym_assert] = ACTIONS(4797), - [anon_sym_defer] = ACTIONS(4797), - [anon_sym_goto] = ACTIONS(4797), - [anon_sym_break] = ACTIONS(4797), - [anon_sym_continue] = ACTIONS(4797), - [anon_sym_return] = ACTIONS(4797), - [anon_sym_DOLLARfor] = ACTIONS(4797), - [anon_sym_for] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_asm] = ACTIONS(4797), - [anon_sym_AT_LBRACK] = ACTIONS(4797), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym___global] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_pub] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_c_SQUOTE] = ACTIONS(3346), + [anon_sym_c_DQUOTE] = ACTIONS(3346), + [anon_sym_r_SQUOTE] = ACTIONS(3346), + [anon_sym_r_DQUOTE] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym_AT_LBRACK] = ACTIONS(3346), }, [1871] = { [sym_line_comment] = STATE(1871), [sym_block_comment] = STATE(1871), - [ts_builtin_sym_end] = ACTIONS(4799), - [sym_identifier] = ACTIONS(4801), - [anon_sym_LF] = ACTIONS(4801), - [anon_sym_CR] = ACTIONS(4801), - [anon_sym_CR_LF] = ACTIONS(4801), + [ts_builtin_sym_end] = ACTIONS(4789), + [sym_identifier] = ACTIONS(4791), + [anon_sym_LF] = ACTIONS(4791), + [anon_sym_CR] = ACTIONS(4791), + [anon_sym_CR_LF] = ACTIONS(4791), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_LBRACE] = ACTIONS(4801), - [anon_sym_const] = ACTIONS(4801), - [anon_sym_LPAREN] = ACTIONS(4801), - [anon_sym___global] = ACTIONS(4801), - [anon_sym_type] = ACTIONS(4801), - [anon_sym_fn] = ACTIONS(4801), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4801), - [anon_sym_struct] = ACTIONS(4801), - [anon_sym_union] = ACTIONS(4801), - [anon_sym_pub] = ACTIONS(4801), - [anon_sym_mut] = ACTIONS(4801), - [anon_sym_enum] = ACTIONS(4801), - [anon_sym_interface] = ACTIONS(4801), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_go] = ACTIONS(4801), - [anon_sym_spawn] = ACTIONS(4801), - [anon_sym_json_DOTdecode] = ACTIONS(4801), - [anon_sym_LBRACK2] = ACTIONS(4801), - [anon_sym_TILDE] = ACTIONS(4801), - [anon_sym_CARET] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_DASH] = ACTIONS(4801), - [sym_none] = ACTIONS(4801), - [sym_true] = ACTIONS(4801), - [sym_false] = ACTIONS(4801), - [sym_nil] = ACTIONS(4801), - [anon_sym_if] = ACTIONS(4801), - [anon_sym_DOLLARif] = ACTIONS(4801), - [anon_sym_match] = ACTIONS(4801), - [anon_sym_select] = ACTIONS(4801), - [anon_sym_lock] = ACTIONS(4801), - [anon_sym_rlock] = ACTIONS(4801), - [anon_sym_unsafe] = ACTIONS(4801), - [anon_sym_sql] = ACTIONS(4801), - [sym_int_literal] = ACTIONS(4801), - [sym_float_literal] = ACTIONS(4801), - [sym_rune_literal] = ACTIONS(4801), - [anon_sym_SQUOTE] = ACTIONS(4801), - [anon_sym_DQUOTE] = ACTIONS(4801), - [anon_sym_c_SQUOTE] = ACTIONS(4801), - [anon_sym_c_DQUOTE] = ACTIONS(4801), - [anon_sym_r_SQUOTE] = ACTIONS(4801), - [anon_sym_r_DQUOTE] = ACTIONS(4801), - [sym_pseudo_compile_time_identifier] = ACTIONS(4801), - [anon_sym_shared] = ACTIONS(4801), - [anon_sym_map_LBRACK] = ACTIONS(4801), - [anon_sym_chan] = ACTIONS(4801), - [anon_sym_thread] = ACTIONS(4801), - [anon_sym_atomic] = ACTIONS(4801), - [anon_sym_assert] = ACTIONS(4801), - [anon_sym_defer] = ACTIONS(4801), - [anon_sym_goto] = ACTIONS(4801), - [anon_sym_break] = ACTIONS(4801), - [anon_sym_continue] = ACTIONS(4801), - [anon_sym_return] = ACTIONS(4801), - [anon_sym_DOLLARfor] = ACTIONS(4801), - [anon_sym_for] = ACTIONS(4801), - [anon_sym_POUND] = ACTIONS(4801), - [anon_sym_asm] = ACTIONS(4801), - [anon_sym_AT_LBRACK] = ACTIONS(4801), + [anon_sym_DOT] = ACTIONS(4791), + [anon_sym_LBRACE] = ACTIONS(4791), + [anon_sym_const] = ACTIONS(4791), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym___global] = ACTIONS(4791), + [anon_sym_type] = ACTIONS(4791), + [anon_sym_fn] = ACTIONS(4791), + [anon_sym_PLUS] = ACTIONS(4791), + [anon_sym_DASH] = ACTIONS(4791), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_struct] = ACTIONS(4791), + [anon_sym_union] = ACTIONS(4791), + [anon_sym_pub] = ACTIONS(4791), + [anon_sym_mut] = ACTIONS(4791), + [anon_sym_enum] = ACTIONS(4791), + [anon_sym_interface] = ACTIONS(4791), + [anon_sym_QMARK] = ACTIONS(4791), + [anon_sym_BANG] = ACTIONS(4791), + [anon_sym_go] = ACTIONS(4791), + [anon_sym_spawn] = ACTIONS(4791), + [anon_sym_json_DOTdecode] = ACTIONS(4791), + [anon_sym_LBRACK2] = ACTIONS(4791), + [anon_sym_TILDE] = ACTIONS(4791), + [anon_sym_CARET] = ACTIONS(4791), + [anon_sym_AMP] = ACTIONS(4791), + [anon_sym_LT_DASH] = ACTIONS(4791), + [sym_none] = ACTIONS(4791), + [sym_true] = ACTIONS(4791), + [sym_false] = ACTIONS(4791), + [sym_nil] = ACTIONS(4791), + [anon_sym_if] = ACTIONS(4791), + [anon_sym_DOLLARif] = ACTIONS(4791), + [anon_sym_match] = ACTIONS(4791), + [anon_sym_select] = ACTIONS(4791), + [anon_sym_lock] = ACTIONS(4791), + [anon_sym_rlock] = ACTIONS(4791), + [anon_sym_unsafe] = ACTIONS(4791), + [anon_sym_sql] = ACTIONS(4791), + [sym_int_literal] = ACTIONS(4791), + [sym_float_literal] = ACTIONS(4791), + [sym_rune_literal] = ACTIONS(4791), + [anon_sym_SQUOTE] = ACTIONS(4791), + [anon_sym_DQUOTE] = ACTIONS(4791), + [anon_sym_c_SQUOTE] = ACTIONS(4791), + [anon_sym_c_DQUOTE] = ACTIONS(4791), + [anon_sym_r_SQUOTE] = ACTIONS(4791), + [anon_sym_r_DQUOTE] = ACTIONS(4791), + [sym_pseudo_compile_time_identifier] = ACTIONS(4791), + [anon_sym_shared] = ACTIONS(4791), + [anon_sym_map_LBRACK] = ACTIONS(4791), + [anon_sym_chan] = ACTIONS(4791), + [anon_sym_thread] = ACTIONS(4791), + [anon_sym_atomic] = ACTIONS(4791), + [anon_sym_assert] = ACTIONS(4791), + [anon_sym_defer] = ACTIONS(4791), + [anon_sym_goto] = ACTIONS(4791), + [anon_sym_break] = ACTIONS(4791), + [anon_sym_continue] = ACTIONS(4791), + [anon_sym_return] = ACTIONS(4791), + [anon_sym_DOLLARfor] = ACTIONS(4791), + [anon_sym_for] = ACTIONS(4791), + [anon_sym_POUND] = ACTIONS(4791), + [anon_sym_asm] = ACTIONS(4791), + [anon_sym_AT_LBRACK] = ACTIONS(4791), }, [1872] = { [sym_line_comment] = STATE(1872), [sym_block_comment] = STATE(1872), - [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(4793), + [sym_identifier] = ACTIONS(4795), + [anon_sym_LF] = ACTIONS(4795), + [anon_sym_CR] = ACTIONS(4795), + [anon_sym_CR_LF] = ACTIONS(4795), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [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), - [anon_sym_SQUOTE] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(4379), - [anon_sym_c_SQUOTE] = ACTIONS(4379), - [anon_sym_c_DQUOTE] = ACTIONS(4379), - [anon_sym_r_SQUOTE] = ACTIONS(4379), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_const] = ACTIONS(4795), + [anon_sym_LPAREN] = ACTIONS(4795), + [anon_sym___global] = ACTIONS(4795), + [anon_sym_type] = ACTIONS(4795), + [anon_sym_fn] = ACTIONS(4795), + [anon_sym_PLUS] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4795), + [anon_sym_STAR] = ACTIONS(4795), + [anon_sym_struct] = ACTIONS(4795), + [anon_sym_union] = ACTIONS(4795), + [anon_sym_pub] = ACTIONS(4795), + [anon_sym_mut] = ACTIONS(4795), + [anon_sym_enum] = ACTIONS(4795), + [anon_sym_interface] = ACTIONS(4795), + [anon_sym_QMARK] = ACTIONS(4795), + [anon_sym_BANG] = ACTIONS(4795), + [anon_sym_go] = ACTIONS(4795), + [anon_sym_spawn] = ACTIONS(4795), + [anon_sym_json_DOTdecode] = ACTIONS(4795), + [anon_sym_LBRACK2] = ACTIONS(4795), + [anon_sym_TILDE] = ACTIONS(4795), + [anon_sym_CARET] = ACTIONS(4795), + [anon_sym_AMP] = ACTIONS(4795), + [anon_sym_LT_DASH] = ACTIONS(4795), + [sym_none] = ACTIONS(4795), + [sym_true] = ACTIONS(4795), + [sym_false] = ACTIONS(4795), + [sym_nil] = ACTIONS(4795), + [anon_sym_if] = ACTIONS(4795), + [anon_sym_DOLLARif] = ACTIONS(4795), + [anon_sym_match] = ACTIONS(4795), + [anon_sym_select] = ACTIONS(4795), + [anon_sym_lock] = ACTIONS(4795), + [anon_sym_rlock] = ACTIONS(4795), + [anon_sym_unsafe] = ACTIONS(4795), + [anon_sym_sql] = ACTIONS(4795), + [sym_int_literal] = ACTIONS(4795), + [sym_float_literal] = ACTIONS(4795), + [sym_rune_literal] = ACTIONS(4795), + [anon_sym_SQUOTE] = ACTIONS(4795), + [anon_sym_DQUOTE] = ACTIONS(4795), + [anon_sym_c_SQUOTE] = ACTIONS(4795), + [anon_sym_c_DQUOTE] = ACTIONS(4795), + [anon_sym_r_SQUOTE] = ACTIONS(4795), + [anon_sym_r_DQUOTE] = ACTIONS(4795), + [sym_pseudo_compile_time_identifier] = ACTIONS(4795), + [anon_sym_shared] = ACTIONS(4795), + [anon_sym_map_LBRACK] = ACTIONS(4795), + [anon_sym_chan] = ACTIONS(4795), + [anon_sym_thread] = ACTIONS(4795), + [anon_sym_atomic] = ACTIONS(4795), + [anon_sym_assert] = ACTIONS(4795), + [anon_sym_defer] = ACTIONS(4795), + [anon_sym_goto] = ACTIONS(4795), + [anon_sym_break] = ACTIONS(4795), + [anon_sym_continue] = ACTIONS(4795), + [anon_sym_return] = ACTIONS(4795), + [anon_sym_DOLLARfor] = ACTIONS(4795), + [anon_sym_for] = ACTIONS(4795), + [anon_sym_POUND] = ACTIONS(4795), + [anon_sym_asm] = ACTIONS(4795), + [anon_sym_AT_LBRACK] = ACTIONS(4795), }, [1873] = { [sym_line_comment] = STATE(1873), [sym_block_comment] = STATE(1873), - [ts_builtin_sym_end] = ACTIONS(4803), - [sym_identifier] = ACTIONS(4805), - [anon_sym_LF] = ACTIONS(4805), - [anon_sym_CR] = ACTIONS(4805), - [anon_sym_CR_LF] = ACTIONS(4805), + [ts_builtin_sym_end] = ACTIONS(4797), + [sym_identifier] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_CR] = ACTIONS(4799), + [anon_sym_CR_LF] = ACTIONS(4799), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_LBRACE] = ACTIONS(4805), - [anon_sym_const] = ACTIONS(4805), - [anon_sym_LPAREN] = ACTIONS(4805), - [anon_sym___global] = ACTIONS(4805), - [anon_sym_type] = ACTIONS(4805), - [anon_sym_fn] = ACTIONS(4805), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4805), - [anon_sym_struct] = ACTIONS(4805), - [anon_sym_union] = ACTIONS(4805), - [anon_sym_pub] = ACTIONS(4805), - [anon_sym_mut] = ACTIONS(4805), - [anon_sym_enum] = ACTIONS(4805), - [anon_sym_interface] = ACTIONS(4805), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_go] = ACTIONS(4805), - [anon_sym_spawn] = ACTIONS(4805), - [anon_sym_json_DOTdecode] = ACTIONS(4805), - [anon_sym_LBRACK2] = ACTIONS(4805), - [anon_sym_TILDE] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_DASH] = ACTIONS(4805), - [sym_none] = ACTIONS(4805), - [sym_true] = ACTIONS(4805), - [sym_false] = ACTIONS(4805), - [sym_nil] = ACTIONS(4805), - [anon_sym_if] = ACTIONS(4805), - [anon_sym_DOLLARif] = ACTIONS(4805), - [anon_sym_match] = ACTIONS(4805), - [anon_sym_select] = ACTIONS(4805), - [anon_sym_lock] = ACTIONS(4805), - [anon_sym_rlock] = ACTIONS(4805), - [anon_sym_unsafe] = ACTIONS(4805), - [anon_sym_sql] = ACTIONS(4805), - [sym_int_literal] = ACTIONS(4805), - [sym_float_literal] = ACTIONS(4805), - [sym_rune_literal] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4805), - [anon_sym_DQUOTE] = ACTIONS(4805), - [anon_sym_c_SQUOTE] = ACTIONS(4805), - [anon_sym_c_DQUOTE] = ACTIONS(4805), - [anon_sym_r_SQUOTE] = ACTIONS(4805), - [anon_sym_r_DQUOTE] = ACTIONS(4805), - [sym_pseudo_compile_time_identifier] = ACTIONS(4805), - [anon_sym_shared] = ACTIONS(4805), - [anon_sym_map_LBRACK] = ACTIONS(4805), - [anon_sym_chan] = ACTIONS(4805), - [anon_sym_thread] = ACTIONS(4805), - [anon_sym_atomic] = ACTIONS(4805), - [anon_sym_assert] = ACTIONS(4805), - [anon_sym_defer] = ACTIONS(4805), - [anon_sym_goto] = ACTIONS(4805), - [anon_sym_break] = ACTIONS(4805), - [anon_sym_continue] = ACTIONS(4805), - [anon_sym_return] = ACTIONS(4805), - [anon_sym_DOLLARfor] = ACTIONS(4805), - [anon_sym_for] = ACTIONS(4805), - [anon_sym_POUND] = ACTIONS(4805), - [anon_sym_asm] = ACTIONS(4805), - [anon_sym_AT_LBRACK] = ACTIONS(4805), + [anon_sym_DOT] = ACTIONS(4799), + [anon_sym_LBRACE] = ACTIONS(4799), + [anon_sym_const] = ACTIONS(4799), + [anon_sym_LPAREN] = ACTIONS(4799), + [anon_sym___global] = ACTIONS(4799), + [anon_sym_type] = ACTIONS(4799), + [anon_sym_fn] = ACTIONS(4799), + [anon_sym_PLUS] = ACTIONS(4799), + [anon_sym_DASH] = ACTIONS(4799), + [anon_sym_STAR] = ACTIONS(4799), + [anon_sym_struct] = ACTIONS(4799), + [anon_sym_union] = ACTIONS(4799), + [anon_sym_pub] = ACTIONS(4799), + [anon_sym_mut] = ACTIONS(4799), + [anon_sym_enum] = ACTIONS(4799), + [anon_sym_interface] = ACTIONS(4799), + [anon_sym_QMARK] = ACTIONS(4799), + [anon_sym_BANG] = ACTIONS(4799), + [anon_sym_go] = ACTIONS(4799), + [anon_sym_spawn] = ACTIONS(4799), + [anon_sym_json_DOTdecode] = ACTIONS(4799), + [anon_sym_LBRACK2] = ACTIONS(4799), + [anon_sym_TILDE] = ACTIONS(4799), + [anon_sym_CARET] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + [anon_sym_LT_DASH] = ACTIONS(4799), + [sym_none] = ACTIONS(4799), + [sym_true] = ACTIONS(4799), + [sym_false] = ACTIONS(4799), + [sym_nil] = ACTIONS(4799), + [anon_sym_if] = ACTIONS(4799), + [anon_sym_DOLLARif] = ACTIONS(4799), + [anon_sym_match] = ACTIONS(4799), + [anon_sym_select] = ACTIONS(4799), + [anon_sym_lock] = ACTIONS(4799), + [anon_sym_rlock] = ACTIONS(4799), + [anon_sym_unsafe] = ACTIONS(4799), + [anon_sym_sql] = ACTIONS(4799), + [sym_int_literal] = ACTIONS(4799), + [sym_float_literal] = ACTIONS(4799), + [sym_rune_literal] = ACTIONS(4799), + [anon_sym_SQUOTE] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_c_SQUOTE] = ACTIONS(4799), + [anon_sym_c_DQUOTE] = ACTIONS(4799), + [anon_sym_r_SQUOTE] = ACTIONS(4799), + [anon_sym_r_DQUOTE] = ACTIONS(4799), + [sym_pseudo_compile_time_identifier] = ACTIONS(4799), + [anon_sym_shared] = ACTIONS(4799), + [anon_sym_map_LBRACK] = ACTIONS(4799), + [anon_sym_chan] = ACTIONS(4799), + [anon_sym_thread] = ACTIONS(4799), + [anon_sym_atomic] = ACTIONS(4799), + [anon_sym_assert] = ACTIONS(4799), + [anon_sym_defer] = ACTIONS(4799), + [anon_sym_goto] = ACTIONS(4799), + [anon_sym_break] = ACTIONS(4799), + [anon_sym_continue] = ACTIONS(4799), + [anon_sym_return] = ACTIONS(4799), + [anon_sym_DOLLARfor] = ACTIONS(4799), + [anon_sym_for] = ACTIONS(4799), + [anon_sym_POUND] = ACTIONS(4799), + [anon_sym_asm] = ACTIONS(4799), + [anon_sym_AT_LBRACK] = ACTIONS(4799), }, [1874] = { [sym_line_comment] = STATE(1874), [sym_block_comment] = STATE(1874), - [ts_builtin_sym_end] = ACTIONS(4807), - [sym_identifier] = ACTIONS(4809), - [anon_sym_LF] = ACTIONS(4809), - [anon_sym_CR] = ACTIONS(4809), - [anon_sym_CR_LF] = ACTIONS(4809), + [ts_builtin_sym_end] = ACTIONS(4801), + [sym_identifier] = ACTIONS(4803), + [anon_sym_LF] = ACTIONS(4803), + [anon_sym_CR] = ACTIONS(4803), + [anon_sym_CR_LF] = ACTIONS(4803), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_const] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym___global] = ACTIONS(4809), - [anon_sym_type] = ACTIONS(4809), - [anon_sym_fn] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4809), - [anon_sym_struct] = ACTIONS(4809), - [anon_sym_union] = ACTIONS(4809), - [anon_sym_pub] = ACTIONS(4809), - [anon_sym_mut] = ACTIONS(4809), - [anon_sym_enum] = ACTIONS(4809), - [anon_sym_interface] = ACTIONS(4809), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_go] = ACTIONS(4809), - [anon_sym_spawn] = ACTIONS(4809), - [anon_sym_json_DOTdecode] = ACTIONS(4809), - [anon_sym_LBRACK2] = ACTIONS(4809), - [anon_sym_TILDE] = ACTIONS(4809), - [anon_sym_CARET] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_DASH] = ACTIONS(4809), - [sym_none] = ACTIONS(4809), - [sym_true] = ACTIONS(4809), - [sym_false] = ACTIONS(4809), - [sym_nil] = ACTIONS(4809), - [anon_sym_if] = ACTIONS(4809), - [anon_sym_DOLLARif] = ACTIONS(4809), - [anon_sym_match] = ACTIONS(4809), - [anon_sym_select] = ACTIONS(4809), - [anon_sym_lock] = ACTIONS(4809), - [anon_sym_rlock] = ACTIONS(4809), - [anon_sym_unsafe] = ACTIONS(4809), - [anon_sym_sql] = ACTIONS(4809), - [sym_int_literal] = ACTIONS(4809), - [sym_float_literal] = ACTIONS(4809), - [sym_rune_literal] = ACTIONS(4809), - [anon_sym_SQUOTE] = ACTIONS(4809), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_c_SQUOTE] = ACTIONS(4809), - [anon_sym_c_DQUOTE] = ACTIONS(4809), - [anon_sym_r_SQUOTE] = ACTIONS(4809), - [anon_sym_r_DQUOTE] = ACTIONS(4809), - [sym_pseudo_compile_time_identifier] = ACTIONS(4809), - [anon_sym_shared] = ACTIONS(4809), - [anon_sym_map_LBRACK] = ACTIONS(4809), - [anon_sym_chan] = ACTIONS(4809), - [anon_sym_thread] = ACTIONS(4809), - [anon_sym_atomic] = ACTIONS(4809), - [anon_sym_assert] = ACTIONS(4809), - [anon_sym_defer] = ACTIONS(4809), - [anon_sym_goto] = ACTIONS(4809), - [anon_sym_break] = ACTIONS(4809), - [anon_sym_continue] = ACTIONS(4809), - [anon_sym_return] = ACTIONS(4809), - [anon_sym_DOLLARfor] = ACTIONS(4809), - [anon_sym_for] = ACTIONS(4809), - [anon_sym_POUND] = ACTIONS(4809), - [anon_sym_asm] = ACTIONS(4809), - [anon_sym_AT_LBRACK] = ACTIONS(4809), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_const] = ACTIONS(4803), + [anon_sym_LPAREN] = ACTIONS(4803), + [anon_sym___global] = ACTIONS(4803), + [anon_sym_type] = ACTIONS(4803), + [anon_sym_fn] = ACTIONS(4803), + [anon_sym_PLUS] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4803), + [anon_sym_STAR] = ACTIONS(4803), + [anon_sym_struct] = ACTIONS(4803), + [anon_sym_union] = ACTIONS(4803), + [anon_sym_pub] = ACTIONS(4803), + [anon_sym_mut] = ACTIONS(4803), + [anon_sym_enum] = ACTIONS(4803), + [anon_sym_interface] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4803), + [anon_sym_BANG] = ACTIONS(4803), + [anon_sym_go] = ACTIONS(4803), + [anon_sym_spawn] = ACTIONS(4803), + [anon_sym_json_DOTdecode] = ACTIONS(4803), + [anon_sym_LBRACK2] = ACTIONS(4803), + [anon_sym_TILDE] = ACTIONS(4803), + [anon_sym_CARET] = ACTIONS(4803), + [anon_sym_AMP] = ACTIONS(4803), + [anon_sym_LT_DASH] = ACTIONS(4803), + [sym_none] = ACTIONS(4803), + [sym_true] = ACTIONS(4803), + [sym_false] = ACTIONS(4803), + [sym_nil] = ACTIONS(4803), + [anon_sym_if] = ACTIONS(4803), + [anon_sym_DOLLARif] = ACTIONS(4803), + [anon_sym_match] = ACTIONS(4803), + [anon_sym_select] = ACTIONS(4803), + [anon_sym_lock] = ACTIONS(4803), + [anon_sym_rlock] = ACTIONS(4803), + [anon_sym_unsafe] = ACTIONS(4803), + [anon_sym_sql] = ACTIONS(4803), + [sym_int_literal] = ACTIONS(4803), + [sym_float_literal] = ACTIONS(4803), + [sym_rune_literal] = ACTIONS(4803), + [anon_sym_SQUOTE] = ACTIONS(4803), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_c_SQUOTE] = ACTIONS(4803), + [anon_sym_c_DQUOTE] = ACTIONS(4803), + [anon_sym_r_SQUOTE] = ACTIONS(4803), + [anon_sym_r_DQUOTE] = ACTIONS(4803), + [sym_pseudo_compile_time_identifier] = ACTIONS(4803), + [anon_sym_shared] = ACTIONS(4803), + [anon_sym_map_LBRACK] = ACTIONS(4803), + [anon_sym_chan] = ACTIONS(4803), + [anon_sym_thread] = ACTIONS(4803), + [anon_sym_atomic] = ACTIONS(4803), + [anon_sym_assert] = ACTIONS(4803), + [anon_sym_defer] = ACTIONS(4803), + [anon_sym_goto] = ACTIONS(4803), + [anon_sym_break] = ACTIONS(4803), + [anon_sym_continue] = ACTIONS(4803), + [anon_sym_return] = ACTIONS(4803), + [anon_sym_DOLLARfor] = ACTIONS(4803), + [anon_sym_for] = ACTIONS(4803), + [anon_sym_POUND] = ACTIONS(4803), + [anon_sym_asm] = ACTIONS(4803), + [anon_sym_AT_LBRACK] = ACTIONS(4803), }, [1875] = { [sym_line_comment] = STATE(1875), [sym_block_comment] = STATE(1875), - [ts_builtin_sym_end] = ACTIONS(3272), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LF] = ACTIONS(3274), - [anon_sym_CR] = ACTIONS(3274), - [anon_sym_CR_LF] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_LF] = ACTIONS(2893), + [anon_sym_CR] = ACTIONS(2893), + [anon_sym_CR_LF] = ACTIONS(2893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym___global] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_fn] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_pub] = ACTIONS(3274), - [anon_sym_mut] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_go] = ACTIONS(3274), - [anon_sym_spawn] = ACTIONS(3274), - [anon_sym_json_DOTdecode] = ACTIONS(3274), - [anon_sym_LBRACK2] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_CARET] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_LT_DASH] = ACTIONS(3274), - [sym_none] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_nil] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_DOLLARif] = ACTIONS(3274), - [anon_sym_match] = ACTIONS(3274), - [anon_sym_select] = ACTIONS(3274), - [anon_sym_lock] = ACTIONS(3274), - [anon_sym_rlock] = ACTIONS(3274), - [anon_sym_unsafe] = ACTIONS(3274), - [anon_sym_sql] = ACTIONS(3274), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(3274), - [sym_rune_literal] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_c_SQUOTE] = ACTIONS(3274), - [anon_sym_c_DQUOTE] = ACTIONS(3274), - [anon_sym_r_SQUOTE] = ACTIONS(3274), - [anon_sym_r_DQUOTE] = ACTIONS(3274), - [sym_pseudo_compile_time_identifier] = ACTIONS(3274), - [anon_sym_shared] = ACTIONS(3274), - [anon_sym_map_LBRACK] = ACTIONS(3274), - [anon_sym_chan] = ACTIONS(3274), - [anon_sym_thread] = ACTIONS(3274), - [anon_sym_atomic] = ACTIONS(3274), - [anon_sym_assert] = ACTIONS(3274), - [anon_sym_defer] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_DOLLARfor] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_POUND] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym_AT_LBRACK] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym___global] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_fn] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2893), + [anon_sym_union] = ACTIONS(2893), + [anon_sym_pub] = ACTIONS(2893), + [anon_sym_mut] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_go] = ACTIONS(2893), + [anon_sym_spawn] = ACTIONS(2893), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_nil] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_DOLLARif] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_select] = ACTIONS(2893), + [anon_sym_lock] = ACTIONS(2893), + [anon_sym_rlock] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2893), + [anon_sym_sql] = ACTIONS(2893), + [sym_int_literal] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_c_SQUOTE] = ACTIONS(2893), + [anon_sym_c_DQUOTE] = ACTIONS(2893), + [anon_sym_r_SQUOTE] = ACTIONS(2893), + [anon_sym_r_DQUOTE] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2893), + [anon_sym_shared] = ACTIONS(2893), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2893), + [anon_sym_thread] = ACTIONS(2893), + [anon_sym_atomic] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_defer] = ACTIONS(2893), + [anon_sym_goto] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_DOLLARfor] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_asm] = ACTIONS(2893), + [anon_sym_AT_LBRACK] = ACTIONS(2893), }, [1876] = { [sym_line_comment] = STATE(1876), [sym_block_comment] = STATE(1876), - [ts_builtin_sym_end] = ACTIONS(4811), - [sym_identifier] = ACTIONS(4813), - [anon_sym_LF] = ACTIONS(4813), - [anon_sym_CR] = ACTIONS(4813), - [anon_sym_CR_LF] = ACTIONS(4813), + [ts_builtin_sym_end] = ACTIONS(4805), + [sym_identifier] = ACTIONS(4807), + [anon_sym_LF] = ACTIONS(4807), + [anon_sym_CR] = ACTIONS(4807), + [anon_sym_CR_LF] = ACTIONS(4807), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_LBRACE] = ACTIONS(4813), - [anon_sym_const] = ACTIONS(4813), - [anon_sym_LPAREN] = ACTIONS(4813), - [anon_sym___global] = ACTIONS(4813), - [anon_sym_type] = ACTIONS(4813), - [anon_sym_fn] = ACTIONS(4813), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_STAR] = ACTIONS(4813), - [anon_sym_struct] = ACTIONS(4813), - [anon_sym_union] = ACTIONS(4813), - [anon_sym_pub] = ACTIONS(4813), - [anon_sym_mut] = ACTIONS(4813), - [anon_sym_enum] = ACTIONS(4813), - [anon_sym_interface] = ACTIONS(4813), - [anon_sym_QMARK] = ACTIONS(4813), - [anon_sym_BANG] = ACTIONS(4813), - [anon_sym_go] = ACTIONS(4813), - [anon_sym_spawn] = ACTIONS(4813), - [anon_sym_json_DOTdecode] = ACTIONS(4813), - [anon_sym_LBRACK2] = ACTIONS(4813), - [anon_sym_TILDE] = ACTIONS(4813), - [anon_sym_CARET] = ACTIONS(4813), - [anon_sym_AMP] = ACTIONS(4813), - [anon_sym_LT_DASH] = ACTIONS(4813), - [sym_none] = ACTIONS(4813), - [sym_true] = ACTIONS(4813), - [sym_false] = ACTIONS(4813), - [sym_nil] = ACTIONS(4813), - [anon_sym_if] = ACTIONS(4813), - [anon_sym_DOLLARif] = ACTIONS(4813), - [anon_sym_match] = ACTIONS(4813), - [anon_sym_select] = ACTIONS(4813), - [anon_sym_lock] = ACTIONS(4813), - [anon_sym_rlock] = ACTIONS(4813), - [anon_sym_unsafe] = ACTIONS(4813), - [anon_sym_sql] = ACTIONS(4813), - [sym_int_literal] = ACTIONS(4813), - [sym_float_literal] = ACTIONS(4813), - [sym_rune_literal] = ACTIONS(4813), - [anon_sym_SQUOTE] = ACTIONS(4813), - [anon_sym_DQUOTE] = ACTIONS(4813), - [anon_sym_c_SQUOTE] = ACTIONS(4813), - [anon_sym_c_DQUOTE] = ACTIONS(4813), - [anon_sym_r_SQUOTE] = ACTIONS(4813), - [anon_sym_r_DQUOTE] = ACTIONS(4813), - [sym_pseudo_compile_time_identifier] = ACTIONS(4813), - [anon_sym_shared] = ACTIONS(4813), - [anon_sym_map_LBRACK] = ACTIONS(4813), - [anon_sym_chan] = ACTIONS(4813), - [anon_sym_thread] = ACTIONS(4813), - [anon_sym_atomic] = ACTIONS(4813), - [anon_sym_assert] = ACTIONS(4813), - [anon_sym_defer] = ACTIONS(4813), - [anon_sym_goto] = ACTIONS(4813), - [anon_sym_break] = ACTIONS(4813), - [anon_sym_continue] = ACTIONS(4813), - [anon_sym_return] = ACTIONS(4813), - [anon_sym_DOLLARfor] = ACTIONS(4813), - [anon_sym_for] = ACTIONS(4813), - [anon_sym_POUND] = ACTIONS(4813), - [anon_sym_asm] = ACTIONS(4813), - [anon_sym_AT_LBRACK] = ACTIONS(4813), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4807), + [anon_sym_LPAREN] = ACTIONS(4807), + [anon_sym___global] = ACTIONS(4807), + [anon_sym_type] = ACTIONS(4807), + [anon_sym_fn] = ACTIONS(4807), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_struct] = ACTIONS(4807), + [anon_sym_union] = ACTIONS(4807), + [anon_sym_pub] = ACTIONS(4807), + [anon_sym_mut] = ACTIONS(4807), + [anon_sym_enum] = ACTIONS(4807), + [anon_sym_interface] = ACTIONS(4807), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_go] = ACTIONS(4807), + [anon_sym_spawn] = ACTIONS(4807), + [anon_sym_json_DOTdecode] = ACTIONS(4807), + [anon_sym_LBRACK2] = ACTIONS(4807), + [anon_sym_TILDE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_DASH] = ACTIONS(4807), + [sym_none] = ACTIONS(4807), + [sym_true] = ACTIONS(4807), + [sym_false] = ACTIONS(4807), + [sym_nil] = ACTIONS(4807), + [anon_sym_if] = ACTIONS(4807), + [anon_sym_DOLLARif] = ACTIONS(4807), + [anon_sym_match] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [anon_sym_lock] = ACTIONS(4807), + [anon_sym_rlock] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_sql] = ACTIONS(4807), + [sym_int_literal] = ACTIONS(4807), + [sym_float_literal] = ACTIONS(4807), + [sym_rune_literal] = ACTIONS(4807), + [anon_sym_SQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE] = ACTIONS(4807), + [anon_sym_c_SQUOTE] = ACTIONS(4807), + [anon_sym_c_DQUOTE] = ACTIONS(4807), + [anon_sym_r_SQUOTE] = ACTIONS(4807), + [anon_sym_r_DQUOTE] = ACTIONS(4807), + [sym_pseudo_compile_time_identifier] = ACTIONS(4807), + [anon_sym_shared] = ACTIONS(4807), + [anon_sym_map_LBRACK] = ACTIONS(4807), + [anon_sym_chan] = ACTIONS(4807), + [anon_sym_thread] = ACTIONS(4807), + [anon_sym_atomic] = ACTIONS(4807), + [anon_sym_assert] = ACTIONS(4807), + [anon_sym_defer] = ACTIONS(4807), + [anon_sym_goto] = ACTIONS(4807), + [anon_sym_break] = ACTIONS(4807), + [anon_sym_continue] = ACTIONS(4807), + [anon_sym_return] = ACTIONS(4807), + [anon_sym_DOLLARfor] = ACTIONS(4807), + [anon_sym_for] = ACTIONS(4807), + [anon_sym_POUND] = ACTIONS(4807), + [anon_sym_asm] = ACTIONS(4807), + [anon_sym_AT_LBRACK] = ACTIONS(4807), }, [1877] = { [sym_line_comment] = STATE(1877), [sym_block_comment] = STATE(1877), - [ts_builtin_sym_end] = ACTIONS(4815), - [sym_identifier] = ACTIONS(4817), - [anon_sym_LF] = ACTIONS(4817), - [anon_sym_CR] = ACTIONS(4817), - [anon_sym_CR_LF] = ACTIONS(4817), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LBRACE] = ACTIONS(4817), - [anon_sym_const] = ACTIONS(4817), - [anon_sym_LPAREN] = ACTIONS(4817), - [anon_sym___global] = ACTIONS(4817), - [anon_sym_type] = ACTIONS(4817), - [anon_sym_fn] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4817), - [anon_sym_struct] = ACTIONS(4817), - [anon_sym_union] = ACTIONS(4817), - [anon_sym_pub] = ACTIONS(4817), - [anon_sym_mut] = ACTIONS(4817), - [anon_sym_enum] = ACTIONS(4817), - [anon_sym_interface] = ACTIONS(4817), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_go] = ACTIONS(4817), - [anon_sym_spawn] = ACTIONS(4817), - [anon_sym_json_DOTdecode] = ACTIONS(4817), - [anon_sym_LBRACK2] = ACTIONS(4817), - [anon_sym_TILDE] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_DASH] = ACTIONS(4817), - [sym_none] = ACTIONS(4817), - [sym_true] = ACTIONS(4817), - [sym_false] = ACTIONS(4817), - [sym_nil] = ACTIONS(4817), - [anon_sym_if] = ACTIONS(4817), - [anon_sym_DOLLARif] = ACTIONS(4817), - [anon_sym_match] = ACTIONS(4817), - [anon_sym_select] = ACTIONS(4817), - [anon_sym_lock] = ACTIONS(4817), - [anon_sym_rlock] = ACTIONS(4817), - [anon_sym_unsafe] = ACTIONS(4817), - [anon_sym_sql] = ACTIONS(4817), - [sym_int_literal] = ACTIONS(4817), - [sym_float_literal] = ACTIONS(4817), - [sym_rune_literal] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4817), - [anon_sym_DQUOTE] = ACTIONS(4817), - [anon_sym_c_SQUOTE] = ACTIONS(4817), - [anon_sym_c_DQUOTE] = ACTIONS(4817), - [anon_sym_r_SQUOTE] = ACTIONS(4817), - [anon_sym_r_DQUOTE] = ACTIONS(4817), - [sym_pseudo_compile_time_identifier] = ACTIONS(4817), - [anon_sym_shared] = ACTIONS(4817), - [anon_sym_map_LBRACK] = ACTIONS(4817), - [anon_sym_chan] = ACTIONS(4817), - [anon_sym_thread] = ACTIONS(4817), - [anon_sym_atomic] = ACTIONS(4817), - [anon_sym_assert] = ACTIONS(4817), - [anon_sym_defer] = ACTIONS(4817), - [anon_sym_goto] = ACTIONS(4817), - [anon_sym_break] = ACTIONS(4817), - [anon_sym_continue] = ACTIONS(4817), - [anon_sym_return] = ACTIONS(4817), - [anon_sym_DOLLARfor] = ACTIONS(4817), - [anon_sym_for] = ACTIONS(4817), - [anon_sym_POUND] = ACTIONS(4817), - [anon_sym_asm] = ACTIONS(4817), - [anon_sym_AT_LBRACK] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_const] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym___global] = ACTIONS(4409), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_fn] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_struct] = ACTIONS(4409), + [anon_sym_union] = ACTIONS(4409), + [anon_sym_pub] = ACTIONS(4409), + [anon_sym_mut] = ACTIONS(4409), + [anon_sym_enum] = ACTIONS(4409), + [anon_sym_interface] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_go] = ACTIONS(4409), + [anon_sym_spawn] = ACTIONS(4409), + [anon_sym_json_DOTdecode] = ACTIONS(4409), + [anon_sym_LBRACK2] = ACTIONS(4409), + [anon_sym_TILDE] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_LT_DASH] = ACTIONS(4409), + [sym_none] = ACTIONS(4409), + [sym_true] = ACTIONS(4409), + [sym_false] = ACTIONS(4409), + [sym_nil] = ACTIONS(4409), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_DOLLARif] = ACTIONS(4409), + [anon_sym_match] = ACTIONS(4409), + [anon_sym_select] = ACTIONS(4409), + [anon_sym_lock] = ACTIONS(4409), + [anon_sym_rlock] = ACTIONS(4409), + [anon_sym_unsafe] = ACTIONS(4409), + [anon_sym_sql] = ACTIONS(4409), + [sym_int_literal] = ACTIONS(4409), + [sym_float_literal] = ACTIONS(4409), + [sym_rune_literal] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4409), + [anon_sym_DQUOTE] = ACTIONS(4409), + [anon_sym_c_SQUOTE] = ACTIONS(4409), + [anon_sym_c_DQUOTE] = ACTIONS(4409), + [anon_sym_r_SQUOTE] = ACTIONS(4409), + [anon_sym_r_DQUOTE] = ACTIONS(4409), + [sym_pseudo_compile_time_identifier] = ACTIONS(4409), + [anon_sym_shared] = ACTIONS(4409), + [anon_sym_map_LBRACK] = ACTIONS(4409), + [anon_sym_chan] = ACTIONS(4409), + [anon_sym_thread] = ACTIONS(4409), + [anon_sym_atomic] = ACTIONS(4409), + [anon_sym_assert] = ACTIONS(4409), + [anon_sym_defer] = ACTIONS(4409), + [anon_sym_goto] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_DOLLARfor] = ACTIONS(4409), + [anon_sym_for] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(4409), + [anon_sym_asm] = ACTIONS(4409), + [anon_sym_AT_LBRACK] = ACTIONS(4409), }, [1878] = { [sym_line_comment] = STATE(1878), [sym_block_comment] = STATE(1878), - [ts_builtin_sym_end] = ACTIONS(4819), - [sym_identifier] = ACTIONS(4821), - [anon_sym_LF] = ACTIONS(4821), - [anon_sym_CR] = ACTIONS(4821), - [anon_sym_CR_LF] = ACTIONS(4821), + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_CR] = ACTIONS(3324), + [anon_sym_CR_LF] = ACTIONS(3324), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_const] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym___global] = ACTIONS(4821), - [anon_sym_type] = ACTIONS(4821), - [anon_sym_fn] = ACTIONS(4821), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [anon_sym_struct] = ACTIONS(4821), - [anon_sym_union] = ACTIONS(4821), - [anon_sym_pub] = ACTIONS(4821), - [anon_sym_mut] = ACTIONS(4821), - [anon_sym_enum] = ACTIONS(4821), - [anon_sym_interface] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_go] = ACTIONS(4821), - [anon_sym_spawn] = ACTIONS(4821), - [anon_sym_json_DOTdecode] = ACTIONS(4821), - [anon_sym_LBRACK2] = ACTIONS(4821), - [anon_sym_TILDE] = ACTIONS(4821), - [anon_sym_CARET] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_DASH] = ACTIONS(4821), - [sym_none] = ACTIONS(4821), - [sym_true] = ACTIONS(4821), - [sym_false] = ACTIONS(4821), - [sym_nil] = ACTIONS(4821), - [anon_sym_if] = ACTIONS(4821), - [anon_sym_DOLLARif] = ACTIONS(4821), - [anon_sym_match] = ACTIONS(4821), - [anon_sym_select] = ACTIONS(4821), - [anon_sym_lock] = ACTIONS(4821), - [anon_sym_rlock] = ACTIONS(4821), - [anon_sym_unsafe] = ACTIONS(4821), - [anon_sym_sql] = ACTIONS(4821), - [sym_int_literal] = ACTIONS(4821), - [sym_float_literal] = ACTIONS(4821), - [sym_rune_literal] = ACTIONS(4821), - [anon_sym_SQUOTE] = ACTIONS(4821), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_c_SQUOTE] = ACTIONS(4821), - [anon_sym_c_DQUOTE] = ACTIONS(4821), - [anon_sym_r_SQUOTE] = ACTIONS(4821), - [anon_sym_r_DQUOTE] = ACTIONS(4821), - [sym_pseudo_compile_time_identifier] = ACTIONS(4821), - [anon_sym_shared] = ACTIONS(4821), - [anon_sym_map_LBRACK] = ACTIONS(4821), - [anon_sym_chan] = ACTIONS(4821), - [anon_sym_thread] = ACTIONS(4821), - [anon_sym_atomic] = ACTIONS(4821), - [anon_sym_assert] = ACTIONS(4821), - [anon_sym_defer] = ACTIONS(4821), - [anon_sym_goto] = ACTIONS(4821), - [anon_sym_break] = ACTIONS(4821), - [anon_sym_continue] = ACTIONS(4821), - [anon_sym_return] = ACTIONS(4821), - [anon_sym_DOLLARfor] = ACTIONS(4821), - [anon_sym_for] = ACTIONS(4821), - [anon_sym_POUND] = ACTIONS(4821), - [anon_sym_asm] = ACTIONS(4821), - [anon_sym_AT_LBRACK] = ACTIONS(4821), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym___global] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_union] = ACTIONS(3324), + [anon_sym_pub] = ACTIONS(3324), + [anon_sym_mut] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_go] = ACTIONS(3324), + [anon_sym_spawn] = ACTIONS(3324), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_LT_DASH] = ACTIONS(3324), + [sym_none] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_nil] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_DOLLARif] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_select] = ACTIONS(3324), + [anon_sym_lock] = ACTIONS(3324), + [anon_sym_rlock] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3324), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_c_SQUOTE] = ACTIONS(3324), + [anon_sym_c_DQUOTE] = ACTIONS(3324), + [anon_sym_r_SQUOTE] = ACTIONS(3324), + [anon_sym_r_DQUOTE] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), + [anon_sym_shared] = ACTIONS(3324), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3324), + [anon_sym_thread] = ACTIONS(3324), + [anon_sym_atomic] = ACTIONS(3324), + [anon_sym_assert] = ACTIONS(3324), + [anon_sym_defer] = ACTIONS(3324), + [anon_sym_goto] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_DOLLARfor] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3324), + [anon_sym_asm] = ACTIONS(3324), + [anon_sym_AT_LBRACK] = ACTIONS(3324), }, [1879] = { [sym_line_comment] = STATE(1879), [sym_block_comment] = STATE(1879), - [ts_builtin_sym_end] = ACTIONS(4823), - [sym_identifier] = ACTIONS(4825), - [anon_sym_LF] = ACTIONS(4825), - [anon_sym_CR] = ACTIONS(4825), - [anon_sym_CR_LF] = ACTIONS(4825), + [ts_builtin_sym_end] = ACTIONS(4809), + [sym_identifier] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_CR] = ACTIONS(4811), + [anon_sym_CR_LF] = ACTIONS(4811), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4825), - [anon_sym_const] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4825), - [anon_sym___global] = ACTIONS(4825), - [anon_sym_type] = ACTIONS(4825), - [anon_sym_fn] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_struct] = ACTIONS(4825), - [anon_sym_union] = ACTIONS(4825), - [anon_sym_pub] = ACTIONS(4825), - [anon_sym_mut] = ACTIONS(4825), - [anon_sym_enum] = ACTIONS(4825), - [anon_sym_interface] = ACTIONS(4825), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_go] = ACTIONS(4825), - [anon_sym_spawn] = ACTIONS(4825), - [anon_sym_json_DOTdecode] = ACTIONS(4825), - [anon_sym_LBRACK2] = ACTIONS(4825), - [anon_sym_TILDE] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_DASH] = ACTIONS(4825), - [sym_none] = ACTIONS(4825), - [sym_true] = ACTIONS(4825), - [sym_false] = ACTIONS(4825), - [sym_nil] = ACTIONS(4825), - [anon_sym_if] = ACTIONS(4825), - [anon_sym_DOLLARif] = ACTIONS(4825), - [anon_sym_match] = ACTIONS(4825), - [anon_sym_select] = ACTIONS(4825), - [anon_sym_lock] = ACTIONS(4825), - [anon_sym_rlock] = ACTIONS(4825), - [anon_sym_unsafe] = ACTIONS(4825), - [anon_sym_sql] = ACTIONS(4825), - [sym_int_literal] = ACTIONS(4825), - [sym_float_literal] = ACTIONS(4825), - [sym_rune_literal] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DQUOTE] = ACTIONS(4825), - [anon_sym_c_SQUOTE] = ACTIONS(4825), - [anon_sym_c_DQUOTE] = ACTIONS(4825), - [anon_sym_r_SQUOTE] = ACTIONS(4825), - [anon_sym_r_DQUOTE] = ACTIONS(4825), - [sym_pseudo_compile_time_identifier] = ACTIONS(4825), - [anon_sym_shared] = ACTIONS(4825), - [anon_sym_map_LBRACK] = ACTIONS(4825), - [anon_sym_chan] = ACTIONS(4825), - [anon_sym_thread] = ACTIONS(4825), - [anon_sym_atomic] = ACTIONS(4825), - [anon_sym_assert] = ACTIONS(4825), - [anon_sym_defer] = ACTIONS(4825), - [anon_sym_goto] = ACTIONS(4825), - [anon_sym_break] = ACTIONS(4825), - [anon_sym_continue] = ACTIONS(4825), - [anon_sym_return] = ACTIONS(4825), - [anon_sym_DOLLARfor] = ACTIONS(4825), - [anon_sym_for] = ACTIONS(4825), - [anon_sym_POUND] = ACTIONS(4825), - [anon_sym_asm] = ACTIONS(4825), - [anon_sym_AT_LBRACK] = ACTIONS(4825), + [anon_sym_DOT] = ACTIONS(4811), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_const] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym___global] = ACTIONS(4811), + [anon_sym_type] = ACTIONS(4811), + [anon_sym_fn] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4811), + [anon_sym_DASH] = ACTIONS(4811), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_struct] = ACTIONS(4811), + [anon_sym_union] = ACTIONS(4811), + [anon_sym_pub] = ACTIONS(4811), + [anon_sym_mut] = ACTIONS(4811), + [anon_sym_enum] = ACTIONS(4811), + [anon_sym_interface] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4811), + [anon_sym_BANG] = ACTIONS(4811), + [anon_sym_go] = ACTIONS(4811), + [anon_sym_spawn] = ACTIONS(4811), + [anon_sym_json_DOTdecode] = ACTIONS(4811), + [anon_sym_LBRACK2] = ACTIONS(4811), + [anon_sym_TILDE] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + [anon_sym_LT_DASH] = ACTIONS(4811), + [sym_none] = ACTIONS(4811), + [sym_true] = ACTIONS(4811), + [sym_false] = ACTIONS(4811), + [sym_nil] = ACTIONS(4811), + [anon_sym_if] = ACTIONS(4811), + [anon_sym_DOLLARif] = ACTIONS(4811), + [anon_sym_match] = ACTIONS(4811), + [anon_sym_select] = ACTIONS(4811), + [anon_sym_lock] = ACTIONS(4811), + [anon_sym_rlock] = ACTIONS(4811), + [anon_sym_unsafe] = ACTIONS(4811), + [anon_sym_sql] = ACTIONS(4811), + [sym_int_literal] = ACTIONS(4811), + [sym_float_literal] = ACTIONS(4811), + [sym_rune_literal] = ACTIONS(4811), + [anon_sym_SQUOTE] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_c_SQUOTE] = ACTIONS(4811), + [anon_sym_c_DQUOTE] = ACTIONS(4811), + [anon_sym_r_SQUOTE] = ACTIONS(4811), + [anon_sym_r_DQUOTE] = ACTIONS(4811), + [sym_pseudo_compile_time_identifier] = ACTIONS(4811), + [anon_sym_shared] = ACTIONS(4811), + [anon_sym_map_LBRACK] = ACTIONS(4811), + [anon_sym_chan] = ACTIONS(4811), + [anon_sym_thread] = ACTIONS(4811), + [anon_sym_atomic] = ACTIONS(4811), + [anon_sym_assert] = ACTIONS(4811), + [anon_sym_defer] = ACTIONS(4811), + [anon_sym_goto] = ACTIONS(4811), + [anon_sym_break] = ACTIONS(4811), + [anon_sym_continue] = ACTIONS(4811), + [anon_sym_return] = ACTIONS(4811), + [anon_sym_DOLLARfor] = ACTIONS(4811), + [anon_sym_for] = ACTIONS(4811), + [anon_sym_POUND] = ACTIONS(4811), + [anon_sym_asm] = ACTIONS(4811), + [anon_sym_AT_LBRACK] = ACTIONS(4811), }, [1880] = { [sym_line_comment] = STATE(1880), [sym_block_comment] = STATE(1880), - [ts_builtin_sym_end] = ACTIONS(4827), - [sym_identifier] = ACTIONS(4829), - [anon_sym_LF] = ACTIONS(4829), - [anon_sym_CR] = ACTIONS(4829), - [anon_sym_CR_LF] = ACTIONS(4829), + [ts_builtin_sym_end] = ACTIONS(4813), + [sym_identifier] = ACTIONS(4815), + [anon_sym_LF] = ACTIONS(4815), + [anon_sym_CR] = ACTIONS(4815), + [anon_sym_CR_LF] = ACTIONS(4815), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4829), - [anon_sym_const] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym___global] = ACTIONS(4829), - [anon_sym_type] = ACTIONS(4829), - [anon_sym_fn] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_struct] = ACTIONS(4829), - [anon_sym_union] = ACTIONS(4829), - [anon_sym_pub] = ACTIONS(4829), - [anon_sym_mut] = ACTIONS(4829), - [anon_sym_enum] = ACTIONS(4829), - [anon_sym_interface] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4829), - [anon_sym_go] = ACTIONS(4829), - [anon_sym_spawn] = ACTIONS(4829), - [anon_sym_json_DOTdecode] = ACTIONS(4829), - [anon_sym_LBRACK2] = ACTIONS(4829), - [anon_sym_TILDE] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_LT_DASH] = ACTIONS(4829), - [sym_none] = ACTIONS(4829), - [sym_true] = ACTIONS(4829), - [sym_false] = ACTIONS(4829), - [sym_nil] = ACTIONS(4829), - [anon_sym_if] = ACTIONS(4829), - [anon_sym_DOLLARif] = ACTIONS(4829), - [anon_sym_match] = ACTIONS(4829), - [anon_sym_select] = ACTIONS(4829), - [anon_sym_lock] = ACTIONS(4829), - [anon_sym_rlock] = ACTIONS(4829), - [anon_sym_unsafe] = ACTIONS(4829), - [anon_sym_sql] = ACTIONS(4829), - [sym_int_literal] = ACTIONS(4829), - [sym_float_literal] = ACTIONS(4829), - [sym_rune_literal] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4829), - [anon_sym_c_SQUOTE] = ACTIONS(4829), - [anon_sym_c_DQUOTE] = ACTIONS(4829), - [anon_sym_r_SQUOTE] = ACTIONS(4829), - [anon_sym_r_DQUOTE] = ACTIONS(4829), - [sym_pseudo_compile_time_identifier] = ACTIONS(4829), - [anon_sym_shared] = ACTIONS(4829), - [anon_sym_map_LBRACK] = ACTIONS(4829), - [anon_sym_chan] = ACTIONS(4829), - [anon_sym_thread] = ACTIONS(4829), - [anon_sym_atomic] = ACTIONS(4829), - [anon_sym_assert] = ACTIONS(4829), - [anon_sym_defer] = ACTIONS(4829), - [anon_sym_goto] = ACTIONS(4829), - [anon_sym_break] = ACTIONS(4829), - [anon_sym_continue] = ACTIONS(4829), - [anon_sym_return] = ACTIONS(4829), - [anon_sym_DOLLARfor] = ACTIONS(4829), - [anon_sym_for] = ACTIONS(4829), - [anon_sym_POUND] = ACTIONS(4829), - [anon_sym_asm] = ACTIONS(4829), - [anon_sym_AT_LBRACK] = ACTIONS(4829), + [anon_sym_DOT] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_const] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym___global] = ACTIONS(4815), + [anon_sym_type] = ACTIONS(4815), + [anon_sym_fn] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4815), + [anon_sym_struct] = ACTIONS(4815), + [anon_sym_union] = ACTIONS(4815), + [anon_sym_pub] = ACTIONS(4815), + [anon_sym_mut] = ACTIONS(4815), + [anon_sym_enum] = ACTIONS(4815), + [anon_sym_interface] = ACTIONS(4815), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_BANG] = ACTIONS(4815), + [anon_sym_go] = ACTIONS(4815), + [anon_sym_spawn] = ACTIONS(4815), + [anon_sym_json_DOTdecode] = ACTIONS(4815), + [anon_sym_LBRACK2] = ACTIONS(4815), + [anon_sym_TILDE] = ACTIONS(4815), + [anon_sym_CARET] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4815), + [anon_sym_LT_DASH] = ACTIONS(4815), + [sym_none] = ACTIONS(4815), + [sym_true] = ACTIONS(4815), + [sym_false] = ACTIONS(4815), + [sym_nil] = ACTIONS(4815), + [anon_sym_if] = ACTIONS(4815), + [anon_sym_DOLLARif] = ACTIONS(4815), + [anon_sym_match] = ACTIONS(4815), + [anon_sym_select] = ACTIONS(4815), + [anon_sym_lock] = ACTIONS(4815), + [anon_sym_rlock] = ACTIONS(4815), + [anon_sym_unsafe] = ACTIONS(4815), + [anon_sym_sql] = ACTIONS(4815), + [sym_int_literal] = ACTIONS(4815), + [sym_float_literal] = ACTIONS(4815), + [sym_rune_literal] = ACTIONS(4815), + [anon_sym_SQUOTE] = ACTIONS(4815), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_c_SQUOTE] = ACTIONS(4815), + [anon_sym_c_DQUOTE] = ACTIONS(4815), + [anon_sym_r_SQUOTE] = ACTIONS(4815), + [anon_sym_r_DQUOTE] = ACTIONS(4815), + [sym_pseudo_compile_time_identifier] = ACTIONS(4815), + [anon_sym_shared] = ACTIONS(4815), + [anon_sym_map_LBRACK] = ACTIONS(4815), + [anon_sym_chan] = ACTIONS(4815), + [anon_sym_thread] = ACTIONS(4815), + [anon_sym_atomic] = ACTIONS(4815), + [anon_sym_assert] = ACTIONS(4815), + [anon_sym_defer] = ACTIONS(4815), + [anon_sym_goto] = ACTIONS(4815), + [anon_sym_break] = ACTIONS(4815), + [anon_sym_continue] = ACTIONS(4815), + [anon_sym_return] = ACTIONS(4815), + [anon_sym_DOLLARfor] = ACTIONS(4815), + [anon_sym_for] = ACTIONS(4815), + [anon_sym_POUND] = ACTIONS(4815), + [anon_sym_asm] = ACTIONS(4815), + [anon_sym_AT_LBRACK] = ACTIONS(4815), }, [1881] = { [sym_line_comment] = STATE(1881), [sym_block_comment] = STATE(1881), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LF] = ACTIONS(2187), + [anon_sym_CR] = ACTIONS(2187), + [anon_sym_CR_LF] = ACTIONS(2187), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym___global] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_go] = ACTIONS(2187), + [anon_sym_spawn] = ACTIONS(2187), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_LT_DASH] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_nil] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_DOLLARif] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_select] = ACTIONS(2187), + [anon_sym_lock] = ACTIONS(2187), + [anon_sym_rlock] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_sql] = ACTIONS(2187), + [sym_int_literal] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2187), + [anon_sym_shared] = ACTIONS(2187), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2187), + [anon_sym_thread] = ACTIONS(2187), + [anon_sym_atomic] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_goto] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_DOLLARfor] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_asm] = ACTIONS(2187), + [anon_sym_AT_LBRACK] = ACTIONS(2187), }, [1882] = { [sym_line_comment] = STATE(1882), [sym_block_comment] = STATE(1882), - [ts_builtin_sym_end] = ACTIONS(4831), - [sym_identifier] = ACTIONS(4833), - [anon_sym_LF] = ACTIONS(4833), - [anon_sym_CR] = ACTIONS(4833), - [anon_sym_CR_LF] = ACTIONS(4833), + [ts_builtin_sym_end] = ACTIONS(4817), + [sym_identifier] = ACTIONS(4819), + [anon_sym_LF] = ACTIONS(4819), + [anon_sym_CR] = ACTIONS(4819), + [anon_sym_CR_LF] = ACTIONS(4819), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(4833), - [anon_sym_const] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4833), - [anon_sym___global] = ACTIONS(4833), - [anon_sym_type] = ACTIONS(4833), - [anon_sym_fn] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4833), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_struct] = ACTIONS(4833), - [anon_sym_union] = ACTIONS(4833), - [anon_sym_pub] = ACTIONS(4833), - [anon_sym_mut] = ACTIONS(4833), - [anon_sym_enum] = ACTIONS(4833), - [anon_sym_interface] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(4833), - [anon_sym_go] = ACTIONS(4833), - [anon_sym_spawn] = ACTIONS(4833), - [anon_sym_json_DOTdecode] = ACTIONS(4833), - [anon_sym_LBRACK2] = ACTIONS(4833), - [anon_sym_TILDE] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_AMP] = ACTIONS(4833), - [anon_sym_LT_DASH] = ACTIONS(4833), - [sym_none] = ACTIONS(4833), - [sym_true] = ACTIONS(4833), - [sym_false] = ACTIONS(4833), - [sym_nil] = ACTIONS(4833), - [anon_sym_if] = ACTIONS(4833), - [anon_sym_DOLLARif] = ACTIONS(4833), - [anon_sym_match] = ACTIONS(4833), - [anon_sym_select] = ACTIONS(4833), - [anon_sym_lock] = ACTIONS(4833), - [anon_sym_rlock] = ACTIONS(4833), - [anon_sym_unsafe] = ACTIONS(4833), - [anon_sym_sql] = ACTIONS(4833), - [sym_int_literal] = ACTIONS(4833), - [sym_float_literal] = ACTIONS(4833), - [sym_rune_literal] = ACTIONS(4833), - [anon_sym_SQUOTE] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(4833), - [anon_sym_c_SQUOTE] = ACTIONS(4833), - [anon_sym_c_DQUOTE] = ACTIONS(4833), - [anon_sym_r_SQUOTE] = ACTIONS(4833), - [anon_sym_r_DQUOTE] = ACTIONS(4833), - [sym_pseudo_compile_time_identifier] = ACTIONS(4833), - [anon_sym_shared] = ACTIONS(4833), - [anon_sym_map_LBRACK] = ACTIONS(4833), - [anon_sym_chan] = ACTIONS(4833), - [anon_sym_thread] = ACTIONS(4833), - [anon_sym_atomic] = ACTIONS(4833), - [anon_sym_assert] = ACTIONS(4833), - [anon_sym_defer] = ACTIONS(4833), - [anon_sym_goto] = ACTIONS(4833), - [anon_sym_break] = ACTIONS(4833), - [anon_sym_continue] = ACTIONS(4833), - [anon_sym_return] = ACTIONS(4833), - [anon_sym_DOLLARfor] = ACTIONS(4833), - [anon_sym_for] = ACTIONS(4833), - [anon_sym_POUND] = ACTIONS(4833), - [anon_sym_asm] = ACTIONS(4833), - [anon_sym_AT_LBRACK] = ACTIONS(4833), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4819), + [anon_sym___global] = ACTIONS(4819), + [anon_sym_type] = ACTIONS(4819), + [anon_sym_fn] = ACTIONS(4819), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_struct] = ACTIONS(4819), + [anon_sym_union] = ACTIONS(4819), + [anon_sym_pub] = ACTIONS(4819), + [anon_sym_mut] = ACTIONS(4819), + [anon_sym_enum] = ACTIONS(4819), + [anon_sym_interface] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_BANG] = ACTIONS(4819), + [anon_sym_go] = ACTIONS(4819), + [anon_sym_spawn] = ACTIONS(4819), + [anon_sym_json_DOTdecode] = ACTIONS(4819), + [anon_sym_LBRACK2] = ACTIONS(4819), + [anon_sym_TILDE] = ACTIONS(4819), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), + [anon_sym_LT_DASH] = ACTIONS(4819), + [sym_none] = ACTIONS(4819), + [sym_true] = ACTIONS(4819), + [sym_false] = ACTIONS(4819), + [sym_nil] = ACTIONS(4819), + [anon_sym_if] = ACTIONS(4819), + [anon_sym_DOLLARif] = ACTIONS(4819), + [anon_sym_match] = ACTIONS(4819), + [anon_sym_select] = ACTIONS(4819), + [anon_sym_lock] = ACTIONS(4819), + [anon_sym_rlock] = ACTIONS(4819), + [anon_sym_unsafe] = ACTIONS(4819), + [anon_sym_sql] = ACTIONS(4819), + [sym_int_literal] = ACTIONS(4819), + [sym_float_literal] = ACTIONS(4819), + [sym_rune_literal] = ACTIONS(4819), + [anon_sym_SQUOTE] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(4819), + [anon_sym_c_SQUOTE] = ACTIONS(4819), + [anon_sym_c_DQUOTE] = ACTIONS(4819), + [anon_sym_r_SQUOTE] = ACTIONS(4819), + [anon_sym_r_DQUOTE] = ACTIONS(4819), + [sym_pseudo_compile_time_identifier] = ACTIONS(4819), + [anon_sym_shared] = ACTIONS(4819), + [anon_sym_map_LBRACK] = ACTIONS(4819), + [anon_sym_chan] = ACTIONS(4819), + [anon_sym_thread] = ACTIONS(4819), + [anon_sym_atomic] = ACTIONS(4819), + [anon_sym_assert] = ACTIONS(4819), + [anon_sym_defer] = ACTIONS(4819), + [anon_sym_goto] = ACTIONS(4819), + [anon_sym_break] = ACTIONS(4819), + [anon_sym_continue] = ACTIONS(4819), + [anon_sym_return] = ACTIONS(4819), + [anon_sym_DOLLARfor] = ACTIONS(4819), + [anon_sym_for] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(4819), + [anon_sym_asm] = ACTIONS(4819), + [anon_sym_AT_LBRACK] = ACTIONS(4819), }, [1883] = { [sym_line_comment] = STATE(1883), [sym_block_comment] = STATE(1883), - [ts_builtin_sym_end] = ACTIONS(3302), - [sym_identifier] = ACTIONS(3304), - [anon_sym_LF] = ACTIONS(3304), - [anon_sym_CR] = ACTIONS(3304), - [anon_sym_CR_LF] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_CR] = ACTIONS(3292), + [anon_sym_CR_LF] = ACTIONS(3292), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym___global] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_fn] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [anon_sym_pub] = ACTIONS(3304), - [anon_sym_mut] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_QMARK] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_go] = ACTIONS(3304), - [anon_sym_spawn] = ACTIONS(3304), - [anon_sym_json_DOTdecode] = ACTIONS(3304), - [anon_sym_LBRACK2] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_CARET] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_nil] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_DOLLARif] = ACTIONS(3304), - [anon_sym_match] = ACTIONS(3304), - [anon_sym_select] = ACTIONS(3304), - [anon_sym_lock] = ACTIONS(3304), - [anon_sym_rlock] = ACTIONS(3304), - [anon_sym_unsafe] = ACTIONS(3304), - [anon_sym_sql] = ACTIONS(3304), - [sym_int_literal] = ACTIONS(3304), - [sym_float_literal] = ACTIONS(3304), - [sym_rune_literal] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_c_SQUOTE] = ACTIONS(3304), - [anon_sym_c_DQUOTE] = ACTIONS(3304), - [anon_sym_r_SQUOTE] = ACTIONS(3304), - [anon_sym_r_DQUOTE] = ACTIONS(3304), - [sym_pseudo_compile_time_identifier] = ACTIONS(3304), - [anon_sym_shared] = ACTIONS(3304), - [anon_sym_map_LBRACK] = ACTIONS(3304), - [anon_sym_chan] = ACTIONS(3304), - [anon_sym_thread] = ACTIONS(3304), - [anon_sym_atomic] = ACTIONS(3304), - [anon_sym_assert] = ACTIONS(3304), - [anon_sym_defer] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_DOLLARfor] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - [anon_sym_AT_LBRACK] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym___global] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_union] = ACTIONS(3292), + [anon_sym_pub] = ACTIONS(3292), + [anon_sym_mut] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3292), + [anon_sym_spawn] = ACTIONS(3292), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [sym_none] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_nil] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_DOLLARif] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_select] = ACTIONS(3292), + [anon_sym_lock] = ACTIONS(3292), + [anon_sym_rlock] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_sql] = ACTIONS(3292), + [sym_int_literal] = ACTIONS(3292), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_c_SQUOTE] = ACTIONS(3292), + [anon_sym_c_DQUOTE] = ACTIONS(3292), + [anon_sym_r_SQUOTE] = ACTIONS(3292), + [anon_sym_r_DQUOTE] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3292), + [anon_sym_shared] = ACTIONS(3292), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3292), + [anon_sym_thread] = ACTIONS(3292), + [anon_sym_atomic] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_defer] = ACTIONS(3292), + [anon_sym_goto] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_DOLLARfor] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_POUND] = ACTIONS(3292), + [anon_sym_asm] = ACTIONS(3292), + [anon_sym_AT_LBRACK] = ACTIONS(3292), }, [1884] = { [sym_line_comment] = STATE(1884), [sym_block_comment] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(4835), - [sym_identifier] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4837), - [anon_sym_CR] = ACTIONS(4837), - [anon_sym_CR_LF] = ACTIONS(4837), + [ts_builtin_sym_end] = ACTIONS(4821), + [sym_identifier] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_CR] = ACTIONS(4823), + [anon_sym_CR_LF] = ACTIONS(4823), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4837), - [anon_sym_const] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4837), - [anon_sym___global] = ACTIONS(4837), - [anon_sym_type] = ACTIONS(4837), - [anon_sym_fn] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_struct] = ACTIONS(4837), - [anon_sym_union] = ACTIONS(4837), - [anon_sym_pub] = ACTIONS(4837), - [anon_sym_mut] = ACTIONS(4837), - [anon_sym_enum] = ACTIONS(4837), - [anon_sym_interface] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_go] = ACTIONS(4837), - [anon_sym_spawn] = ACTIONS(4837), - [anon_sym_json_DOTdecode] = ACTIONS(4837), - [anon_sym_LBRACK2] = ACTIONS(4837), - [anon_sym_TILDE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_DASH] = ACTIONS(4837), - [sym_none] = ACTIONS(4837), - [sym_true] = ACTIONS(4837), - [sym_false] = ACTIONS(4837), - [sym_nil] = ACTIONS(4837), - [anon_sym_if] = ACTIONS(4837), - [anon_sym_DOLLARif] = ACTIONS(4837), - [anon_sym_match] = ACTIONS(4837), - [anon_sym_select] = ACTIONS(4837), - [anon_sym_lock] = ACTIONS(4837), - [anon_sym_rlock] = ACTIONS(4837), - [anon_sym_unsafe] = ACTIONS(4837), - [anon_sym_sql] = ACTIONS(4837), - [sym_int_literal] = ACTIONS(4837), - [sym_float_literal] = ACTIONS(4837), - [sym_rune_literal] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_c_SQUOTE] = ACTIONS(4837), - [anon_sym_c_DQUOTE] = ACTIONS(4837), - [anon_sym_r_SQUOTE] = ACTIONS(4837), - [anon_sym_r_DQUOTE] = ACTIONS(4837), - [sym_pseudo_compile_time_identifier] = ACTIONS(4837), - [anon_sym_shared] = ACTIONS(4837), - [anon_sym_map_LBRACK] = ACTIONS(4837), - [anon_sym_chan] = ACTIONS(4837), - [anon_sym_thread] = ACTIONS(4837), - [anon_sym_atomic] = ACTIONS(4837), - [anon_sym_assert] = ACTIONS(4837), - [anon_sym_defer] = ACTIONS(4837), - [anon_sym_goto] = ACTIONS(4837), - [anon_sym_break] = ACTIONS(4837), - [anon_sym_continue] = ACTIONS(4837), - [anon_sym_return] = ACTIONS(4837), - [anon_sym_DOLLARfor] = ACTIONS(4837), - [anon_sym_for] = ACTIONS(4837), - [anon_sym_POUND] = ACTIONS(4837), - [anon_sym_asm] = ACTIONS(4837), - [anon_sym_AT_LBRACK] = ACTIONS(4837), + [anon_sym_DOT] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(4823), + [anon_sym_const] = ACTIONS(4823), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym___global] = ACTIONS(4823), + [anon_sym_type] = ACTIONS(4823), + [anon_sym_fn] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(4823), + [anon_sym_STAR] = ACTIONS(4823), + [anon_sym_struct] = ACTIONS(4823), + [anon_sym_union] = ACTIONS(4823), + [anon_sym_pub] = ACTIONS(4823), + [anon_sym_mut] = ACTIONS(4823), + [anon_sym_enum] = ACTIONS(4823), + [anon_sym_interface] = ACTIONS(4823), + [anon_sym_QMARK] = ACTIONS(4823), + [anon_sym_BANG] = ACTIONS(4823), + [anon_sym_go] = ACTIONS(4823), + [anon_sym_spawn] = ACTIONS(4823), + [anon_sym_json_DOTdecode] = ACTIONS(4823), + [anon_sym_LBRACK2] = ACTIONS(4823), + [anon_sym_TILDE] = ACTIONS(4823), + [anon_sym_CARET] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + [anon_sym_LT_DASH] = ACTIONS(4823), + [sym_none] = ACTIONS(4823), + [sym_true] = ACTIONS(4823), + [sym_false] = ACTIONS(4823), + [sym_nil] = ACTIONS(4823), + [anon_sym_if] = ACTIONS(4823), + [anon_sym_DOLLARif] = ACTIONS(4823), + [anon_sym_match] = ACTIONS(4823), + [anon_sym_select] = ACTIONS(4823), + [anon_sym_lock] = ACTIONS(4823), + [anon_sym_rlock] = ACTIONS(4823), + [anon_sym_unsafe] = ACTIONS(4823), + [anon_sym_sql] = ACTIONS(4823), + [sym_int_literal] = ACTIONS(4823), + [sym_float_literal] = ACTIONS(4823), + [sym_rune_literal] = ACTIONS(4823), + [anon_sym_SQUOTE] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_c_SQUOTE] = ACTIONS(4823), + [anon_sym_c_DQUOTE] = ACTIONS(4823), + [anon_sym_r_SQUOTE] = ACTIONS(4823), + [anon_sym_r_DQUOTE] = ACTIONS(4823), + [sym_pseudo_compile_time_identifier] = ACTIONS(4823), + [anon_sym_shared] = ACTIONS(4823), + [anon_sym_map_LBRACK] = ACTIONS(4823), + [anon_sym_chan] = ACTIONS(4823), + [anon_sym_thread] = ACTIONS(4823), + [anon_sym_atomic] = ACTIONS(4823), + [anon_sym_assert] = ACTIONS(4823), + [anon_sym_defer] = ACTIONS(4823), + [anon_sym_goto] = ACTIONS(4823), + [anon_sym_break] = ACTIONS(4823), + [anon_sym_continue] = ACTIONS(4823), + [anon_sym_return] = ACTIONS(4823), + [anon_sym_DOLLARfor] = ACTIONS(4823), + [anon_sym_for] = ACTIONS(4823), + [anon_sym_POUND] = ACTIONS(4823), + [anon_sym_asm] = ACTIONS(4823), + [anon_sym_AT_LBRACK] = ACTIONS(4823), }, [1885] = { [sym_line_comment] = STATE(1885), [sym_block_comment] = STATE(1885), - [ts_builtin_sym_end] = ACTIONS(4839), - [sym_identifier] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4841), - [anon_sym_CR] = ACTIONS(4841), - [anon_sym_CR_LF] = ACTIONS(4841), + [ts_builtin_sym_end] = ACTIONS(4825), + [sym_identifier] = ACTIONS(4827), + [anon_sym_LF] = ACTIONS(4827), + [anon_sym_CR] = ACTIONS(4827), + [anon_sym_CR_LF] = ACTIONS(4827), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_LBRACE] = ACTIONS(4841), - [anon_sym_const] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4841), - [anon_sym___global] = ACTIONS(4841), - [anon_sym_type] = ACTIONS(4841), - [anon_sym_fn] = ACTIONS(4841), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_struct] = ACTIONS(4841), - [anon_sym_union] = ACTIONS(4841), - [anon_sym_pub] = ACTIONS(4841), - [anon_sym_mut] = ACTIONS(4841), - [anon_sym_enum] = ACTIONS(4841), - [anon_sym_interface] = ACTIONS(4841), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_go] = ACTIONS(4841), - [anon_sym_spawn] = ACTIONS(4841), - [anon_sym_json_DOTdecode] = ACTIONS(4841), - [anon_sym_LBRACK2] = ACTIONS(4841), - [anon_sym_TILDE] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_DASH] = ACTIONS(4841), - [sym_none] = ACTIONS(4841), - [sym_true] = ACTIONS(4841), - [sym_false] = ACTIONS(4841), - [sym_nil] = ACTIONS(4841), - [anon_sym_if] = ACTIONS(4841), - [anon_sym_DOLLARif] = ACTIONS(4841), - [anon_sym_match] = ACTIONS(4841), - [anon_sym_select] = ACTIONS(4841), - [anon_sym_lock] = ACTIONS(4841), - [anon_sym_rlock] = ACTIONS(4841), - [anon_sym_unsafe] = ACTIONS(4841), - [anon_sym_sql] = ACTIONS(4841), - [sym_int_literal] = ACTIONS(4841), - [sym_float_literal] = ACTIONS(4841), - [sym_rune_literal] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_c_SQUOTE] = ACTIONS(4841), - [anon_sym_c_DQUOTE] = ACTIONS(4841), - [anon_sym_r_SQUOTE] = ACTIONS(4841), - [anon_sym_r_DQUOTE] = ACTIONS(4841), - [sym_pseudo_compile_time_identifier] = ACTIONS(4841), - [anon_sym_shared] = ACTIONS(4841), - [anon_sym_map_LBRACK] = ACTIONS(4841), - [anon_sym_chan] = ACTIONS(4841), - [anon_sym_thread] = ACTIONS(4841), - [anon_sym_atomic] = ACTIONS(4841), - [anon_sym_assert] = ACTIONS(4841), - [anon_sym_defer] = ACTIONS(4841), - [anon_sym_goto] = ACTIONS(4841), - [anon_sym_break] = ACTIONS(4841), - [anon_sym_continue] = ACTIONS(4841), - [anon_sym_return] = ACTIONS(4841), - [anon_sym_DOLLARfor] = ACTIONS(4841), - [anon_sym_for] = ACTIONS(4841), - [anon_sym_POUND] = ACTIONS(4841), - [anon_sym_asm] = ACTIONS(4841), - [anon_sym_AT_LBRACK] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_const] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym___global] = ACTIONS(4827), + [anon_sym_type] = ACTIONS(4827), + [anon_sym_fn] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(4827), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_struct] = ACTIONS(4827), + [anon_sym_union] = ACTIONS(4827), + [anon_sym_pub] = ACTIONS(4827), + [anon_sym_mut] = ACTIONS(4827), + [anon_sym_enum] = ACTIONS(4827), + [anon_sym_interface] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4827), + [anon_sym_BANG] = ACTIONS(4827), + [anon_sym_go] = ACTIONS(4827), + [anon_sym_spawn] = ACTIONS(4827), + [anon_sym_json_DOTdecode] = ACTIONS(4827), + [anon_sym_LBRACK2] = ACTIONS(4827), + [anon_sym_TILDE] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_AMP] = ACTIONS(4827), + [anon_sym_LT_DASH] = ACTIONS(4827), + [sym_none] = ACTIONS(4827), + [sym_true] = ACTIONS(4827), + [sym_false] = ACTIONS(4827), + [sym_nil] = ACTIONS(4827), + [anon_sym_if] = ACTIONS(4827), + [anon_sym_DOLLARif] = ACTIONS(4827), + [anon_sym_match] = ACTIONS(4827), + [anon_sym_select] = ACTIONS(4827), + [anon_sym_lock] = ACTIONS(4827), + [anon_sym_rlock] = ACTIONS(4827), + [anon_sym_unsafe] = ACTIONS(4827), + [anon_sym_sql] = ACTIONS(4827), + [sym_int_literal] = ACTIONS(4827), + [sym_float_literal] = ACTIONS(4827), + [sym_rune_literal] = ACTIONS(4827), + [anon_sym_SQUOTE] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_c_SQUOTE] = ACTIONS(4827), + [anon_sym_c_DQUOTE] = ACTIONS(4827), + [anon_sym_r_SQUOTE] = ACTIONS(4827), + [anon_sym_r_DQUOTE] = ACTIONS(4827), + [sym_pseudo_compile_time_identifier] = ACTIONS(4827), + [anon_sym_shared] = ACTIONS(4827), + [anon_sym_map_LBRACK] = ACTIONS(4827), + [anon_sym_chan] = ACTIONS(4827), + [anon_sym_thread] = ACTIONS(4827), + [anon_sym_atomic] = ACTIONS(4827), + [anon_sym_assert] = ACTIONS(4827), + [anon_sym_defer] = ACTIONS(4827), + [anon_sym_goto] = ACTIONS(4827), + [anon_sym_break] = ACTIONS(4827), + [anon_sym_continue] = ACTIONS(4827), + [anon_sym_return] = ACTIONS(4827), + [anon_sym_DOLLARfor] = ACTIONS(4827), + [anon_sym_for] = ACTIONS(4827), + [anon_sym_POUND] = ACTIONS(4827), + [anon_sym_asm] = ACTIONS(4827), + [anon_sym_AT_LBRACK] = ACTIONS(4827), }, [1886] = { [sym_line_comment] = STATE(1886), [sym_block_comment] = STATE(1886), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(853), - [anon_sym_AMP_CARET] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(4829), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_CR] = ACTIONS(4831), + [anon_sym_CR_LF] = ACTIONS(4831), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(4831), + [anon_sym_const] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym___global] = ACTIONS(4831), + [anon_sym_type] = ACTIONS(4831), + [anon_sym_fn] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4831), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_struct] = ACTIONS(4831), + [anon_sym_union] = ACTIONS(4831), + [anon_sym_pub] = ACTIONS(4831), + [anon_sym_mut] = ACTIONS(4831), + [anon_sym_enum] = ACTIONS(4831), + [anon_sym_interface] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4831), + [anon_sym_BANG] = ACTIONS(4831), + [anon_sym_go] = ACTIONS(4831), + [anon_sym_spawn] = ACTIONS(4831), + [anon_sym_json_DOTdecode] = ACTIONS(4831), + [anon_sym_LBRACK2] = ACTIONS(4831), + [anon_sym_TILDE] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_AMP] = ACTIONS(4831), + [anon_sym_LT_DASH] = ACTIONS(4831), + [sym_none] = ACTIONS(4831), + [sym_true] = ACTIONS(4831), + [sym_false] = ACTIONS(4831), + [sym_nil] = ACTIONS(4831), + [anon_sym_if] = ACTIONS(4831), + [anon_sym_DOLLARif] = ACTIONS(4831), + [anon_sym_match] = ACTIONS(4831), + [anon_sym_select] = ACTIONS(4831), + [anon_sym_lock] = ACTIONS(4831), + [anon_sym_rlock] = ACTIONS(4831), + [anon_sym_unsafe] = ACTIONS(4831), + [anon_sym_sql] = ACTIONS(4831), + [sym_int_literal] = ACTIONS(4831), + [sym_float_literal] = ACTIONS(4831), + [sym_rune_literal] = ACTIONS(4831), + [anon_sym_SQUOTE] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(4831), + [anon_sym_c_SQUOTE] = ACTIONS(4831), + [anon_sym_c_DQUOTE] = ACTIONS(4831), + [anon_sym_r_SQUOTE] = ACTIONS(4831), + [anon_sym_r_DQUOTE] = ACTIONS(4831), + [sym_pseudo_compile_time_identifier] = ACTIONS(4831), + [anon_sym_shared] = ACTIONS(4831), + [anon_sym_map_LBRACK] = ACTIONS(4831), + [anon_sym_chan] = ACTIONS(4831), + [anon_sym_thread] = ACTIONS(4831), + [anon_sym_atomic] = ACTIONS(4831), + [anon_sym_assert] = ACTIONS(4831), + [anon_sym_defer] = ACTIONS(4831), + [anon_sym_goto] = ACTIONS(4831), + [anon_sym_break] = ACTIONS(4831), + [anon_sym_continue] = ACTIONS(4831), + [anon_sym_return] = ACTIONS(4831), + [anon_sym_DOLLARfor] = ACTIONS(4831), + [anon_sym_for] = ACTIONS(4831), + [anon_sym_POUND] = ACTIONS(4831), + [anon_sym_asm] = ACTIONS(4831), + [anon_sym_AT_LBRACK] = ACTIONS(4831), }, [1887] = { [sym_line_comment] = STATE(1887), [sym_block_comment] = STATE(1887), + [ts_builtin_sym_end] = ACTIONS(4833), + [sym_identifier] = ACTIONS(4835), + [anon_sym_LF] = ACTIONS(4835), + [anon_sym_CR] = ACTIONS(4835), + [anon_sym_CR_LF] = ACTIONS(4835), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(4835), + [anon_sym_const] = ACTIONS(4835), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym___global] = ACTIONS(4835), + [anon_sym_type] = ACTIONS(4835), + [anon_sym_fn] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4835), + [anon_sym_DASH] = ACTIONS(4835), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_struct] = ACTIONS(4835), + [anon_sym_union] = ACTIONS(4835), + [anon_sym_pub] = ACTIONS(4835), + [anon_sym_mut] = ACTIONS(4835), + [anon_sym_enum] = ACTIONS(4835), + [anon_sym_interface] = ACTIONS(4835), + [anon_sym_QMARK] = ACTIONS(4835), + [anon_sym_BANG] = ACTIONS(4835), + [anon_sym_go] = ACTIONS(4835), + [anon_sym_spawn] = ACTIONS(4835), + [anon_sym_json_DOTdecode] = ACTIONS(4835), + [anon_sym_LBRACK2] = ACTIONS(4835), + [anon_sym_TILDE] = ACTIONS(4835), + [anon_sym_CARET] = ACTIONS(4835), + [anon_sym_AMP] = ACTIONS(4835), + [anon_sym_LT_DASH] = ACTIONS(4835), + [sym_none] = ACTIONS(4835), + [sym_true] = ACTIONS(4835), + [sym_false] = ACTIONS(4835), + [sym_nil] = ACTIONS(4835), + [anon_sym_if] = ACTIONS(4835), + [anon_sym_DOLLARif] = ACTIONS(4835), + [anon_sym_match] = ACTIONS(4835), + [anon_sym_select] = ACTIONS(4835), + [anon_sym_lock] = ACTIONS(4835), + [anon_sym_rlock] = ACTIONS(4835), + [anon_sym_unsafe] = ACTIONS(4835), + [anon_sym_sql] = ACTIONS(4835), + [sym_int_literal] = ACTIONS(4835), + [sym_float_literal] = ACTIONS(4835), + [sym_rune_literal] = ACTIONS(4835), + [anon_sym_SQUOTE] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(4835), + [anon_sym_c_SQUOTE] = ACTIONS(4835), + [anon_sym_c_DQUOTE] = ACTIONS(4835), + [anon_sym_r_SQUOTE] = ACTIONS(4835), + [anon_sym_r_DQUOTE] = ACTIONS(4835), + [sym_pseudo_compile_time_identifier] = ACTIONS(4835), + [anon_sym_shared] = ACTIONS(4835), + [anon_sym_map_LBRACK] = ACTIONS(4835), + [anon_sym_chan] = ACTIONS(4835), + [anon_sym_thread] = ACTIONS(4835), + [anon_sym_atomic] = ACTIONS(4835), + [anon_sym_assert] = ACTIONS(4835), + [anon_sym_defer] = ACTIONS(4835), + [anon_sym_goto] = ACTIONS(4835), + [anon_sym_break] = ACTIONS(4835), + [anon_sym_continue] = ACTIONS(4835), + [anon_sym_return] = ACTIONS(4835), + [anon_sym_DOLLARfor] = ACTIONS(4835), + [anon_sym_for] = ACTIONS(4835), + [anon_sym_POUND] = ACTIONS(4835), + [anon_sym_asm] = ACTIONS(4835), + [anon_sym_AT_LBRACK] = ACTIONS(4835), + }, + [1888] = { + [sym_line_comment] = STATE(1888), + [sym_block_comment] = STATE(1888), + [ts_builtin_sym_end] = ACTIONS(4837), + [sym_identifier] = ACTIONS(4839), + [anon_sym_LF] = ACTIONS(4839), + [anon_sym_CR] = ACTIONS(4839), + [anon_sym_CR_LF] = ACTIONS(4839), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4839), + [anon_sym_const] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym___global] = ACTIONS(4839), + [anon_sym_type] = ACTIONS(4839), + [anon_sym_fn] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4839), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_STAR] = ACTIONS(4839), + [anon_sym_struct] = ACTIONS(4839), + [anon_sym_union] = ACTIONS(4839), + [anon_sym_pub] = ACTIONS(4839), + [anon_sym_mut] = ACTIONS(4839), + [anon_sym_enum] = ACTIONS(4839), + [anon_sym_interface] = ACTIONS(4839), + [anon_sym_QMARK] = ACTIONS(4839), + [anon_sym_BANG] = ACTIONS(4839), + [anon_sym_go] = ACTIONS(4839), + [anon_sym_spawn] = ACTIONS(4839), + [anon_sym_json_DOTdecode] = ACTIONS(4839), + [anon_sym_LBRACK2] = ACTIONS(4839), + [anon_sym_TILDE] = ACTIONS(4839), + [anon_sym_CARET] = ACTIONS(4839), + [anon_sym_AMP] = ACTIONS(4839), + [anon_sym_LT_DASH] = ACTIONS(4839), + [sym_none] = ACTIONS(4839), + [sym_true] = ACTIONS(4839), + [sym_false] = ACTIONS(4839), + [sym_nil] = ACTIONS(4839), + [anon_sym_if] = ACTIONS(4839), + [anon_sym_DOLLARif] = ACTIONS(4839), + [anon_sym_match] = ACTIONS(4839), + [anon_sym_select] = ACTIONS(4839), + [anon_sym_lock] = ACTIONS(4839), + [anon_sym_rlock] = ACTIONS(4839), + [anon_sym_unsafe] = ACTIONS(4839), + [anon_sym_sql] = ACTIONS(4839), + [sym_int_literal] = ACTIONS(4839), + [sym_float_literal] = ACTIONS(4839), + [sym_rune_literal] = ACTIONS(4839), + [anon_sym_SQUOTE] = ACTIONS(4839), + [anon_sym_DQUOTE] = ACTIONS(4839), + [anon_sym_c_SQUOTE] = ACTIONS(4839), + [anon_sym_c_DQUOTE] = ACTIONS(4839), + [anon_sym_r_SQUOTE] = ACTIONS(4839), + [anon_sym_r_DQUOTE] = ACTIONS(4839), + [sym_pseudo_compile_time_identifier] = ACTIONS(4839), + [anon_sym_shared] = ACTIONS(4839), + [anon_sym_map_LBRACK] = ACTIONS(4839), + [anon_sym_chan] = ACTIONS(4839), + [anon_sym_thread] = ACTIONS(4839), + [anon_sym_atomic] = ACTIONS(4839), + [anon_sym_assert] = ACTIONS(4839), + [anon_sym_defer] = ACTIONS(4839), + [anon_sym_goto] = ACTIONS(4839), + [anon_sym_break] = ACTIONS(4839), + [anon_sym_continue] = ACTIONS(4839), + [anon_sym_return] = ACTIONS(4839), + [anon_sym_DOLLARfor] = ACTIONS(4839), + [anon_sym_for] = ACTIONS(4839), + [anon_sym_POUND] = ACTIONS(4839), + [anon_sym_asm] = ACTIONS(4839), + [anon_sym_AT_LBRACK] = ACTIONS(4839), + }, + [1889] = { + [sym_line_comment] = STATE(1889), + [sym_block_comment] = STATE(1889), + [ts_builtin_sym_end] = ACTIONS(4841), + [sym_identifier] = ACTIONS(4843), + [anon_sym_LF] = ACTIONS(4843), + [anon_sym_CR] = ACTIONS(4843), + [anon_sym_CR_LF] = ACTIONS(4843), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_const] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym___global] = ACTIONS(4843), + [anon_sym_type] = ACTIONS(4843), + [anon_sym_fn] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4843), + [anon_sym_DASH] = ACTIONS(4843), + [anon_sym_STAR] = ACTIONS(4843), + [anon_sym_struct] = ACTIONS(4843), + [anon_sym_union] = ACTIONS(4843), + [anon_sym_pub] = ACTIONS(4843), + [anon_sym_mut] = ACTIONS(4843), + [anon_sym_enum] = ACTIONS(4843), + [anon_sym_interface] = ACTIONS(4843), + [anon_sym_QMARK] = ACTIONS(4843), + [anon_sym_BANG] = ACTIONS(4843), + [anon_sym_go] = ACTIONS(4843), + [anon_sym_spawn] = ACTIONS(4843), + [anon_sym_json_DOTdecode] = ACTIONS(4843), + [anon_sym_LBRACK2] = ACTIONS(4843), + [anon_sym_TILDE] = ACTIONS(4843), + [anon_sym_CARET] = ACTIONS(4843), + [anon_sym_AMP] = ACTIONS(4843), + [anon_sym_LT_DASH] = ACTIONS(4843), + [sym_none] = ACTIONS(4843), + [sym_true] = ACTIONS(4843), + [sym_false] = ACTIONS(4843), + [sym_nil] = ACTIONS(4843), + [anon_sym_if] = ACTIONS(4843), + [anon_sym_DOLLARif] = ACTIONS(4843), + [anon_sym_match] = ACTIONS(4843), + [anon_sym_select] = ACTIONS(4843), + [anon_sym_lock] = ACTIONS(4843), + [anon_sym_rlock] = ACTIONS(4843), + [anon_sym_unsafe] = ACTIONS(4843), + [anon_sym_sql] = ACTIONS(4843), + [sym_int_literal] = ACTIONS(4843), + [sym_float_literal] = ACTIONS(4843), + [sym_rune_literal] = ACTIONS(4843), + [anon_sym_SQUOTE] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [anon_sym_c_SQUOTE] = ACTIONS(4843), + [anon_sym_c_DQUOTE] = ACTIONS(4843), + [anon_sym_r_SQUOTE] = ACTIONS(4843), + [anon_sym_r_DQUOTE] = ACTIONS(4843), + [sym_pseudo_compile_time_identifier] = ACTIONS(4843), + [anon_sym_shared] = ACTIONS(4843), + [anon_sym_map_LBRACK] = ACTIONS(4843), + [anon_sym_chan] = ACTIONS(4843), + [anon_sym_thread] = ACTIONS(4843), + [anon_sym_atomic] = ACTIONS(4843), + [anon_sym_assert] = ACTIONS(4843), + [anon_sym_defer] = ACTIONS(4843), + [anon_sym_goto] = ACTIONS(4843), + [anon_sym_break] = ACTIONS(4843), + [anon_sym_continue] = ACTIONS(4843), + [anon_sym_return] = ACTIONS(4843), + [anon_sym_DOLLARfor] = ACTIONS(4843), + [anon_sym_for] = ACTIONS(4843), + [anon_sym_POUND] = ACTIONS(4843), + [anon_sym_asm] = ACTIONS(4843), + [anon_sym_AT_LBRACK] = ACTIONS(4843), + }, + [1890] = { + [sym_line_comment] = STATE(1890), + [sym_block_comment] = STATE(1890), [ts_builtin_sym_end] = ACTIONS(4845), [sym_identifier] = ACTIONS(4847), [anon_sym_LF] = ACTIONS(4847), @@ -219221,84 +219684,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4847), [anon_sym_AT_LBRACK] = ACTIONS(4847), }, - [1888] = { - [sym_line_comment] = STATE(1888), - [sym_block_comment] = STATE(1888), - [ts_builtin_sym_end] = ACTIONS(3284), - [sym_identifier] = ACTIONS(3286), - [anon_sym_LF] = ACTIONS(3286), - [anon_sym_CR] = ACTIONS(3286), - [anon_sym_CR_LF] = ACTIONS(3286), + [1891] = { + [sym_line_comment] = STATE(1891), + [sym_block_comment] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LF] = ACTIONS(3308), + [anon_sym_CR] = ACTIONS(3308), + [anon_sym_CR_LF] = ACTIONS(3308), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym___global] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_fn] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_pub] = ACTIONS(3286), - [anon_sym_mut] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_QMARK] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_go] = ACTIONS(3286), - [anon_sym_spawn] = ACTIONS(3286), - [anon_sym_json_DOTdecode] = ACTIONS(3286), - [anon_sym_LBRACK2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_LT_DASH] = ACTIONS(3286), - [sym_none] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_nil] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_DOLLARif] = ACTIONS(3286), - [anon_sym_match] = ACTIONS(3286), - [anon_sym_select] = ACTIONS(3286), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3286), - [anon_sym_sql] = ACTIONS(3286), - [sym_int_literal] = ACTIONS(3286), - [sym_float_literal] = ACTIONS(3286), - [sym_rune_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_c_SQUOTE] = ACTIONS(3286), - [anon_sym_c_DQUOTE] = ACTIONS(3286), - [anon_sym_r_SQUOTE] = ACTIONS(3286), - [anon_sym_r_DQUOTE] = ACTIONS(3286), - [sym_pseudo_compile_time_identifier] = ACTIONS(3286), - [anon_sym_shared] = ACTIONS(3286), - [anon_sym_map_LBRACK] = ACTIONS(3286), - [anon_sym_chan] = ACTIONS(3286), - [anon_sym_thread] = ACTIONS(3286), - [anon_sym_atomic] = ACTIONS(3286), - [anon_sym_assert] = ACTIONS(3286), - [anon_sym_defer] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_DOLLARfor] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_asm] = ACTIONS(3286), - [anon_sym_AT_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym___global] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_fn] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_pub] = ACTIONS(3308), + [anon_sym_mut] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_go] = ACTIONS(3308), + [anon_sym_spawn] = ACTIONS(3308), + [anon_sym_json_DOTdecode] = ACTIONS(3308), + [anon_sym_LBRACK2] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_CARET] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_nil] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_select] = ACTIONS(3308), + [anon_sym_lock] = ACTIONS(3308), + [anon_sym_rlock] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_sql] = ACTIONS(3308), + [sym_int_literal] = ACTIONS(3308), + [sym_float_literal] = ACTIONS(3308), + [sym_rune_literal] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_c_SQUOTE] = ACTIONS(3308), + [anon_sym_c_DQUOTE] = ACTIONS(3308), + [anon_sym_r_SQUOTE] = ACTIONS(3308), + [anon_sym_r_DQUOTE] = ACTIONS(3308), + [sym_pseudo_compile_time_identifier] = ACTIONS(3308), + [anon_sym_shared] = ACTIONS(3308), + [anon_sym_map_LBRACK] = ACTIONS(3308), + [anon_sym_chan] = ACTIONS(3308), + [anon_sym_thread] = ACTIONS(3308), + [anon_sym_atomic] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_defer] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_DOLLARfor] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_POUND] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym_AT_LBRACK] = ACTIONS(3308), }, - [1889] = { - [sym_line_comment] = STATE(1889), - [sym_block_comment] = STATE(1889), + [1892] = { + [sym_line_comment] = STATE(1892), + [sym_block_comment] = STATE(1892), [ts_builtin_sym_end] = ACTIONS(4849), [sym_identifier] = ACTIONS(4851), [anon_sym_LF] = ACTIONS(4851), @@ -219371,84 +219834,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4851), [anon_sym_AT_LBRACK] = ACTIONS(4851), }, - [1890] = { - [sym_line_comment] = STATE(1890), - [sym_block_comment] = STATE(1890), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_CR] = ACTIONS(851), - [anon_sym_CR_LF] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_DOT] = ACTIONS(851), - [anon_sym_as] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT_EQ] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_DASH_DASH] = ACTIONS(851), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_LBRACK2] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_GT_GT_GT] = ACTIONS(851), - [anon_sym_AMP_CARET] = ACTIONS(851), - [anon_sym_AMP_AMP] = ACTIONS(851), - [anon_sym_PIPE_PIPE] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(851), - [anon_sym_POUND_LBRACK] = ACTIONS(851), - [anon_sym_is] = ACTIONS(851), - [anon_sym_BANGis] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_BANGin] = ACTIONS(851), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(351), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [1891] = { - [sym_line_comment] = STATE(1891), - [sym_block_comment] = STATE(1891), + [1893] = { + [sym_line_comment] = STATE(1893), + [sym_block_comment] = STATE(1893), [ts_builtin_sym_end] = ACTIONS(4853), [sym_identifier] = ACTIONS(4855), [anon_sym_LF] = ACTIONS(4855), @@ -219521,9 +219909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4855), [anon_sym_AT_LBRACK] = ACTIONS(4855), }, - [1892] = { - [sym_line_comment] = STATE(1892), - [sym_block_comment] = STATE(1892), + [1894] = { + [sym_line_comment] = STATE(1894), + [sym_block_comment] = STATE(1894), [ts_builtin_sym_end] = ACTIONS(4857), [sym_identifier] = ACTIONS(4859), [anon_sym_LF] = ACTIONS(4859), @@ -219596,9 +219984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4859), [anon_sym_AT_LBRACK] = ACTIONS(4859), }, - [1893] = { - [sym_line_comment] = STATE(1893), - [sym_block_comment] = STATE(1893), + [1895] = { + [sym_line_comment] = STATE(1895), + [sym_block_comment] = STATE(1895), [ts_builtin_sym_end] = ACTIONS(4861), [sym_identifier] = ACTIONS(4863), [anon_sym_LF] = ACTIONS(4863), @@ -219671,9 +220059,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4863), [anon_sym_AT_LBRACK] = ACTIONS(4863), }, - [1894] = { - [sym_line_comment] = STATE(1894), - [sym_block_comment] = STATE(1894), + [1896] = { + [sym_line_comment] = STATE(1896), + [sym_block_comment] = STATE(1896), [ts_builtin_sym_end] = ACTIONS(4865), [sym_identifier] = ACTIONS(4867), [anon_sym_LF] = ACTIONS(4867), @@ -219746,9 +220134,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4867), [anon_sym_AT_LBRACK] = ACTIONS(4867), }, - [1895] = { - [sym_line_comment] = STATE(1895), - [sym_block_comment] = STATE(1895), + [1897] = { + [sym_line_comment] = STATE(1897), + [sym_block_comment] = STATE(1897), [ts_builtin_sym_end] = ACTIONS(4869), [sym_identifier] = ACTIONS(4871), [anon_sym_LF] = ACTIONS(4871), @@ -219821,9 +220209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4871), [anon_sym_AT_LBRACK] = ACTIONS(4871), }, - [1896] = { - [sym_line_comment] = STATE(1896), - [sym_block_comment] = STATE(1896), + [1898] = { + [sym_line_comment] = STATE(1898), + [sym_block_comment] = STATE(1898), [ts_builtin_sym_end] = ACTIONS(4873), [sym_identifier] = ACTIONS(4875), [anon_sym_LF] = ACTIONS(4875), @@ -219846,1022 +220234,872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(4875), [anon_sym_mut] = ACTIONS(4875), [anon_sym_enum] = ACTIONS(4875), - [anon_sym_interface] = ACTIONS(4875), - [anon_sym_QMARK] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4875), - [anon_sym_go] = ACTIONS(4875), - [anon_sym_spawn] = ACTIONS(4875), - [anon_sym_json_DOTdecode] = ACTIONS(4875), - [anon_sym_LBRACK2] = ACTIONS(4875), - [anon_sym_TILDE] = ACTIONS(4875), - [anon_sym_CARET] = ACTIONS(4875), - [anon_sym_AMP] = ACTIONS(4875), - [anon_sym_LT_DASH] = ACTIONS(4875), - [sym_none] = ACTIONS(4875), - [sym_true] = ACTIONS(4875), - [sym_false] = ACTIONS(4875), - [sym_nil] = ACTIONS(4875), - [anon_sym_if] = ACTIONS(4875), - [anon_sym_DOLLARif] = ACTIONS(4875), - [anon_sym_match] = ACTIONS(4875), - [anon_sym_select] = ACTIONS(4875), - [anon_sym_lock] = ACTIONS(4875), - [anon_sym_rlock] = ACTIONS(4875), - [anon_sym_unsafe] = ACTIONS(4875), - [anon_sym_sql] = ACTIONS(4875), - [sym_int_literal] = ACTIONS(4875), - [sym_float_literal] = ACTIONS(4875), - [sym_rune_literal] = ACTIONS(4875), - [anon_sym_SQUOTE] = ACTIONS(4875), - [anon_sym_DQUOTE] = ACTIONS(4875), - [anon_sym_c_SQUOTE] = ACTIONS(4875), - [anon_sym_c_DQUOTE] = ACTIONS(4875), - [anon_sym_r_SQUOTE] = ACTIONS(4875), - [anon_sym_r_DQUOTE] = ACTIONS(4875), - [sym_pseudo_compile_time_identifier] = ACTIONS(4875), - [anon_sym_shared] = ACTIONS(4875), - [anon_sym_map_LBRACK] = ACTIONS(4875), - [anon_sym_chan] = ACTIONS(4875), - [anon_sym_thread] = ACTIONS(4875), - [anon_sym_atomic] = ACTIONS(4875), - [anon_sym_assert] = ACTIONS(4875), - [anon_sym_defer] = ACTIONS(4875), - [anon_sym_goto] = ACTIONS(4875), - [anon_sym_break] = ACTIONS(4875), - [anon_sym_continue] = ACTIONS(4875), - [anon_sym_return] = ACTIONS(4875), - [anon_sym_DOLLARfor] = ACTIONS(4875), - [anon_sym_for] = ACTIONS(4875), - [anon_sym_POUND] = ACTIONS(4875), - [anon_sym_asm] = ACTIONS(4875), - [anon_sym_AT_LBRACK] = ACTIONS(4875), - }, - [1897] = { - [sym_line_comment] = STATE(1897), - [sym_block_comment] = STATE(1897), - [ts_builtin_sym_end] = ACTIONS(4877), - [sym_identifier] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_CR] = ACTIONS(4879), - [anon_sym_CR_LF] = ACTIONS(4879), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4879), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_const] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym___global] = ACTIONS(4879), - [anon_sym_type] = ACTIONS(4879), - [anon_sym_fn] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_struct] = ACTIONS(4879), - [anon_sym_union] = ACTIONS(4879), - [anon_sym_pub] = ACTIONS(4879), - [anon_sym_mut] = ACTIONS(4879), - [anon_sym_enum] = ACTIONS(4879), - [anon_sym_interface] = ACTIONS(4879), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_go] = ACTIONS(4879), - [anon_sym_spawn] = ACTIONS(4879), - [anon_sym_json_DOTdecode] = ACTIONS(4879), - [anon_sym_LBRACK2] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - [anon_sym_LT_DASH] = ACTIONS(4879), - [sym_none] = ACTIONS(4879), - [sym_true] = ACTIONS(4879), - [sym_false] = ACTIONS(4879), - [sym_nil] = ACTIONS(4879), - [anon_sym_if] = ACTIONS(4879), - [anon_sym_DOLLARif] = ACTIONS(4879), - [anon_sym_match] = ACTIONS(4879), - [anon_sym_select] = ACTIONS(4879), - [anon_sym_lock] = ACTIONS(4879), - [anon_sym_rlock] = ACTIONS(4879), - [anon_sym_unsafe] = ACTIONS(4879), - [anon_sym_sql] = ACTIONS(4879), - [sym_int_literal] = ACTIONS(4879), - [sym_float_literal] = ACTIONS(4879), - [sym_rune_literal] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_c_SQUOTE] = ACTIONS(4879), - [anon_sym_c_DQUOTE] = ACTIONS(4879), - [anon_sym_r_SQUOTE] = ACTIONS(4879), - [anon_sym_r_DQUOTE] = ACTIONS(4879), - [sym_pseudo_compile_time_identifier] = ACTIONS(4879), - [anon_sym_shared] = ACTIONS(4879), - [anon_sym_map_LBRACK] = ACTIONS(4879), - [anon_sym_chan] = ACTIONS(4879), - [anon_sym_thread] = ACTIONS(4879), - [anon_sym_atomic] = ACTIONS(4879), - [anon_sym_assert] = ACTIONS(4879), - [anon_sym_defer] = ACTIONS(4879), - [anon_sym_goto] = ACTIONS(4879), - [anon_sym_break] = ACTIONS(4879), - [anon_sym_continue] = ACTIONS(4879), - [anon_sym_return] = ACTIONS(4879), - [anon_sym_DOLLARfor] = ACTIONS(4879), - [anon_sym_for] = ACTIONS(4879), - [anon_sym_POUND] = ACTIONS(4879), - [anon_sym_asm] = ACTIONS(4879), - [anon_sym_AT_LBRACK] = ACTIONS(4879), - }, - [1898] = { - [sym_line_comment] = STATE(1898), - [sym_block_comment] = STATE(1898), - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3318), - [anon_sym_LF] = ACTIONS(3318), - [anon_sym_CR] = ACTIONS(3318), - [anon_sym_CR_LF] = ACTIONS(3318), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym___global] = ACTIONS(3318), - [anon_sym_type] = ACTIONS(3318), - [anon_sym_fn] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_pub] = ACTIONS(3318), - [anon_sym_mut] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_interface] = ACTIONS(3318), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_go] = ACTIONS(3318), - [anon_sym_spawn] = ACTIONS(3318), - [anon_sym_json_DOTdecode] = ACTIONS(3318), - [anon_sym_LBRACK2] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3318), - [sym_none] = ACTIONS(3318), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_nil] = ACTIONS(3318), - [anon_sym_if] = ACTIONS(3318), - [anon_sym_DOLLARif] = ACTIONS(3318), - [anon_sym_match] = ACTIONS(3318), - [anon_sym_select] = ACTIONS(3318), - [anon_sym_lock] = ACTIONS(3318), - [anon_sym_rlock] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3318), - [sym_int_literal] = ACTIONS(3318), - [sym_float_literal] = ACTIONS(3318), - [sym_rune_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_c_SQUOTE] = ACTIONS(3318), - [anon_sym_c_DQUOTE] = ACTIONS(3318), - [anon_sym_r_SQUOTE] = ACTIONS(3318), - [anon_sym_r_DQUOTE] = ACTIONS(3318), - [sym_pseudo_compile_time_identifier] = ACTIONS(3318), - [anon_sym_shared] = ACTIONS(3318), - [anon_sym_map_LBRACK] = ACTIONS(3318), - [anon_sym_chan] = ACTIONS(3318), - [anon_sym_thread] = ACTIONS(3318), - [anon_sym_atomic] = ACTIONS(3318), - [anon_sym_assert] = ACTIONS(3318), - [anon_sym_defer] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_DOLLARfor] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_asm] = ACTIONS(3318), - [anon_sym_AT_LBRACK] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4875), + [anon_sym_BANG] = ACTIONS(4875), + [anon_sym_go] = ACTIONS(4875), + [anon_sym_spawn] = ACTIONS(4875), + [anon_sym_json_DOTdecode] = ACTIONS(4875), + [anon_sym_LBRACK2] = ACTIONS(4875), + [anon_sym_TILDE] = ACTIONS(4875), + [anon_sym_CARET] = ACTIONS(4875), + [anon_sym_AMP] = ACTIONS(4875), + [anon_sym_LT_DASH] = ACTIONS(4875), + [sym_none] = ACTIONS(4875), + [sym_true] = ACTIONS(4875), + [sym_false] = ACTIONS(4875), + [sym_nil] = ACTIONS(4875), + [anon_sym_if] = ACTIONS(4875), + [anon_sym_DOLLARif] = ACTIONS(4875), + [anon_sym_match] = ACTIONS(4875), + [anon_sym_select] = ACTIONS(4875), + [anon_sym_lock] = ACTIONS(4875), + [anon_sym_rlock] = ACTIONS(4875), + [anon_sym_unsafe] = ACTIONS(4875), + [anon_sym_sql] = ACTIONS(4875), + [sym_int_literal] = ACTIONS(4875), + [sym_float_literal] = ACTIONS(4875), + [sym_rune_literal] = ACTIONS(4875), + [anon_sym_SQUOTE] = ACTIONS(4875), + [anon_sym_DQUOTE] = ACTIONS(4875), + [anon_sym_c_SQUOTE] = ACTIONS(4875), + [anon_sym_c_DQUOTE] = ACTIONS(4875), + [anon_sym_r_SQUOTE] = ACTIONS(4875), + [anon_sym_r_DQUOTE] = ACTIONS(4875), + [sym_pseudo_compile_time_identifier] = ACTIONS(4875), + [anon_sym_shared] = ACTIONS(4875), + [anon_sym_map_LBRACK] = ACTIONS(4875), + [anon_sym_chan] = ACTIONS(4875), + [anon_sym_thread] = ACTIONS(4875), + [anon_sym_atomic] = ACTIONS(4875), + [anon_sym_assert] = ACTIONS(4875), + [anon_sym_defer] = ACTIONS(4875), + [anon_sym_goto] = ACTIONS(4875), + [anon_sym_break] = ACTIONS(4875), + [anon_sym_continue] = ACTIONS(4875), + [anon_sym_return] = ACTIONS(4875), + [anon_sym_DOLLARfor] = ACTIONS(4875), + [anon_sym_for] = ACTIONS(4875), + [anon_sym_POUND] = ACTIONS(4875), + [anon_sym_asm] = ACTIONS(4875), + [anon_sym_AT_LBRACK] = ACTIONS(4875), }, [1899] = { [sym_line_comment] = STATE(1899), [sym_block_comment] = STATE(1899), - [ts_builtin_sym_end] = ACTIONS(4881), - [sym_identifier] = ACTIONS(4883), - [anon_sym_LF] = ACTIONS(4883), - [anon_sym_CR] = ACTIONS(4883), - [anon_sym_CR_LF] = ACTIONS(4883), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4883), - [anon_sym_const] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [anon_sym___global] = ACTIONS(4883), - [anon_sym_type] = ACTIONS(4883), - [anon_sym_fn] = ACTIONS(4883), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_STAR] = ACTIONS(4883), - [anon_sym_struct] = ACTIONS(4883), - [anon_sym_union] = ACTIONS(4883), - [anon_sym_pub] = ACTIONS(4883), - [anon_sym_mut] = ACTIONS(4883), - [anon_sym_enum] = ACTIONS(4883), - [anon_sym_interface] = ACTIONS(4883), - [anon_sym_QMARK] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(4883), - [anon_sym_go] = ACTIONS(4883), - [anon_sym_spawn] = ACTIONS(4883), - [anon_sym_json_DOTdecode] = ACTIONS(4883), - [anon_sym_LBRACK2] = ACTIONS(4883), - [anon_sym_TILDE] = ACTIONS(4883), - [anon_sym_CARET] = ACTIONS(4883), - [anon_sym_AMP] = ACTIONS(4883), - [anon_sym_LT_DASH] = ACTIONS(4883), - [sym_none] = ACTIONS(4883), - [sym_true] = ACTIONS(4883), - [sym_false] = ACTIONS(4883), - [sym_nil] = ACTIONS(4883), - [anon_sym_if] = ACTIONS(4883), - [anon_sym_DOLLARif] = ACTIONS(4883), - [anon_sym_match] = ACTIONS(4883), - [anon_sym_select] = ACTIONS(4883), - [anon_sym_lock] = ACTIONS(4883), - [anon_sym_rlock] = ACTIONS(4883), - [anon_sym_unsafe] = ACTIONS(4883), - [anon_sym_sql] = ACTIONS(4883), - [sym_int_literal] = ACTIONS(4883), - [sym_float_literal] = ACTIONS(4883), - [sym_rune_literal] = ACTIONS(4883), - [anon_sym_SQUOTE] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_c_SQUOTE] = ACTIONS(4883), - [anon_sym_c_DQUOTE] = ACTIONS(4883), - [anon_sym_r_SQUOTE] = ACTIONS(4883), - [anon_sym_r_DQUOTE] = ACTIONS(4883), - [sym_pseudo_compile_time_identifier] = ACTIONS(4883), - [anon_sym_shared] = ACTIONS(4883), - [anon_sym_map_LBRACK] = ACTIONS(4883), - [anon_sym_chan] = ACTIONS(4883), - [anon_sym_thread] = ACTIONS(4883), - [anon_sym_atomic] = ACTIONS(4883), - [anon_sym_assert] = ACTIONS(4883), - [anon_sym_defer] = ACTIONS(4883), - [anon_sym_goto] = ACTIONS(4883), - [anon_sym_break] = ACTIONS(4883), - [anon_sym_continue] = ACTIONS(4883), - [anon_sym_return] = ACTIONS(4883), - [anon_sym_DOLLARfor] = ACTIONS(4883), - [anon_sym_for] = ACTIONS(4883), - [anon_sym_POUND] = ACTIONS(4883), - [anon_sym_asm] = ACTIONS(4883), - [anon_sym_AT_LBRACK] = ACTIONS(4883), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(861), + [anon_sym_AMP_CARET] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(861), }, [1900] = { [sym_line_comment] = STATE(1900), [sym_block_comment] = STATE(1900), - [ts_builtin_sym_end] = ACTIONS(3312), - [sym_identifier] = ACTIONS(3314), - [anon_sym_LF] = ACTIONS(3314), - [anon_sym_CR] = ACTIONS(3314), - [anon_sym_CR_LF] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(4879), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LF] = ACTIONS(4881), + [anon_sym_CR] = ACTIONS(4881), + [anon_sym_CR_LF] = ACTIONS(4881), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym___global] = ACTIONS(3314), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_pub] = ACTIONS(3314), - [anon_sym_mut] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_interface] = ACTIONS(3314), - [anon_sym_QMARK] = ACTIONS(3314), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_go] = ACTIONS(3314), - [anon_sym_spawn] = ACTIONS(3314), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_LT_DASH] = ACTIONS(3314), - [sym_none] = ACTIONS(3314), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [sym_nil] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_DOLLARif] = ACTIONS(3314), - [anon_sym_match] = ACTIONS(3314), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3314), - [anon_sym_rlock] = ACTIONS(3314), - [anon_sym_unsafe] = ACTIONS(3314), - [anon_sym_sql] = ACTIONS(3314), - [sym_int_literal] = ACTIONS(3314), - [sym_float_literal] = ACTIONS(3314), - [sym_rune_literal] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_c_SQUOTE] = ACTIONS(3314), - [anon_sym_c_DQUOTE] = ACTIONS(3314), - [anon_sym_r_SQUOTE] = ACTIONS(3314), - [anon_sym_r_DQUOTE] = ACTIONS(3314), - [sym_pseudo_compile_time_identifier] = ACTIONS(3314), - [anon_sym_shared] = ACTIONS(3314), - [anon_sym_map_LBRACK] = ACTIONS(3314), - [anon_sym_chan] = ACTIONS(3314), - [anon_sym_thread] = ACTIONS(3314), - [anon_sym_atomic] = ACTIONS(3314), - [anon_sym_assert] = ACTIONS(3314), - [anon_sym_defer] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_DOLLARfor] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_POUND] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym_AT_LBRACK] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [anon_sym_const] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym___global] = ACTIONS(4881), + [anon_sym_type] = ACTIONS(4881), + [anon_sym_fn] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_STAR] = ACTIONS(4881), + [anon_sym_struct] = ACTIONS(4881), + [anon_sym_union] = ACTIONS(4881), + [anon_sym_pub] = ACTIONS(4881), + [anon_sym_mut] = ACTIONS(4881), + [anon_sym_enum] = ACTIONS(4881), + [anon_sym_interface] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4881), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_go] = ACTIONS(4881), + [anon_sym_spawn] = ACTIONS(4881), + [anon_sym_json_DOTdecode] = ACTIONS(4881), + [anon_sym_LBRACK2] = ACTIONS(4881), + [anon_sym_TILDE] = ACTIONS(4881), + [anon_sym_CARET] = ACTIONS(4881), + [anon_sym_AMP] = ACTIONS(4881), + [anon_sym_LT_DASH] = ACTIONS(4881), + [sym_none] = ACTIONS(4881), + [sym_true] = ACTIONS(4881), + [sym_false] = ACTIONS(4881), + [sym_nil] = ACTIONS(4881), + [anon_sym_if] = ACTIONS(4881), + [anon_sym_DOLLARif] = ACTIONS(4881), + [anon_sym_match] = ACTIONS(4881), + [anon_sym_select] = ACTIONS(4881), + [anon_sym_lock] = ACTIONS(4881), + [anon_sym_rlock] = ACTIONS(4881), + [anon_sym_unsafe] = ACTIONS(4881), + [anon_sym_sql] = ACTIONS(4881), + [sym_int_literal] = ACTIONS(4881), + [sym_float_literal] = ACTIONS(4881), + [sym_rune_literal] = ACTIONS(4881), + [anon_sym_SQUOTE] = ACTIONS(4881), + [anon_sym_DQUOTE] = ACTIONS(4881), + [anon_sym_c_SQUOTE] = ACTIONS(4881), + [anon_sym_c_DQUOTE] = ACTIONS(4881), + [anon_sym_r_SQUOTE] = ACTIONS(4881), + [anon_sym_r_DQUOTE] = ACTIONS(4881), + [sym_pseudo_compile_time_identifier] = ACTIONS(4881), + [anon_sym_shared] = ACTIONS(4881), + [anon_sym_map_LBRACK] = ACTIONS(4881), + [anon_sym_chan] = ACTIONS(4881), + [anon_sym_thread] = ACTIONS(4881), + [anon_sym_atomic] = ACTIONS(4881), + [anon_sym_assert] = ACTIONS(4881), + [anon_sym_defer] = ACTIONS(4881), + [anon_sym_goto] = ACTIONS(4881), + [anon_sym_break] = ACTIONS(4881), + [anon_sym_continue] = ACTIONS(4881), + [anon_sym_return] = ACTIONS(4881), + [anon_sym_DOLLARfor] = ACTIONS(4881), + [anon_sym_for] = ACTIONS(4881), + [anon_sym_POUND] = ACTIONS(4881), + [anon_sym_asm] = ACTIONS(4881), + [anon_sym_AT_LBRACK] = ACTIONS(4881), }, [1901] = { [sym_line_comment] = STATE(1901), [sym_block_comment] = STATE(1901), - [ts_builtin_sym_end] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LF] = ACTIONS(3308), - [anon_sym_CR] = ACTIONS(3308), - [anon_sym_CR_LF] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(4883), + [sym_identifier] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_CR] = ACTIONS(4885), + [anon_sym_CR_LF] = ACTIONS(4885), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym___global] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_fn] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_struct] = ACTIONS(3308), - [anon_sym_union] = ACTIONS(3308), - [anon_sym_pub] = ACTIONS(3308), - [anon_sym_mut] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_QMARK] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3308), - [anon_sym_spawn] = ACTIONS(3308), - [anon_sym_json_DOTdecode] = ACTIONS(3308), - [anon_sym_LBRACK2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_CARET] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_LT_DASH] = ACTIONS(3308), - [sym_none] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_nil] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3308), - [anon_sym_match] = ACTIONS(3308), - [anon_sym_select] = ACTIONS(3308), - [anon_sym_lock] = ACTIONS(3308), - [anon_sym_rlock] = ACTIONS(3308), - [anon_sym_unsafe] = ACTIONS(3308), - [anon_sym_sql] = ACTIONS(3308), - [sym_int_literal] = ACTIONS(3308), - [sym_float_literal] = ACTIONS(3308), - [sym_rune_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [anon_sym_c_SQUOTE] = ACTIONS(3308), - [anon_sym_c_DQUOTE] = ACTIONS(3308), - [anon_sym_r_SQUOTE] = ACTIONS(3308), - [anon_sym_r_DQUOTE] = ACTIONS(3308), - [sym_pseudo_compile_time_identifier] = ACTIONS(3308), - [anon_sym_shared] = ACTIONS(3308), - [anon_sym_map_LBRACK] = ACTIONS(3308), - [anon_sym_chan] = ACTIONS(3308), - [anon_sym_thread] = ACTIONS(3308), - [anon_sym_atomic] = ACTIONS(3308), - [anon_sym_assert] = ACTIONS(3308), - [anon_sym_defer] = ACTIONS(3308), - [anon_sym_goto] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_DOLLARfor] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_POUND] = ACTIONS(3308), - [anon_sym_asm] = ACTIONS(3308), - [anon_sym_AT_LBRACK] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_const] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym___global] = ACTIONS(4885), + [anon_sym_type] = ACTIONS(4885), + [anon_sym_fn] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_struct] = ACTIONS(4885), + [anon_sym_union] = ACTIONS(4885), + [anon_sym_pub] = ACTIONS(4885), + [anon_sym_mut] = ACTIONS(4885), + [anon_sym_enum] = ACTIONS(4885), + [anon_sym_interface] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4885), + [anon_sym_BANG] = ACTIONS(4885), + [anon_sym_go] = ACTIONS(4885), + [anon_sym_spawn] = ACTIONS(4885), + [anon_sym_json_DOTdecode] = ACTIONS(4885), + [anon_sym_LBRACK2] = ACTIONS(4885), + [anon_sym_TILDE] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + [anon_sym_LT_DASH] = ACTIONS(4885), + [sym_none] = ACTIONS(4885), + [sym_true] = ACTIONS(4885), + [sym_false] = ACTIONS(4885), + [sym_nil] = ACTIONS(4885), + [anon_sym_if] = ACTIONS(4885), + [anon_sym_DOLLARif] = ACTIONS(4885), + [anon_sym_match] = ACTIONS(4885), + [anon_sym_select] = ACTIONS(4885), + [anon_sym_lock] = ACTIONS(4885), + [anon_sym_rlock] = ACTIONS(4885), + [anon_sym_unsafe] = ACTIONS(4885), + [anon_sym_sql] = ACTIONS(4885), + [sym_int_literal] = ACTIONS(4885), + [sym_float_literal] = ACTIONS(4885), + [sym_rune_literal] = ACTIONS(4885), + [anon_sym_SQUOTE] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_c_SQUOTE] = ACTIONS(4885), + [anon_sym_c_DQUOTE] = ACTIONS(4885), + [anon_sym_r_SQUOTE] = ACTIONS(4885), + [anon_sym_r_DQUOTE] = ACTIONS(4885), + [sym_pseudo_compile_time_identifier] = ACTIONS(4885), + [anon_sym_shared] = ACTIONS(4885), + [anon_sym_map_LBRACK] = ACTIONS(4885), + [anon_sym_chan] = ACTIONS(4885), + [anon_sym_thread] = ACTIONS(4885), + [anon_sym_atomic] = ACTIONS(4885), + [anon_sym_assert] = ACTIONS(4885), + [anon_sym_defer] = ACTIONS(4885), + [anon_sym_goto] = ACTIONS(4885), + [anon_sym_break] = ACTIONS(4885), + [anon_sym_continue] = ACTIONS(4885), + [anon_sym_return] = ACTIONS(4885), + [anon_sym_DOLLARfor] = ACTIONS(4885), + [anon_sym_for] = ACTIONS(4885), + [anon_sym_POUND] = ACTIONS(4885), + [anon_sym_asm] = ACTIONS(4885), + [anon_sym_AT_LBRACK] = ACTIONS(4885), }, [1902] = { [sym_line_comment] = STATE(1902), [sym_block_comment] = STATE(1902), - [ts_builtin_sym_end] = ACTIONS(4885), - [sym_identifier] = ACTIONS(4887), - [anon_sym_LF] = ACTIONS(4887), - [anon_sym_CR] = ACTIONS(4887), - [anon_sym_CR_LF] = ACTIONS(4887), + [ts_builtin_sym_end] = ACTIONS(4887), + [sym_identifier] = ACTIONS(4889), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_CR] = ACTIONS(4889), + [anon_sym_CR_LF] = ACTIONS(4889), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_LBRACE] = ACTIONS(4887), - [anon_sym_const] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [anon_sym___global] = ACTIONS(4887), - [anon_sym_type] = ACTIONS(4887), - [anon_sym_fn] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(4887), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_struct] = ACTIONS(4887), - [anon_sym_union] = ACTIONS(4887), - [anon_sym_pub] = ACTIONS(4887), - [anon_sym_mut] = ACTIONS(4887), - [anon_sym_enum] = ACTIONS(4887), - [anon_sym_interface] = ACTIONS(4887), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_go] = ACTIONS(4887), - [anon_sym_spawn] = ACTIONS(4887), - [anon_sym_json_DOTdecode] = ACTIONS(4887), - [anon_sym_LBRACK2] = ACTIONS(4887), - [anon_sym_TILDE] = ACTIONS(4887), - [anon_sym_CARET] = ACTIONS(4887), - [anon_sym_AMP] = ACTIONS(4887), - [anon_sym_LT_DASH] = ACTIONS(4887), - [sym_none] = ACTIONS(4887), - [sym_true] = ACTIONS(4887), - [sym_false] = ACTIONS(4887), - [sym_nil] = ACTIONS(4887), - [anon_sym_if] = ACTIONS(4887), - [anon_sym_DOLLARif] = ACTIONS(4887), - [anon_sym_match] = ACTIONS(4887), - [anon_sym_select] = ACTIONS(4887), - [anon_sym_lock] = ACTIONS(4887), - [anon_sym_rlock] = ACTIONS(4887), - [anon_sym_unsafe] = ACTIONS(4887), - [anon_sym_sql] = ACTIONS(4887), - [sym_int_literal] = ACTIONS(4887), - [sym_float_literal] = ACTIONS(4887), - [sym_rune_literal] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [anon_sym_DQUOTE] = ACTIONS(4887), - [anon_sym_c_SQUOTE] = ACTIONS(4887), - [anon_sym_c_DQUOTE] = ACTIONS(4887), - [anon_sym_r_SQUOTE] = ACTIONS(4887), - [anon_sym_r_DQUOTE] = ACTIONS(4887), - [sym_pseudo_compile_time_identifier] = ACTIONS(4887), - [anon_sym_shared] = ACTIONS(4887), - [anon_sym_map_LBRACK] = ACTIONS(4887), - [anon_sym_chan] = ACTIONS(4887), - [anon_sym_thread] = ACTIONS(4887), - [anon_sym_atomic] = ACTIONS(4887), - [anon_sym_assert] = ACTIONS(4887), - [anon_sym_defer] = ACTIONS(4887), - [anon_sym_goto] = ACTIONS(4887), - [anon_sym_break] = ACTIONS(4887), - [anon_sym_continue] = ACTIONS(4887), - [anon_sym_return] = ACTIONS(4887), - [anon_sym_DOLLARfor] = ACTIONS(4887), - [anon_sym_for] = ACTIONS(4887), - [anon_sym_POUND] = ACTIONS(4887), - [anon_sym_asm] = ACTIONS(4887), - [anon_sym_AT_LBRACK] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [anon_sym_const] = ACTIONS(4889), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym___global] = ACTIONS(4889), + [anon_sym_type] = ACTIONS(4889), + [anon_sym_fn] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4889), + [anon_sym_DASH] = ACTIONS(4889), + [anon_sym_STAR] = ACTIONS(4889), + [anon_sym_struct] = ACTIONS(4889), + [anon_sym_union] = ACTIONS(4889), + [anon_sym_pub] = ACTIONS(4889), + [anon_sym_mut] = ACTIONS(4889), + [anon_sym_enum] = ACTIONS(4889), + [anon_sym_interface] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(4889), + [anon_sym_go] = ACTIONS(4889), + [anon_sym_spawn] = ACTIONS(4889), + [anon_sym_json_DOTdecode] = ACTIONS(4889), + [anon_sym_LBRACK2] = ACTIONS(4889), + [anon_sym_TILDE] = ACTIONS(4889), + [anon_sym_CARET] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_LT_DASH] = ACTIONS(4889), + [sym_none] = ACTIONS(4889), + [sym_true] = ACTIONS(4889), + [sym_false] = ACTIONS(4889), + [sym_nil] = ACTIONS(4889), + [anon_sym_if] = ACTIONS(4889), + [anon_sym_DOLLARif] = ACTIONS(4889), + [anon_sym_match] = ACTIONS(4889), + [anon_sym_select] = ACTIONS(4889), + [anon_sym_lock] = ACTIONS(4889), + [anon_sym_rlock] = ACTIONS(4889), + [anon_sym_unsafe] = ACTIONS(4889), + [anon_sym_sql] = ACTIONS(4889), + [sym_int_literal] = ACTIONS(4889), + [sym_float_literal] = ACTIONS(4889), + [sym_rune_literal] = ACTIONS(4889), + [anon_sym_SQUOTE] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_c_SQUOTE] = ACTIONS(4889), + [anon_sym_c_DQUOTE] = ACTIONS(4889), + [anon_sym_r_SQUOTE] = ACTIONS(4889), + [anon_sym_r_DQUOTE] = ACTIONS(4889), + [sym_pseudo_compile_time_identifier] = ACTIONS(4889), + [anon_sym_shared] = ACTIONS(4889), + [anon_sym_map_LBRACK] = ACTIONS(4889), + [anon_sym_chan] = ACTIONS(4889), + [anon_sym_thread] = ACTIONS(4889), + [anon_sym_atomic] = ACTIONS(4889), + [anon_sym_assert] = ACTIONS(4889), + [anon_sym_defer] = ACTIONS(4889), + [anon_sym_goto] = ACTIONS(4889), + [anon_sym_break] = ACTIONS(4889), + [anon_sym_continue] = ACTIONS(4889), + [anon_sym_return] = ACTIONS(4889), + [anon_sym_DOLLARfor] = ACTIONS(4889), + [anon_sym_for] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(4889), + [anon_sym_asm] = ACTIONS(4889), + [anon_sym_AT_LBRACK] = ACTIONS(4889), }, [1903] = { [sym_line_comment] = STATE(1903), [sym_block_comment] = STATE(1903), - [ts_builtin_sym_end] = ACTIONS(4889), - [sym_identifier] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_CR] = ACTIONS(4891), - [anon_sym_CR_LF] = ACTIONS(4891), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3312), + [anon_sym_CR] = ACTIONS(3312), + [anon_sym_CR_LF] = ACTIONS(3312), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4891), - [anon_sym_const] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym___global] = ACTIONS(4891), - [anon_sym_type] = ACTIONS(4891), - [anon_sym_fn] = ACTIONS(4891), - [anon_sym_PLUS] = ACTIONS(4891), - [anon_sym_DASH] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_struct] = ACTIONS(4891), - [anon_sym_union] = ACTIONS(4891), - [anon_sym_pub] = ACTIONS(4891), - [anon_sym_mut] = ACTIONS(4891), - [anon_sym_enum] = ACTIONS(4891), - [anon_sym_interface] = ACTIONS(4891), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_go] = ACTIONS(4891), - [anon_sym_spawn] = ACTIONS(4891), - [anon_sym_json_DOTdecode] = ACTIONS(4891), - [anon_sym_LBRACK2] = ACTIONS(4891), - [anon_sym_TILDE] = ACTIONS(4891), - [anon_sym_CARET] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - [anon_sym_LT_DASH] = ACTIONS(4891), - [sym_none] = ACTIONS(4891), - [sym_true] = ACTIONS(4891), - [sym_false] = ACTIONS(4891), - [sym_nil] = ACTIONS(4891), - [anon_sym_if] = ACTIONS(4891), - [anon_sym_DOLLARif] = ACTIONS(4891), - [anon_sym_match] = ACTIONS(4891), - [anon_sym_select] = ACTIONS(4891), - [anon_sym_lock] = ACTIONS(4891), - [anon_sym_rlock] = ACTIONS(4891), - [anon_sym_unsafe] = ACTIONS(4891), - [anon_sym_sql] = ACTIONS(4891), - [sym_int_literal] = ACTIONS(4891), - [sym_float_literal] = ACTIONS(4891), - [sym_rune_literal] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_c_SQUOTE] = ACTIONS(4891), - [anon_sym_c_DQUOTE] = ACTIONS(4891), - [anon_sym_r_SQUOTE] = ACTIONS(4891), - [anon_sym_r_DQUOTE] = ACTIONS(4891), - [sym_pseudo_compile_time_identifier] = ACTIONS(4891), - [anon_sym_shared] = ACTIONS(4891), - [anon_sym_map_LBRACK] = ACTIONS(4891), - [anon_sym_chan] = ACTIONS(4891), - [anon_sym_thread] = ACTIONS(4891), - [anon_sym_atomic] = ACTIONS(4891), - [anon_sym_assert] = ACTIONS(4891), - [anon_sym_defer] = ACTIONS(4891), - [anon_sym_goto] = ACTIONS(4891), - [anon_sym_break] = ACTIONS(4891), - [anon_sym_continue] = ACTIONS(4891), - [anon_sym_return] = ACTIONS(4891), - [anon_sym_DOLLARfor] = ACTIONS(4891), - [anon_sym_for] = ACTIONS(4891), - [anon_sym_POUND] = ACTIONS(4891), - [anon_sym_asm] = ACTIONS(4891), - [anon_sym_AT_LBRACK] = ACTIONS(4891), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym___global] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_pub] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_go] = ACTIONS(3312), + [anon_sym_spawn] = ACTIONS(3312), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LT_DASH] = ACTIONS(3312), + [sym_none] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_nil] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3312), + [anon_sym_lock] = ACTIONS(3312), + [anon_sym_rlock] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_sql] = ACTIONS(3312), + [sym_int_literal] = ACTIONS(3312), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_c_SQUOTE] = ACTIONS(3312), + [anon_sym_c_DQUOTE] = ACTIONS(3312), + [anon_sym_r_SQUOTE] = ACTIONS(3312), + [anon_sym_r_DQUOTE] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3312), + [anon_sym_shared] = ACTIONS(3312), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3312), + [anon_sym_thread] = ACTIONS(3312), + [anon_sym_atomic] = ACTIONS(3312), + [anon_sym_assert] = ACTIONS(3312), + [anon_sym_defer] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_DOLLARfor] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym_AT_LBRACK] = ACTIONS(3312), }, [1904] = { [sym_line_comment] = STATE(1904), [sym_block_comment] = STATE(1904), - [ts_builtin_sym_end] = ACTIONS(4893), - [sym_identifier] = ACTIONS(4895), - [anon_sym_LF] = ACTIONS(4895), - [anon_sym_CR] = ACTIONS(4895), - [anon_sym_CR_LF] = ACTIONS(4895), + [ts_builtin_sym_end] = ACTIONS(4891), + [sym_identifier] = ACTIONS(4893), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_CR] = ACTIONS(4893), + [anon_sym_CR_LF] = ACTIONS(4893), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_LBRACE] = ACTIONS(4895), - [anon_sym_const] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [anon_sym___global] = ACTIONS(4895), - [anon_sym_type] = ACTIONS(4895), - [anon_sym_fn] = ACTIONS(4895), - [anon_sym_PLUS] = ACTIONS(4895), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_STAR] = ACTIONS(4895), - [anon_sym_struct] = ACTIONS(4895), - [anon_sym_union] = ACTIONS(4895), - [anon_sym_pub] = ACTIONS(4895), - [anon_sym_mut] = ACTIONS(4895), - [anon_sym_enum] = ACTIONS(4895), - [anon_sym_interface] = ACTIONS(4895), - [anon_sym_QMARK] = ACTIONS(4895), - [anon_sym_BANG] = ACTIONS(4895), - [anon_sym_go] = ACTIONS(4895), - [anon_sym_spawn] = ACTIONS(4895), - [anon_sym_json_DOTdecode] = ACTIONS(4895), - [anon_sym_LBRACK2] = ACTIONS(4895), - [anon_sym_TILDE] = ACTIONS(4895), - [anon_sym_CARET] = ACTIONS(4895), - [anon_sym_AMP] = ACTIONS(4895), - [anon_sym_LT_DASH] = ACTIONS(4895), - [sym_none] = ACTIONS(4895), - [sym_true] = ACTIONS(4895), - [sym_false] = ACTIONS(4895), - [sym_nil] = ACTIONS(4895), - [anon_sym_if] = ACTIONS(4895), - [anon_sym_DOLLARif] = ACTIONS(4895), - [anon_sym_match] = ACTIONS(4895), - [anon_sym_select] = ACTIONS(4895), - [anon_sym_lock] = ACTIONS(4895), - [anon_sym_rlock] = ACTIONS(4895), - [anon_sym_unsafe] = ACTIONS(4895), - [anon_sym_sql] = ACTIONS(4895), - [sym_int_literal] = ACTIONS(4895), - [sym_float_literal] = ACTIONS(4895), - [sym_rune_literal] = ACTIONS(4895), - [anon_sym_SQUOTE] = ACTIONS(4895), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_c_SQUOTE] = ACTIONS(4895), - [anon_sym_c_DQUOTE] = ACTIONS(4895), - [anon_sym_r_SQUOTE] = ACTIONS(4895), - [anon_sym_r_DQUOTE] = ACTIONS(4895), - [sym_pseudo_compile_time_identifier] = ACTIONS(4895), - [anon_sym_shared] = ACTIONS(4895), - [anon_sym_map_LBRACK] = ACTIONS(4895), - [anon_sym_chan] = ACTIONS(4895), - [anon_sym_thread] = ACTIONS(4895), - [anon_sym_atomic] = ACTIONS(4895), - [anon_sym_assert] = ACTIONS(4895), - [anon_sym_defer] = ACTIONS(4895), - [anon_sym_goto] = ACTIONS(4895), - [anon_sym_break] = ACTIONS(4895), - [anon_sym_continue] = ACTIONS(4895), - [anon_sym_return] = ACTIONS(4895), - [anon_sym_DOLLARfor] = ACTIONS(4895), - [anon_sym_for] = ACTIONS(4895), - [anon_sym_POUND] = ACTIONS(4895), - [anon_sym_asm] = ACTIONS(4895), - [anon_sym_AT_LBRACK] = ACTIONS(4895), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4893), + [anon_sym_const] = ACTIONS(4893), + [anon_sym_LPAREN] = ACTIONS(4893), + [anon_sym___global] = ACTIONS(4893), + [anon_sym_type] = ACTIONS(4893), + [anon_sym_fn] = ACTIONS(4893), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_struct] = ACTIONS(4893), + [anon_sym_union] = ACTIONS(4893), + [anon_sym_pub] = ACTIONS(4893), + [anon_sym_mut] = ACTIONS(4893), + [anon_sym_enum] = ACTIONS(4893), + [anon_sym_interface] = ACTIONS(4893), + [anon_sym_QMARK] = ACTIONS(4893), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_go] = ACTIONS(4893), + [anon_sym_spawn] = ACTIONS(4893), + [anon_sym_json_DOTdecode] = ACTIONS(4893), + [anon_sym_LBRACK2] = ACTIONS(4893), + [anon_sym_TILDE] = ACTIONS(4893), + [anon_sym_CARET] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_LT_DASH] = ACTIONS(4893), + [sym_none] = ACTIONS(4893), + [sym_true] = ACTIONS(4893), + [sym_false] = ACTIONS(4893), + [sym_nil] = ACTIONS(4893), + [anon_sym_if] = ACTIONS(4893), + [anon_sym_DOLLARif] = ACTIONS(4893), + [anon_sym_match] = ACTIONS(4893), + [anon_sym_select] = ACTIONS(4893), + [anon_sym_lock] = ACTIONS(4893), + [anon_sym_rlock] = ACTIONS(4893), + [anon_sym_unsafe] = ACTIONS(4893), + [anon_sym_sql] = ACTIONS(4893), + [sym_int_literal] = ACTIONS(4893), + [sym_float_literal] = ACTIONS(4893), + [sym_rune_literal] = ACTIONS(4893), + [anon_sym_SQUOTE] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_c_SQUOTE] = ACTIONS(4893), + [anon_sym_c_DQUOTE] = ACTIONS(4893), + [anon_sym_r_SQUOTE] = ACTIONS(4893), + [anon_sym_r_DQUOTE] = ACTIONS(4893), + [sym_pseudo_compile_time_identifier] = ACTIONS(4893), + [anon_sym_shared] = ACTIONS(4893), + [anon_sym_map_LBRACK] = ACTIONS(4893), + [anon_sym_chan] = ACTIONS(4893), + [anon_sym_thread] = ACTIONS(4893), + [anon_sym_atomic] = ACTIONS(4893), + [anon_sym_assert] = ACTIONS(4893), + [anon_sym_defer] = ACTIONS(4893), + [anon_sym_goto] = ACTIONS(4893), + [anon_sym_break] = ACTIONS(4893), + [anon_sym_continue] = ACTIONS(4893), + [anon_sym_return] = ACTIONS(4893), + [anon_sym_DOLLARfor] = ACTIONS(4893), + [anon_sym_for] = ACTIONS(4893), + [anon_sym_POUND] = ACTIONS(4893), + [anon_sym_asm] = ACTIONS(4893), + [anon_sym_AT_LBRACK] = ACTIONS(4893), }, [1905] = { [sym_line_comment] = STATE(1905), [sym_block_comment] = STATE(1905), - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_LF] = ACTIONS(2885), - [anon_sym_CR] = ACTIONS(2885), - [anon_sym_CR_LF] = ACTIONS(2885), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym___global] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_pub] = ACTIONS(2885), - [anon_sym_mut] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_interface] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2885), - [anon_sym_spawn] = ACTIONS(2885), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_LT_DASH] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_nil] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_DOLLARif] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_select] = ACTIONS(2885), - [anon_sym_lock] = ACTIONS(2885), - [anon_sym_rlock] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_sql] = ACTIONS(2885), - [sym_int_literal] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2885), - [anon_sym_shared] = ACTIONS(2885), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2885), - [anon_sym_thread] = ACTIONS(2885), - [anon_sym_atomic] = ACTIONS(2885), - [anon_sym_assert] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_DOLLARfor] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym_AT_LBRACK] = ACTIONS(2885), + [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), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [anon_sym_c_SQUOTE] = ACTIONS(4395), + [anon_sym_c_DQUOTE] = ACTIONS(4395), + [anon_sym_r_SQUOTE] = ACTIONS(4395), + [anon_sym_r_DQUOTE] = 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), }, [1906] = { [sym_line_comment] = STATE(1906), [sym_block_comment] = STATE(1906), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2468), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(2589), + [sym_plain_type] = STATE(2757), + [sym__plain_type_without_special] = STATE(2747), + [sym_anon_struct_type] = STATE(2748), + [sym_multi_return_type] = STATE(2747), + [sym_result_type] = STATE(2747), + [sym_option_type] = STATE(2747), + [sym_qualified_type] = STATE(2589), + [sym_fixed_array_type] = STATE(2748), + [sym_array_type] = STATE(2748), + [sym_pointer_type] = STATE(2748), + [sym_wrong_pointer_type] = STATE(2748), + [sym_map_type] = STATE(2748), + [sym_channel_type] = STATE(2748), + [sym_shared_type] = STATE(2748), + [sym_thread_type] = STATE(2748), + [sym_atomic_type] = STATE(2748), + [sym_generic_type] = STATE(2748), + [sym_function_type] = STATE(2748), + [sym_identifier] = ACTIONS(4895), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_as] = ACTIONS(851), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_as] = ACTIONS(821), [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_LBRACK2] = ACTIONS(851), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(849), - [anon_sym_GT_GT] = ACTIONS(851), - [anon_sym_GT_GT_GT] = ACTIONS(849), - [anon_sym_AMP_CARET] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_or] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(849), - [anon_sym_POUND_LBRACK] = ACTIONS(849), - [anon_sym_is] = ACTIONS(851), - [anon_sym_BANGis] = ACTIONS(849), - [anon_sym_in] = ACTIONS(851), - [anon_sym_BANGin] = ACTIONS(849), - [anon_sym_COLON_EQ] = ACTIONS(849), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(4897), + [anon_sym_fn] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(4903), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(4911), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_GT_GT_GT] = ACTIONS(817), + [anon_sym_AMP_CARET] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_or] = ACTIONS(821), + [anon_sym_QMARK_DOT] = ACTIONS(817), + [anon_sym_POUND_LBRACK] = ACTIONS(817), + [anon_sym_is] = ACTIONS(821), + [anon_sym_BANGis] = ACTIONS(817), + [anon_sym_in] = ACTIONS(821), + [anon_sym_BANGin] = ACTIONS(817), + [anon_sym_shared] = ACTIONS(4913), + [anon_sym_map_LBRACK] = ACTIONS(4915), + [anon_sym_chan] = ACTIONS(4917), + [anon_sym_thread] = ACTIONS(4919), + [anon_sym_atomic] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(821), }, [1907] = { [sym_line_comment] = STATE(1907), [sym_block_comment] = STATE(1907), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(2589), + [sym_plain_type] = STATE(2769), + [sym__plain_type_without_special] = STATE(2747), + [sym_anon_struct_type] = STATE(2748), + [sym_multi_return_type] = STATE(2747), + [sym_result_type] = STATE(2747), + [sym_option_type] = STATE(2747), + [sym_qualified_type] = STATE(2589), + [sym_fixed_array_type] = STATE(2748), + [sym_array_type] = STATE(2748), + [sym_pointer_type] = STATE(2748), + [sym_wrong_pointer_type] = STATE(2748), + [sym_map_type] = STATE(2748), + [sym_channel_type] = STATE(2748), + [sym_shared_type] = STATE(2748), + [sym_thread_type] = STATE(2748), + [sym_atomic_type] = STATE(2748), + [sym_generic_type] = STATE(2748), + [sym_function_type] = STATE(2748), + [sym_identifier] = ACTIONS(4895), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(4897), + [anon_sym_fn] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(4903), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(4911), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(857), + [anon_sym_AMP_CARET] = ACTIONS(857), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(857), + [anon_sym_POUND_LBRACK] = ACTIONS(857), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(857), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(857), + [anon_sym_shared] = ACTIONS(4913), + [anon_sym_map_LBRACK] = ACTIONS(4915), + [anon_sym_chan] = ACTIONS(4917), + [anon_sym_thread] = ACTIONS(4919), + [anon_sym_atomic] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(859), + }, + [1908] = { + [sym_line_comment] = STATE(1908), + [sym_block_comment] = STATE(1908), + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(2589), + [sym_plain_type] = STATE(2773), + [sym__plain_type_without_special] = STATE(2747), + [sym_anon_struct_type] = STATE(2748), + [sym_multi_return_type] = STATE(2747), + [sym_result_type] = STATE(2747), + [sym_option_type] = STATE(2747), + [sym_qualified_type] = STATE(2589), + [sym_fixed_array_type] = STATE(2748), + [sym_array_type] = STATE(2748), + [sym_pointer_type] = STATE(2748), + [sym_wrong_pointer_type] = STATE(2748), + [sym_map_type] = STATE(2748), + [sym_channel_type] = STATE(2748), + [sym_shared_type] = STATE(2748), + [sym_thread_type] = STATE(2748), + [sym_atomic_type] = STATE(2748), + [sym_generic_type] = STATE(2748), + [sym_function_type] = STATE(2748), + [sym_identifier] = ACTIONS(4895), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), [anon_sym_LBRACE] = ACTIONS(853), [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(4897), + [anon_sym_fn] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(855), [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), [anon_sym_EQ_EQ] = ACTIONS(853), [anon_sym_BANG_EQ] = ACTIONS(853), [anon_sym_LT_EQ] = ACTIONS(853), [anon_sym_GT_EQ] = ACTIONS(853), [anon_sym_DOT_DOT_DOT] = ACTIONS(853), [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(4903), [anon_sym_PLUS_PLUS] = ACTIONS(853), [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4909), [anon_sym_CARET] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(4911), [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(855), [anon_sym_GT_GT_GT] = ACTIONS(853), [anon_sym_AMP_CARET] = ACTIONS(853), [anon_sym_AMP_AMP] = ACTIONS(853), [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), + [anon_sym_or] = ACTIONS(855), [anon_sym_QMARK_DOT] = ACTIONS(853), [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), + [anon_sym_is] = ACTIONS(855), [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), + [anon_sym_in] = ACTIONS(855), [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(857), - }, - [1908] = { - [sym_line_comment] = STATE(1908), - [sym_block_comment] = STATE(1908), - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(2579), - [sym_plain_type] = STATE(2768), - [sym__plain_type_without_special] = STATE(2746), - [sym_anon_struct_type] = STATE(2747), - [sym_multi_return_type] = STATE(2746), - [sym_result_type] = STATE(2746), - [sym_option_type] = STATE(2746), - [sym_qualified_type] = STATE(2579), - [sym_fixed_array_type] = STATE(2747), - [sym_array_type] = STATE(2747), - [sym_pointer_type] = STATE(2747), - [sym_wrong_pointer_type] = STATE(2747), - [sym_map_type] = STATE(2747), - [sym_channel_type] = STATE(2747), - [sym_shared_type] = STATE(2747), - [sym_thread_type] = STATE(2747), - [sym_atomic_type] = STATE(2747), - [sym_generic_type] = STATE(2747), - [sym_function_type] = STATE(2747), - [sym_identifier] = ACTIONS(4899), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(4901), - [anon_sym_fn] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(879), - [anon_sym_AMP_CARET] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(879), - [anon_sym_POUND_LBRACK] = ACTIONS(879), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(879), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(879), - [anon_sym_shared] = ACTIONS(4917), - [anon_sym_map_LBRACK] = ACTIONS(4919), - [anon_sym_chan] = ACTIONS(4921), - [anon_sym_thread] = ACTIONS(4923), - [anon_sym_atomic] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(881), + [anon_sym_shared] = ACTIONS(4913), + [anon_sym_map_LBRACK] = ACTIONS(4915), + [anon_sym_chan] = ACTIONS(4917), + [anon_sym_thread] = ACTIONS(4919), + [anon_sym_atomic] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(855), }, [1909] = { [sym_line_comment] = STATE(1909), [sym_block_comment] = STATE(1909), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_CR] = ACTIONS(857), - [anon_sym_CR_LF] = ACTIONS(857), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_CR] = ACTIONS(865), + [anon_sym_CR_LF] = ACTIONS(865), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4927), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(857), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(857), - [anon_sym_AMP_CARET] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(857), - [anon_sym_POUND_LBRACK] = ACTIONS(857), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(857), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_BANG] = ACTIONS(4923), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(865), + [anon_sym_AMP_CARET] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(865), + [anon_sym_POUND_LBRACK] = ACTIONS(865), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(865), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(351), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -220870,397 +221108,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1910] = { [sym_line_comment] = STATE(1910), [sym_block_comment] = STATE(1910), - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(2579), - [sym_plain_type] = STATE(2756), - [sym__plain_type_without_special] = STATE(2746), - [sym_anon_struct_type] = STATE(2747), - [sym_multi_return_type] = STATE(2746), - [sym_result_type] = STATE(2746), - [sym_option_type] = STATE(2746), - [sym_qualified_type] = STATE(2579), - [sym_fixed_array_type] = STATE(2747), - [sym_array_type] = STATE(2747), - [sym_pointer_type] = STATE(2747), - [sym_wrong_pointer_type] = STATE(2747), - [sym_map_type] = STATE(2747), - [sym_channel_type] = STATE(2747), - [sym_shared_type] = STATE(2747), - [sym_thread_type] = STATE(2747), - [sym_atomic_type] = STATE(2747), - [sym_generic_type] = STATE(2747), - [sym_function_type] = STATE(2747), - [sym_identifier] = ACTIONS(4899), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_COMMA] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(4901), - [anon_sym_fn] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(875), - [anon_sym_AMP_CARET] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(875), - [anon_sym_POUND_LBRACK] = ACTIONS(875), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(875), - [anon_sym_shared] = ACTIONS(4917), - [anon_sym_map_LBRACK] = ACTIONS(4919), - [anon_sym_chan] = ACTIONS(4921), - [anon_sym_thread] = ACTIONS(4923), - [anon_sym_atomic] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_reference_expression] = STATE(4557), + [sym_type_reference_expression] = STATE(2609), + [sym_plain_type] = STATE(2844), + [sym__plain_type_without_special] = STATE(2888), + [sym_anon_struct_type] = STATE(2889), + [sym_multi_return_type] = STATE(2888), + [sym_result_type] = STATE(2888), + [sym_option_type] = STATE(2888), + [sym_qualified_type] = STATE(2609), + [sym_fixed_array_type] = STATE(2889), + [sym_array_type] = STATE(2889), + [sym_pointer_type] = STATE(2889), + [sym_wrong_pointer_type] = STATE(2889), + [sym_map_type] = STATE(2889), + [sym_channel_type] = STATE(2889), + [sym_shared_type] = STATE(2889), + [sym_thread_type] = STATE(2889), + [sym_atomic_type] = STATE(2889), + [sym_generic_type] = STATE(2889), + [sym_function_type] = STATE(2889), + [sym_identifier] = ACTIONS(4925), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_CR] = ACTIONS(855), + [anon_sym_CR_LF] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_fn] = ACTIONS(4929), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(4931), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_struct] = ACTIONS(4933), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4937), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_GT_GT_GT] = ACTIONS(855), + [anon_sym_AMP_CARET] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_QMARK_DOT] = ACTIONS(855), + [anon_sym_POUND_LBRACK] = ACTIONS(855), + [anon_sym_is] = ACTIONS(855), + [anon_sym_BANGis] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_BANGin] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(4943), + [anon_sym_map_LBRACK] = ACTIONS(4945), + [anon_sym_chan] = ACTIONS(4947), + [anon_sym_thread] = ACTIONS(4949), + [anon_sym_atomic] = ACTIONS(4951), }, [1911] = { [sym_line_comment] = STATE(1911), [sym_block_comment] = STATE(1911), - [ts_builtin_sym_end] = ACTIONS(4929), - [sym_identifier] = ACTIONS(4931), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_module] = ACTIONS(4931), - [anon_sym_import] = ACTIONS(4931), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym___global] = ACTIONS(4931), - [anon_sym_type] = ACTIONS(4931), - [anon_sym_fn] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_struct] = ACTIONS(4931), - [anon_sym_union] = ACTIONS(4931), - [anon_sym_pub] = ACTIONS(4931), - [anon_sym_mut] = ACTIONS(4931), - [anon_sym_enum] = ACTIONS(4931), - [anon_sym_interface] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_go] = ACTIONS(4931), - [anon_sym_spawn] = ACTIONS(4931), - [anon_sym_json_DOTdecode] = ACTIONS(4929), - [anon_sym_LBRACK2] = ACTIONS(4929), - [anon_sym_TILDE] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym_AMP] = ACTIONS(4929), - [anon_sym_LT_DASH] = ACTIONS(4929), - [sym_none] = ACTIONS(4931), - [sym_true] = ACTIONS(4931), - [sym_false] = ACTIONS(4931), - [sym_nil] = ACTIONS(4931), - [anon_sym_if] = ACTIONS(4931), - [anon_sym_DOLLARif] = ACTIONS(4931), - [anon_sym_match] = ACTIONS(4931), - [anon_sym_select] = ACTIONS(4931), - [anon_sym_lock] = ACTIONS(4931), - [anon_sym_rlock] = ACTIONS(4931), - [anon_sym_unsafe] = ACTIONS(4931), - [anon_sym_sql] = ACTIONS(4931), - [sym_int_literal] = ACTIONS(4931), - [sym_float_literal] = ACTIONS(4929), - [sym_rune_literal] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DQUOTE] = ACTIONS(4929), - [anon_sym_c_SQUOTE] = ACTIONS(4929), - [anon_sym_c_DQUOTE] = ACTIONS(4929), - [anon_sym_r_SQUOTE] = ACTIONS(4929), - [anon_sym_r_DQUOTE] = ACTIONS(4929), - [sym_pseudo_compile_time_identifier] = ACTIONS(4931), - [anon_sym_shared] = ACTIONS(4931), - [anon_sym_map_LBRACK] = ACTIONS(4929), - [anon_sym_chan] = ACTIONS(4931), - [anon_sym_thread] = ACTIONS(4931), - [anon_sym_atomic] = ACTIONS(4931), - [anon_sym_assert] = ACTIONS(4931), - [anon_sym_defer] = ACTIONS(4931), - [anon_sym_goto] = ACTIONS(4931), - [anon_sym_break] = ACTIONS(4931), - [anon_sym_continue] = ACTIONS(4931), - [anon_sym_return] = ACTIONS(4931), - [anon_sym_DOLLARfor] = ACTIONS(4931), - [anon_sym_for] = ACTIONS(4931), - [anon_sym_POUND] = ACTIONS(4929), - [anon_sym_asm] = ACTIONS(4931), - [anon_sym_AT_LBRACK] = ACTIONS(4929), + [sym_reference_expression] = STATE(4557), + [sym_type_reference_expression] = STATE(2609), + [sym_plain_type] = STATE(2848), + [sym__plain_type_without_special] = STATE(2888), + [sym_anon_struct_type] = STATE(2889), + [sym_multi_return_type] = STATE(2888), + [sym_result_type] = STATE(2888), + [sym_option_type] = STATE(2888), + [sym_qualified_type] = STATE(2609), + [sym_fixed_array_type] = STATE(2889), + [sym_array_type] = STATE(2889), + [sym_pointer_type] = STATE(2889), + [sym_wrong_pointer_type] = STATE(2889), + [sym_map_type] = STATE(2889), + [sym_channel_type] = STATE(2889), + [sym_shared_type] = STATE(2889), + [sym_thread_type] = STATE(2889), + [sym_atomic_type] = STATE(2889), + [sym_generic_type] = STATE(2889), + [sym_function_type] = STATE(2889), + [sym_identifier] = ACTIONS(4925), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_CR] = ACTIONS(859), + [anon_sym_CR_LF] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_fn] = ACTIONS(4929), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(4931), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_struct] = ACTIONS(4933), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4937), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(4941), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(859), + [anon_sym_AMP_CARET] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_QMARK_DOT] = ACTIONS(859), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [anon_sym_is] = ACTIONS(859), + [anon_sym_BANGis] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_BANGin] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(4943), + [anon_sym_map_LBRACK] = ACTIONS(4945), + [anon_sym_chan] = ACTIONS(4947), + [anon_sym_thread] = ACTIONS(4949), + [anon_sym_atomic] = ACTIONS(4951), }, [1912] = { [sym_line_comment] = STATE(1912), [sym_block_comment] = STATE(1912), - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(2579), - [sym_plain_type] = STATE(2772), - [sym__plain_type_without_special] = STATE(2746), - [sym_anon_struct_type] = STATE(2747), - [sym_multi_return_type] = STATE(2746), - [sym_result_type] = STATE(2746), - [sym_option_type] = STATE(2746), - [sym_qualified_type] = STATE(2579), - [sym_fixed_array_type] = STATE(2747), - [sym_array_type] = STATE(2747), - [sym_pointer_type] = STATE(2747), - [sym_wrong_pointer_type] = STATE(2747), - [sym_map_type] = STATE(2747), - [sym_channel_type] = STATE(2747), - [sym_shared_type] = STATE(2747), - [sym_thread_type] = STATE(2747), - [sym_atomic_type] = STATE(2747), - [sym_generic_type] = STATE(2747), - [sym_function_type] = STATE(2747), - [sym_identifier] = ACTIONS(4899), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2489), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_as] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(4901), - [anon_sym_fn] = ACTIONS(4903), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4905), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(4907), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(4909), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(821), - [anon_sym_GT_GT_GT] = ACTIONS(817), - [anon_sym_AMP_CARET] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_or] = ACTIONS(821), - [anon_sym_QMARK_DOT] = ACTIONS(817), - [anon_sym_POUND_LBRACK] = ACTIONS(817), - [anon_sym_is] = ACTIONS(821), - [anon_sym_BANGis] = ACTIONS(817), - [anon_sym_in] = ACTIONS(821), - [anon_sym_BANGin] = ACTIONS(817), - [anon_sym_shared] = ACTIONS(4917), - [anon_sym_map_LBRACK] = ACTIONS(4919), - [anon_sym_chan] = ACTIONS(4921), - [anon_sym_thread] = ACTIONS(4923), - [anon_sym_atomic] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_as] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_LBRACK2] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(849), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_GT_GT_GT] = ACTIONS(849), + [anon_sym_AMP_CARET] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_or] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(849), + [anon_sym_POUND_LBRACK] = ACTIONS(849), + [anon_sym_is] = ACTIONS(851), + [anon_sym_BANGis] = ACTIONS(849), + [anon_sym_in] = ACTIONS(851), + [anon_sym_BANGin] = ACTIONS(849), + [anon_sym_COLON_EQ] = ACTIONS(849), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1913] = { [sym_line_comment] = STATE(1913), [sym_block_comment] = STATE(1913), - [sym_reference_expression] = STATE(4555), - [sym_type_reference_expression] = STATE(2589), - [sym_plain_type] = STATE(2848), - [sym__plain_type_without_special] = STATE(2887), - [sym_anon_struct_type] = STATE(2891), - [sym_multi_return_type] = STATE(2887), - [sym_result_type] = STATE(2887), - [sym_option_type] = STATE(2887), - [sym_qualified_type] = STATE(2589), - [sym_fixed_array_type] = STATE(2891), - [sym_array_type] = STATE(2891), - [sym_pointer_type] = STATE(2891), - [sym_wrong_pointer_type] = STATE(2891), - [sym_map_type] = STATE(2891), - [sym_channel_type] = STATE(2891), - [sym_shared_type] = STATE(2891), - [sym_thread_type] = STATE(2891), - [sym_atomic_type] = STATE(2891), - [sym_generic_type] = STATE(2891), - [sym_function_type] = STATE(2891), - [sym_identifier] = ACTIONS(4933), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_CR] = ACTIONS(881), - [anon_sym_CR_LF] = ACTIONS(881), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(4935), - [anon_sym_fn] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_LT] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(881), - [anon_sym_LBRACK2] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(881), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_LT_LT] = ACTIONS(881), - [anon_sym_GT_GT] = ACTIONS(881), - [anon_sym_GT_GT_GT] = ACTIONS(881), - [anon_sym_AMP_CARET] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_or] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(881), - [anon_sym_POUND_LBRACK] = ACTIONS(881), - [anon_sym_is] = ACTIONS(881), - [anon_sym_BANGis] = ACTIONS(881), - [anon_sym_in] = ACTIONS(881), - [anon_sym_BANGin] = ACTIONS(881), - [anon_sym_shared] = ACTIONS(4951), - [anon_sym_map_LBRACK] = ACTIONS(4953), - [anon_sym_chan] = ACTIONS(4955), - [anon_sym_thread] = ACTIONS(4957), - [anon_sym_atomic] = ACTIONS(4959), - }, - [1914] = { - [sym_line_comment] = STATE(1914), - [sym_block_comment] = STATE(1914), - [sym_reference_expression] = STATE(4555), - [sym_type_reference_expression] = STATE(2589), - [sym_plain_type] = STATE(2895), - [sym__plain_type_without_special] = STATE(2887), - [sym_anon_struct_type] = STATE(2891), - [sym_multi_return_type] = STATE(2887), - [sym_result_type] = STATE(2887), - [sym_option_type] = STATE(2887), - [sym_qualified_type] = STATE(2589), - [sym_fixed_array_type] = STATE(2891), - [sym_array_type] = STATE(2891), - [sym_pointer_type] = STATE(2891), - [sym_wrong_pointer_type] = STATE(2891), - [sym_map_type] = STATE(2891), - [sym_channel_type] = STATE(2891), - [sym_shared_type] = STATE(2891), - [sym_thread_type] = STATE(2891), - [sym_atomic_type] = STATE(2891), - [sym_generic_type] = STATE(2891), - [sym_function_type] = STATE(2891), - [sym_identifier] = ACTIONS(4933), - [anon_sym_LF] = ACTIONS(877), - [anon_sym_CR] = ACTIONS(877), - [anon_sym_CR_LF] = ACTIONS(877), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_as] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(4935), - [anon_sym_fn] = ACTIONS(4937), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_LBRACK2] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(877), - [anon_sym_AMP_CARET] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_or] = ACTIONS(877), - [anon_sym_QMARK_DOT] = ACTIONS(877), - [anon_sym_POUND_LBRACK] = ACTIONS(877), - [anon_sym_is] = ACTIONS(877), - [anon_sym_BANGis] = ACTIONS(877), - [anon_sym_in] = ACTIONS(877), - [anon_sym_BANGin] = ACTIONS(877), - [anon_sym_shared] = ACTIONS(4951), - [anon_sym_map_LBRACK] = ACTIONS(4953), - [anon_sym_chan] = ACTIONS(4955), - [anon_sym_thread] = ACTIONS(4957), - [anon_sym_atomic] = ACTIONS(4959), - }, - [1915] = { - [sym_line_comment] = STATE(1915), - [sym_block_comment] = STATE(1915), - [sym_reference_expression] = STATE(4555), - [sym_type_reference_expression] = STATE(2589), - [sym_plain_type] = STATE(2844), - [sym__plain_type_without_special] = STATE(2887), - [sym_anon_struct_type] = STATE(2891), - [sym_multi_return_type] = STATE(2887), - [sym_result_type] = STATE(2887), - [sym_option_type] = STATE(2887), - [sym_qualified_type] = STATE(2589), - [sym_fixed_array_type] = STATE(2891), - [sym_array_type] = STATE(2891), - [sym_pointer_type] = STATE(2891), - [sym_wrong_pointer_type] = STATE(2891), - [sym_map_type] = STATE(2891), - [sym_channel_type] = STATE(2891), - [sym_shared_type] = STATE(2891), - [sym_thread_type] = STATE(2891), - [sym_atomic_type] = STATE(2891), - [sym_generic_type] = STATE(2891), - [sym_function_type] = STATE(2891), - [sym_identifier] = ACTIONS(4933), + [sym_reference_expression] = STATE(4557), + [sym_type_reference_expression] = STATE(2609), + [sym_plain_type] = STATE(2897), + [sym__plain_type_without_special] = STATE(2888), + [sym_anon_struct_type] = STATE(2889), + [sym_multi_return_type] = STATE(2888), + [sym_result_type] = STATE(2888), + [sym_option_type] = STATE(2888), + [sym_qualified_type] = STATE(2609), + [sym_fixed_array_type] = STATE(2889), + [sym_array_type] = STATE(2889), + [sym_pointer_type] = STATE(2889), + [sym_wrong_pointer_type] = STATE(2889), + [sym_map_type] = STATE(2889), + [sym_channel_type] = STATE(2889), + [sym_shared_type] = STATE(2889), + [sym_thread_type] = STATE(2889), + [sym_atomic_type] = STATE(2889), + [sym_generic_type] = STATE(2889), + [sym_function_type] = STATE(2889), + [sym_identifier] = ACTIONS(4925), [anon_sym_LF] = ACTIONS(821), [anon_sym_CR] = ACTIONS(821), [anon_sym_CR_LF] = ACTIONS(821), @@ -221269,11 +221359,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(821), [anon_sym_DOT] = ACTIONS(821), [anon_sym_as] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(4935), - [anon_sym_fn] = ACTIONS(4937), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_fn] = ACTIONS(4929), [anon_sym_PLUS] = ACTIONS(821), [anon_sym_DASH] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4931), [anon_sym_SLASH] = ACTIONS(821), [anon_sym_PERCENT] = ACTIONS(821), [anon_sym_LT] = ACTIONS(821), @@ -221283,15 +221373,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(821), [anon_sym_GT_EQ] = ACTIONS(821), [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(4941), + [anon_sym_struct] = ACTIONS(4933), [anon_sym_PLUS_PLUS] = ACTIONS(821), [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4937), [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_LBRACK2] = ACTIONS(4947), + [anon_sym_LBRACK2] = ACTIONS(4939), [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(4941), [anon_sym_LT_LT] = ACTIONS(821), [anon_sym_GT_GT] = ACTIONS(821), [anon_sym_GT_GT_GT] = ACTIONS(821), @@ -221305,59 +221395,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(821), [anon_sym_in] = ACTIONS(821), [anon_sym_BANGin] = ACTIONS(821), - [anon_sym_shared] = ACTIONS(4951), - [anon_sym_map_LBRACK] = ACTIONS(4953), - [anon_sym_chan] = ACTIONS(4955), + [anon_sym_shared] = ACTIONS(4943), + [anon_sym_map_LBRACK] = ACTIONS(4945), + [anon_sym_chan] = ACTIONS(4947), + [anon_sym_thread] = ACTIONS(4949), + [anon_sym_atomic] = ACTIONS(4951), + }, + [1914] = { + [sym_line_comment] = STATE(1914), + [sym_block_comment] = STATE(1914), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(861), + [anon_sym_AMP_CARET] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(865), + }, + [1915] = { + [sym_line_comment] = STATE(1915), + [sym_block_comment] = STATE(1915), + [ts_builtin_sym_end] = ACTIONS(4955), + [sym_identifier] = ACTIONS(4957), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(4957), + [anon_sym_import] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_const] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym___global] = ACTIONS(4957), + [anon_sym_type] = ACTIONS(4957), + [anon_sym_fn] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_struct] = ACTIONS(4957), + [anon_sym_union] = ACTIONS(4957), + [anon_sym_pub] = ACTIONS(4957), + [anon_sym_mut] = ACTIONS(4957), + [anon_sym_enum] = ACTIONS(4957), + [anon_sym_interface] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_go] = ACTIONS(4957), + [anon_sym_spawn] = ACTIONS(4957), + [anon_sym_json_DOTdecode] = ACTIONS(4955), + [anon_sym_LBRACK2] = ACTIONS(4955), + [anon_sym_TILDE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_DASH] = ACTIONS(4955), + [sym_none] = ACTIONS(4957), + [sym_true] = ACTIONS(4957), + [sym_false] = ACTIONS(4957), + [sym_nil] = ACTIONS(4957), + [anon_sym_if] = ACTIONS(4957), + [anon_sym_DOLLARif] = ACTIONS(4957), + [anon_sym_match] = ACTIONS(4957), + [anon_sym_select] = ACTIONS(4957), + [anon_sym_lock] = ACTIONS(4957), + [anon_sym_rlock] = ACTIONS(4957), + [anon_sym_unsafe] = ACTIONS(4957), + [anon_sym_sql] = ACTIONS(4957), + [sym_int_literal] = ACTIONS(4957), + [sym_float_literal] = ACTIONS(4955), + [sym_rune_literal] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_c_SQUOTE] = ACTIONS(4955), + [anon_sym_c_DQUOTE] = ACTIONS(4955), + [anon_sym_r_SQUOTE] = ACTIONS(4955), + [anon_sym_r_DQUOTE] = ACTIONS(4955), + [sym_pseudo_compile_time_identifier] = ACTIONS(4957), + [anon_sym_shared] = ACTIONS(4957), + [anon_sym_map_LBRACK] = ACTIONS(4955), + [anon_sym_chan] = ACTIONS(4957), [anon_sym_thread] = ACTIONS(4957), - [anon_sym_atomic] = ACTIONS(4959), + [anon_sym_atomic] = ACTIONS(4957), + [anon_sym_assert] = ACTIONS(4957), + [anon_sym_defer] = ACTIONS(4957), + [anon_sym_goto] = ACTIONS(4957), + [anon_sym_break] = ACTIONS(4957), + [anon_sym_continue] = ACTIONS(4957), + [anon_sym_return] = ACTIONS(4957), + [anon_sym_DOLLARfor] = ACTIONS(4957), + [anon_sym_for] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4955), + [anon_sym_asm] = ACTIONS(4957), + [anon_sym_AT_LBRACK] = ACTIONS(4955), }, [1916] = { [sym_line_comment] = STATE(1916), [sym_block_comment] = STATE(1916), - [ts_builtin_sym_end] = ACTIONS(4961), - [sym_identifier] = ACTIONS(4963), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2484), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(4959), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4963), - [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_DOT] = ACTIONS(4959), [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_const] = ACTIONS(4963), [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym___global] = ACTIONS(4963), - [anon_sym_type] = ACTIONS(4963), - [anon_sym_fn] = ACTIONS(4963), + [anon_sym_fn] = ACTIONS(4959), [anon_sym_PLUS] = ACTIONS(4961), [anon_sym_DASH] = ACTIONS(4961), [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_struct] = ACTIONS(4963), - [anon_sym_union] = ACTIONS(4963), - [anon_sym_pub] = ACTIONS(4963), - [anon_sym_mut] = ACTIONS(4963), - [anon_sym_enum] = ACTIONS(4963), - [anon_sym_interface] = ACTIONS(4963), + [anon_sym_struct] = ACTIONS(4959), + [anon_sym_mut] = ACTIONS(4959), [anon_sym_QMARK] = ACTIONS(4961), [anon_sym_BANG] = ACTIONS(4961), - [anon_sym_go] = ACTIONS(4963), - [anon_sym_spawn] = ACTIONS(4963), + [anon_sym_go] = ACTIONS(4959), + [anon_sym_spawn] = ACTIONS(4959), [anon_sym_json_DOTdecode] = ACTIONS(4961), [anon_sym_LBRACK2] = ACTIONS(4961), [anon_sym_TILDE] = ACTIONS(4961), [anon_sym_CARET] = ACTIONS(4961), [anon_sym_AMP] = ACTIONS(4961), [anon_sym_LT_DASH] = ACTIONS(4961), - [sym_none] = ACTIONS(4963), - [sym_true] = ACTIONS(4963), - [sym_false] = ACTIONS(4963), - [sym_nil] = ACTIONS(4963), - [anon_sym_if] = ACTIONS(4963), - [anon_sym_DOLLARif] = ACTIONS(4963), - [anon_sym_match] = ACTIONS(4963), - [anon_sym_select] = ACTIONS(4963), - [anon_sym_lock] = ACTIONS(4963), - [anon_sym_rlock] = ACTIONS(4963), - [anon_sym_unsafe] = ACTIONS(4963), - [anon_sym_sql] = ACTIONS(4963), - [sym_int_literal] = ACTIONS(4963), + [sym_none] = ACTIONS(4959), + [sym_true] = ACTIONS(4959), + [sym_false] = ACTIONS(4959), + [sym_nil] = ACTIONS(4959), + [anon_sym_if] = ACTIONS(4959), + [anon_sym_DOLLARif] = ACTIONS(4959), + [anon_sym_match] = ACTIONS(4959), + [anon_sym_select] = ACTIONS(4959), + [anon_sym_lock] = ACTIONS(4959), + [anon_sym_rlock] = ACTIONS(4959), + [anon_sym_unsafe] = ACTIONS(4959), + [anon_sym_sql] = ACTIONS(4959), + [sym_int_literal] = ACTIONS(4959), [sym_float_literal] = ACTIONS(4961), [sym_rune_literal] = ACTIONS(4961), [anon_sym_SQUOTE] = ACTIONS(4961), @@ -221366,165 +221615,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_DQUOTE] = ACTIONS(4961), [anon_sym_r_SQUOTE] = ACTIONS(4961), [anon_sym_r_DQUOTE] = ACTIONS(4961), - [sym_pseudo_compile_time_identifier] = ACTIONS(4963), - [anon_sym_shared] = ACTIONS(4963), + [sym_pseudo_compile_time_identifier] = ACTIONS(4959), + [anon_sym_shared] = ACTIONS(4959), [anon_sym_map_LBRACK] = ACTIONS(4961), - [anon_sym_chan] = ACTIONS(4963), - [anon_sym_thread] = ACTIONS(4963), - [anon_sym_atomic] = ACTIONS(4963), - [anon_sym_assert] = ACTIONS(4963), - [anon_sym_defer] = ACTIONS(4963), - [anon_sym_goto] = ACTIONS(4963), - [anon_sym_break] = ACTIONS(4963), - [anon_sym_continue] = ACTIONS(4963), - [anon_sym_return] = ACTIONS(4963), - [anon_sym_DOLLARfor] = ACTIONS(4963), - [anon_sym_for] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4961), - [anon_sym_asm] = ACTIONS(4963), - [anon_sym_AT_LBRACK] = ACTIONS(4961), + [anon_sym_chan] = ACTIONS(4959), + [anon_sym_thread] = ACTIONS(4959), + [anon_sym_atomic] = ACTIONS(4959), }, [1917] = { [sym_line_comment] = STATE(1917), [sym_block_comment] = STATE(1917), - [ts_builtin_sym_end] = ACTIONS(4965), - [sym_identifier] = ACTIONS(4967), + [ts_builtin_sym_end] = ACTIONS(4963), + [sym_identifier] = ACTIONS(4965), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4967), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_const] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym___global] = ACTIONS(4967), - [anon_sym_type] = ACTIONS(4967), - [anon_sym_fn] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4965), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_struct] = ACTIONS(4967), - [anon_sym_union] = ACTIONS(4967), - [anon_sym_pub] = ACTIONS(4967), - [anon_sym_mut] = ACTIONS(4967), - [anon_sym_enum] = ACTIONS(4967), - [anon_sym_interface] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4965), - [anon_sym_BANG] = ACTIONS(4965), - [anon_sym_go] = ACTIONS(4967), - [anon_sym_spawn] = ACTIONS(4967), - [anon_sym_json_DOTdecode] = ACTIONS(4965), - [anon_sym_LBRACK2] = ACTIONS(4965), - [anon_sym_TILDE] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_LT_DASH] = ACTIONS(4965), - [sym_none] = ACTIONS(4967), - [sym_true] = ACTIONS(4967), - [sym_false] = ACTIONS(4967), - [sym_nil] = ACTIONS(4967), - [anon_sym_if] = ACTIONS(4967), - [anon_sym_DOLLARif] = ACTIONS(4967), - [anon_sym_match] = ACTIONS(4967), - [anon_sym_select] = ACTIONS(4967), - [anon_sym_lock] = ACTIONS(4967), - [anon_sym_rlock] = ACTIONS(4967), - [anon_sym_unsafe] = ACTIONS(4967), - [anon_sym_sql] = ACTIONS(4967), - [sym_int_literal] = ACTIONS(4967), - [sym_float_literal] = ACTIONS(4965), - [sym_rune_literal] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4965), - [anon_sym_DQUOTE] = ACTIONS(4965), - [anon_sym_c_SQUOTE] = ACTIONS(4965), - [anon_sym_c_DQUOTE] = ACTIONS(4965), - [anon_sym_r_SQUOTE] = ACTIONS(4965), - [anon_sym_r_DQUOTE] = ACTIONS(4965), - [sym_pseudo_compile_time_identifier] = ACTIONS(4967), - [anon_sym_shared] = ACTIONS(4967), - [anon_sym_map_LBRACK] = ACTIONS(4965), - [anon_sym_chan] = ACTIONS(4967), - [anon_sym_thread] = ACTIONS(4967), - [anon_sym_atomic] = ACTIONS(4967), - [anon_sym_assert] = ACTIONS(4967), - [anon_sym_defer] = ACTIONS(4967), - [anon_sym_goto] = ACTIONS(4967), - [anon_sym_break] = ACTIONS(4967), - [anon_sym_continue] = ACTIONS(4967), - [anon_sym_return] = ACTIONS(4967), - [anon_sym_DOLLARfor] = ACTIONS(4967), - [anon_sym_for] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4965), - [anon_sym_asm] = ACTIONS(4967), - [anon_sym_AT_LBRACK] = ACTIONS(4965), + [anon_sym_import] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4965), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_const] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4963), + [anon_sym___global] = ACTIONS(4965), + [anon_sym_type] = ACTIONS(4965), + [anon_sym_fn] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_struct] = ACTIONS(4965), + [anon_sym_union] = ACTIONS(4965), + [anon_sym_pub] = ACTIONS(4965), + [anon_sym_mut] = ACTIONS(4965), + [anon_sym_enum] = ACTIONS(4965), + [anon_sym_interface] = ACTIONS(4965), + [anon_sym_QMARK] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_go] = ACTIONS(4965), + [anon_sym_spawn] = ACTIONS(4965), + [anon_sym_json_DOTdecode] = ACTIONS(4963), + [anon_sym_LBRACK2] = ACTIONS(4963), + [anon_sym_TILDE] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_LT_DASH] = ACTIONS(4963), + [sym_none] = ACTIONS(4965), + [sym_true] = ACTIONS(4965), + [sym_false] = ACTIONS(4965), + [sym_nil] = ACTIONS(4965), + [anon_sym_if] = ACTIONS(4965), + [anon_sym_DOLLARif] = ACTIONS(4965), + [anon_sym_match] = ACTIONS(4965), + [anon_sym_select] = ACTIONS(4965), + [anon_sym_lock] = ACTIONS(4965), + [anon_sym_rlock] = ACTIONS(4965), + [anon_sym_unsafe] = ACTIONS(4965), + [anon_sym_sql] = ACTIONS(4965), + [sym_int_literal] = ACTIONS(4965), + [sym_float_literal] = ACTIONS(4963), + [sym_rune_literal] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DQUOTE] = ACTIONS(4963), + [anon_sym_c_SQUOTE] = ACTIONS(4963), + [anon_sym_c_DQUOTE] = ACTIONS(4963), + [anon_sym_r_SQUOTE] = ACTIONS(4963), + [anon_sym_r_DQUOTE] = ACTIONS(4963), + [sym_pseudo_compile_time_identifier] = ACTIONS(4965), + [anon_sym_shared] = ACTIONS(4965), + [anon_sym_map_LBRACK] = ACTIONS(4963), + [anon_sym_chan] = ACTIONS(4965), + [anon_sym_thread] = ACTIONS(4965), + [anon_sym_atomic] = ACTIONS(4965), + [anon_sym_assert] = ACTIONS(4965), + [anon_sym_defer] = ACTIONS(4965), + [anon_sym_goto] = ACTIONS(4965), + [anon_sym_break] = ACTIONS(4965), + [anon_sym_continue] = ACTIONS(4965), + [anon_sym_return] = ACTIONS(4965), + [anon_sym_DOLLARfor] = ACTIONS(4965), + [anon_sym_for] = ACTIONS(4965), + [anon_sym_POUND] = ACTIONS(4963), + [anon_sym_asm] = ACTIONS(4965), + [anon_sym_AT_LBRACK] = ACTIONS(4963), }, [1918] = { [sym_line_comment] = STATE(1918), [sym_block_comment] = STATE(1918), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_as] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_as] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(853), - [anon_sym_AMP_CARET] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_COLON_EQ] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), + [anon_sym_BANG] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(861), + [anon_sym_AMP_CARET] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), @@ -221533,6 +221771,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1919] = { [sym_line_comment] = STATE(1919), [sym_block_comment] = STATE(1919), + [sym_reference_expression] = STATE(4609), + [sym_type_reference_expression] = STATE(3649), + [sym_plain_type] = STATE(2458), + [sym__plain_type_without_special] = STATE(2416), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2416), + [sym_result_type] = STATE(2416), + [sym_option_type] = STATE(2416), + [sym_qualified_type] = STATE(3649), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_as] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_LBRACK2] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(861), + [anon_sym_AMP_CARET] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_or] = ACTIONS(865), + [anon_sym_QMARK_DOT] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(861), + [anon_sym_is] = ACTIONS(865), + [anon_sym_BANGis] = ACTIONS(861), + [anon_sym_in] = ACTIONS(865), + [anon_sym_BANGin] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_shared] = ACTIONS(881), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1920] = { + [sym_line_comment] = STATE(1920), + [sym_block_comment] = STATE(1920), [ts_builtin_sym_end] = ACTIONS(4969), [sym_identifier] = ACTIONS(4971), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -221603,9 +221914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4971), [anon_sym_AT_LBRACK] = ACTIONS(4969), }, - [1920] = { - [sym_line_comment] = STATE(1920), - [sym_block_comment] = STATE(1920), + [1921] = { + [sym_line_comment] = STATE(1921), + [sym_block_comment] = STATE(1921), [ts_builtin_sym_end] = ACTIONS(4973), [sym_identifier] = ACTIONS(4975), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -221676,2410 +221987,2203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4975), [anon_sym_AT_LBRACK] = ACTIONS(4973), }, - [1921] = { - [sym_line_comment] = STATE(1921), - [sym_block_comment] = STATE(1921), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2443), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(4977), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_fn] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_struct] = ACTIONS(4977), - [anon_sym_mut] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_go] = ACTIONS(4977), - [anon_sym_spawn] = ACTIONS(4977), - [anon_sym_json_DOTdecode] = ACTIONS(4979), - [anon_sym_LBRACK2] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_CARET] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_LT_DASH] = ACTIONS(4979), - [sym_none] = ACTIONS(4977), - [sym_true] = ACTIONS(4977), - [sym_false] = ACTIONS(4977), - [sym_nil] = ACTIONS(4977), - [anon_sym_if] = ACTIONS(4977), - [anon_sym_DOLLARif] = ACTIONS(4977), - [anon_sym_match] = ACTIONS(4977), - [anon_sym_select] = ACTIONS(4977), - [anon_sym_lock] = ACTIONS(4977), - [anon_sym_rlock] = ACTIONS(4977), - [anon_sym_unsafe] = ACTIONS(4977), - [anon_sym_sql] = ACTIONS(4977), - [sym_int_literal] = ACTIONS(4977), - [sym_float_literal] = ACTIONS(4979), - [sym_rune_literal] = ACTIONS(4979), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_c_SQUOTE] = ACTIONS(4979), - [anon_sym_c_DQUOTE] = ACTIONS(4979), - [anon_sym_r_SQUOTE] = ACTIONS(4979), - [anon_sym_r_DQUOTE] = ACTIONS(4979), - [sym_pseudo_compile_time_identifier] = ACTIONS(4977), - [anon_sym_shared] = ACTIONS(4977), - [anon_sym_map_LBRACK] = ACTIONS(4979), - [anon_sym_chan] = ACTIONS(4977), - [anon_sym_thread] = ACTIONS(4977), - [anon_sym_atomic] = ACTIONS(4977), - }, [1922] = { [sym_line_comment] = STATE(1922), [sym_block_comment] = STATE(1922), - [sym_reference_expression] = STATE(4607), - [sym_type_reference_expression] = STATE(3648), - [sym_plain_type] = STATE(2483), - [sym__plain_type_without_special] = STATE(2470), - [sym_anon_struct_type] = STATE(2428), - [sym_multi_return_type] = STATE(2470), - [sym_result_type] = STATE(2470), - [sym_option_type] = STATE(2470), - [sym_qualified_type] = STATE(3648), - [sym_fixed_array_type] = STATE(2428), - [sym_array_type] = STATE(2428), - [sym_pointer_type] = STATE(2428), - [sym_wrong_pointer_type] = STATE(2428), - [sym_map_type] = STATE(2428), - [sym_channel_type] = STATE(2428), - [sym_shared_type] = STATE(2428), - [sym_thread_type] = STATE(2428), - [sym_atomic_type] = STATE(2428), - [sym_generic_type] = STATE(2428), - [sym_function_type] = STATE(2428), - [sym_identifier] = ACTIONS(855), + [ts_builtin_sym_end] = ACTIONS(4977), + [sym_identifier] = ACTIONS(4979), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_as] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_fn] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(4981), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_LBRACK2] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(857), - [anon_sym_GT_GT_GT] = ACTIONS(853), - [anon_sym_AMP_CARET] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(857), - [anon_sym_QMARK_DOT] = ACTIONS(853), - [anon_sym_POUND_LBRACK] = ACTIONS(853), - [anon_sym_is] = ACTIONS(857), - [anon_sym_BANGis] = ACTIONS(853), - [anon_sym_in] = ACTIONS(857), - [anon_sym_BANGin] = ACTIONS(853), - [anon_sym_COLON_EQ] = ACTIONS(853), - [anon_sym_shared] = ACTIONS(873), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_import] = ACTIONS(4979), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4977), + [anon_sym_const] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym___global] = ACTIONS(4979), + [anon_sym_type] = ACTIONS(4979), + [anon_sym_fn] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_struct] = ACTIONS(4979), + [anon_sym_union] = ACTIONS(4979), + [anon_sym_pub] = ACTIONS(4979), + [anon_sym_mut] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(4979), + [anon_sym_interface] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4977), + [anon_sym_BANG] = ACTIONS(4977), + [anon_sym_go] = ACTIONS(4979), + [anon_sym_spawn] = ACTIONS(4979), + [anon_sym_json_DOTdecode] = ACTIONS(4977), + [anon_sym_LBRACK2] = ACTIONS(4977), + [anon_sym_TILDE] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_LT_DASH] = ACTIONS(4977), + [sym_none] = ACTIONS(4979), + [sym_true] = ACTIONS(4979), + [sym_false] = ACTIONS(4979), + [sym_nil] = ACTIONS(4979), + [anon_sym_if] = ACTIONS(4979), + [anon_sym_DOLLARif] = ACTIONS(4979), + [anon_sym_match] = ACTIONS(4979), + [anon_sym_select] = ACTIONS(4979), + [anon_sym_lock] = ACTIONS(4979), + [anon_sym_rlock] = ACTIONS(4979), + [anon_sym_unsafe] = ACTIONS(4979), + [anon_sym_sql] = ACTIONS(4979), + [sym_int_literal] = ACTIONS(4979), + [sym_float_literal] = ACTIONS(4977), + [sym_rune_literal] = ACTIONS(4977), + [anon_sym_SQUOTE] = ACTIONS(4977), + [anon_sym_DQUOTE] = ACTIONS(4977), + [anon_sym_c_SQUOTE] = ACTIONS(4977), + [anon_sym_c_DQUOTE] = ACTIONS(4977), + [anon_sym_r_SQUOTE] = ACTIONS(4977), + [anon_sym_r_DQUOTE] = ACTIONS(4977), + [sym_pseudo_compile_time_identifier] = ACTIONS(4979), + [anon_sym_shared] = ACTIONS(4979), + [anon_sym_map_LBRACK] = ACTIONS(4977), + [anon_sym_chan] = ACTIONS(4979), + [anon_sym_thread] = ACTIONS(4979), + [anon_sym_atomic] = ACTIONS(4979), + [anon_sym_assert] = ACTIONS(4979), + [anon_sym_defer] = ACTIONS(4979), + [anon_sym_goto] = ACTIONS(4979), + [anon_sym_break] = ACTIONS(4979), + [anon_sym_continue] = ACTIONS(4979), + [anon_sym_return] = ACTIONS(4979), + [anon_sym_DOLLARfor] = ACTIONS(4979), + [anon_sym_for] = ACTIONS(4979), + [anon_sym_POUND] = ACTIONS(4977), + [anon_sym_asm] = ACTIONS(4979), + [anon_sym_AT_LBRACK] = ACTIONS(4977), }, [1923] = { [sym_line_comment] = STATE(1923), [sym_block_comment] = STATE(1923), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(4983), + [ts_builtin_sym_end] = ACTIONS(137), + [sym_identifier] = ACTIONS(4981), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_const] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym___global] = ACTIONS(4983), - [anon_sym_type] = ACTIONS(4983), - [anon_sym_fn] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_struct] = ACTIONS(4983), - [anon_sym_union] = ACTIONS(4983), - [anon_sym_pub] = ACTIONS(4983), - [anon_sym_mut] = ACTIONS(4983), - [anon_sym_enum] = ACTIONS(4983), - [anon_sym_interface] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_go] = ACTIONS(4983), - [anon_sym_spawn] = ACTIONS(4983), - [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(4983), - [sym_true] = ACTIONS(4983), - [sym_false] = ACTIONS(4983), - [sym_nil] = ACTIONS(4983), - [anon_sym_if] = ACTIONS(4983), - [anon_sym_DOLLARif] = ACTIONS(4983), - [anon_sym_match] = ACTIONS(4983), - [anon_sym_select] = ACTIONS(4983), - [anon_sym_lock] = ACTIONS(4983), - [anon_sym_rlock] = ACTIONS(4983), - [anon_sym_unsafe] = ACTIONS(4983), - [anon_sym_sql] = ACTIONS(4983), - [sym_int_literal] = ACTIONS(4983), - [sym_float_literal] = ACTIONS(133), - [sym_rune_literal] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_DQUOTE] = ACTIONS(133), - [anon_sym_c_SQUOTE] = ACTIONS(133), - [anon_sym_c_DQUOTE] = ACTIONS(133), - [anon_sym_r_SQUOTE] = ACTIONS(133), - [anon_sym_r_DQUOTE] = ACTIONS(133), - [sym_pseudo_compile_time_identifier] = ACTIONS(4983), - [anon_sym_shared] = ACTIONS(4983), - [anon_sym_map_LBRACK] = ACTIONS(133), - [anon_sym_chan] = ACTIONS(4983), - [anon_sym_thread] = ACTIONS(4983), - [anon_sym_atomic] = ACTIONS(4983), - [anon_sym_assert] = ACTIONS(4983), - [anon_sym_defer] = ACTIONS(4983), - [anon_sym_goto] = ACTIONS(4983), - [anon_sym_break] = ACTIONS(4983), - [anon_sym_continue] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4983), - [anon_sym_DOLLARfor] = ACTIONS(4983), - [anon_sym_for] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(133), - [anon_sym_asm] = ACTIONS(4983), - [anon_sym_AT_LBRACK] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(4981), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym___global] = ACTIONS(4981), + [anon_sym_type] = ACTIONS(4981), + [anon_sym_fn] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_struct] = ACTIONS(4981), + [anon_sym_union] = ACTIONS(4981), + [anon_sym_pub] = ACTIONS(4981), + [anon_sym_mut] = ACTIONS(4981), + [anon_sym_enum] = ACTIONS(4981), + [anon_sym_interface] = ACTIONS(4981), + [anon_sym_QMARK] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_go] = ACTIONS(4981), + [anon_sym_spawn] = ACTIONS(4981), + [anon_sym_json_DOTdecode] = ACTIONS(137), + [anon_sym_LBRACK2] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LT_DASH] = ACTIONS(137), + [sym_none] = ACTIONS(4981), + [sym_true] = ACTIONS(4981), + [sym_false] = ACTIONS(4981), + [sym_nil] = ACTIONS(4981), + [anon_sym_if] = ACTIONS(4981), + [anon_sym_DOLLARif] = ACTIONS(4981), + [anon_sym_match] = ACTIONS(4981), + [anon_sym_select] = ACTIONS(4981), + [anon_sym_lock] = ACTIONS(4981), + [anon_sym_rlock] = ACTIONS(4981), + [anon_sym_unsafe] = ACTIONS(4981), + [anon_sym_sql] = ACTIONS(4981), + [sym_int_literal] = ACTIONS(4981), + [sym_float_literal] = ACTIONS(137), + [sym_rune_literal] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_c_SQUOTE] = ACTIONS(137), + [anon_sym_c_DQUOTE] = ACTIONS(137), + [anon_sym_r_SQUOTE] = ACTIONS(137), + [anon_sym_r_DQUOTE] = ACTIONS(137), + [sym_pseudo_compile_time_identifier] = ACTIONS(4981), + [anon_sym_shared] = ACTIONS(4981), + [anon_sym_map_LBRACK] = ACTIONS(137), + [anon_sym_chan] = ACTIONS(4981), + [anon_sym_thread] = ACTIONS(4981), + [anon_sym_atomic] = ACTIONS(4981), + [anon_sym_assert] = ACTIONS(4981), + [anon_sym_defer] = ACTIONS(4981), + [anon_sym_goto] = ACTIONS(4981), + [anon_sym_break] = ACTIONS(4981), + [anon_sym_continue] = ACTIONS(4981), + [anon_sym_return] = ACTIONS(4981), + [anon_sym_DOLLARfor] = ACTIONS(4981), + [anon_sym_for] = ACTIONS(4981), + [anon_sym_POUND] = ACTIONS(137), + [anon_sym_asm] = ACTIONS(4981), + [anon_sym_AT_LBRACK] = ACTIONS(137), }, [1924] = { [sym_line_comment] = STATE(1924), [sym_block_comment] = STATE(1924), - [aux_sym_strictly_expression_list_repeat1] = STATE(1927), - [sym_identifier] = ACTIONS(4422), - [anon_sym_LF] = ACTIONS(4422), - [anon_sym_CR] = ACTIONS(4422), - [anon_sym_CR_LF] = ACTIONS(4422), + [aux_sym_strictly_expression_list_repeat1] = STATE(1925), + [sym_identifier] = ACTIONS(4430), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_CR] = ACTIONS(4430), + [anon_sym_CR_LF] = ACTIONS(4430), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4430), [anon_sym_COMMA] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_fn] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4422), - [anon_sym_struct] = ACTIONS(4422), - [anon_sym_mut] = ACTIONS(4422), - [anon_sym_QMARK] = ACTIONS(4422), - [anon_sym_BANG] = ACTIONS(4422), - [anon_sym_go] = ACTIONS(4422), - [anon_sym_spawn] = ACTIONS(4422), - [anon_sym_json_DOTdecode] = ACTIONS(4422), - [anon_sym_LBRACK2] = ACTIONS(4422), - [anon_sym_TILDE] = ACTIONS(4422), - [anon_sym_CARET] = ACTIONS(4422), - [anon_sym_AMP] = ACTIONS(4422), - [anon_sym_LT_DASH] = ACTIONS(4422), - [sym_none] = ACTIONS(4422), - [sym_true] = ACTIONS(4422), - [sym_false] = ACTIONS(4422), - [sym_nil] = ACTIONS(4422), - [anon_sym_if] = ACTIONS(4422), - [anon_sym_DOLLARif] = ACTIONS(4422), - [anon_sym_match] = ACTIONS(4422), - [anon_sym_select] = ACTIONS(4422), - [anon_sym_lock] = ACTIONS(4422), - [anon_sym_rlock] = ACTIONS(4422), - [anon_sym_unsafe] = ACTIONS(4422), - [anon_sym_sql] = ACTIONS(4422), - [sym_int_literal] = ACTIONS(4422), - [sym_float_literal] = ACTIONS(4422), - [sym_rune_literal] = ACTIONS(4422), - [anon_sym_SQUOTE] = ACTIONS(4422), - [anon_sym_DQUOTE] = ACTIONS(4422), - [anon_sym_c_SQUOTE] = ACTIONS(4422), - [anon_sym_c_DQUOTE] = ACTIONS(4422), - [anon_sym_r_SQUOTE] = ACTIONS(4422), - [anon_sym_r_DQUOTE] = ACTIONS(4422), - [sym_pseudo_compile_time_identifier] = ACTIONS(4422), - [anon_sym_shared] = ACTIONS(4422), - [anon_sym_map_LBRACK] = ACTIONS(4422), - [anon_sym_chan] = ACTIONS(4422), - [anon_sym_thread] = ACTIONS(4422), - [anon_sym_atomic] = ACTIONS(4422), - [anon_sym_assert] = ACTIONS(4422), - [anon_sym_defer] = ACTIONS(4422), - [anon_sym_goto] = ACTIONS(4422), - [anon_sym_break] = ACTIONS(4422), - [anon_sym_continue] = ACTIONS(4422), - [anon_sym_return] = ACTIONS(4422), - [anon_sym_DOLLARfor] = ACTIONS(4422), - [anon_sym_for] = ACTIONS(4422), - [anon_sym_POUND] = ACTIONS(4422), - [anon_sym_asm] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym_fn] = ACTIONS(4430), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_mut] = ACTIONS(4430), + [anon_sym_QMARK] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_go] = ACTIONS(4430), + [anon_sym_spawn] = ACTIONS(4430), + [anon_sym_json_DOTdecode] = ACTIONS(4430), + [anon_sym_LBRACK2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_CARET] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_LT_DASH] = ACTIONS(4430), + [sym_none] = ACTIONS(4430), + [sym_true] = ACTIONS(4430), + [sym_false] = ACTIONS(4430), + [sym_nil] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_DOLLARif] = ACTIONS(4430), + [anon_sym_match] = ACTIONS(4430), + [anon_sym_select] = ACTIONS(4430), + [anon_sym_lock] = ACTIONS(4430), + [anon_sym_rlock] = ACTIONS(4430), + [anon_sym_unsafe] = ACTIONS(4430), + [anon_sym_sql] = ACTIONS(4430), + [sym_int_literal] = ACTIONS(4430), + [sym_float_literal] = ACTIONS(4430), + [sym_rune_literal] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4430), + [anon_sym_c_SQUOTE] = ACTIONS(4430), + [anon_sym_c_DQUOTE] = ACTIONS(4430), + [anon_sym_r_SQUOTE] = ACTIONS(4430), + [anon_sym_r_DQUOTE] = ACTIONS(4430), + [sym_pseudo_compile_time_identifier] = ACTIONS(4430), + [anon_sym_shared] = ACTIONS(4430), + [anon_sym_map_LBRACK] = ACTIONS(4430), + [anon_sym_chan] = ACTIONS(4430), + [anon_sym_thread] = ACTIONS(4430), + [anon_sym_atomic] = ACTIONS(4430), + [anon_sym_assert] = ACTIONS(4430), + [anon_sym_defer] = ACTIONS(4430), + [anon_sym_goto] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_DOLLARfor] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4430), + [anon_sym_POUND] = ACTIONS(4430), + [anon_sym_asm] = ACTIONS(4430), }, [1925] = { [sym_line_comment] = STATE(1925), [sym_block_comment] = STATE(1925), - [aux_sym_strictly_expression_list_repeat1] = STATE(1927), - [sym_identifier] = ACTIONS(4428), - [anon_sym_LF] = ACTIONS(4428), - [anon_sym_CR] = ACTIONS(4428), - [anon_sym_CR_LF] = ACTIONS(4428), + [aux_sym_strictly_expression_list_repeat1] = STATE(1925), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(4428), - [anon_sym_COMMA] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(4428), - [anon_sym_LPAREN] = ACTIONS(4428), - [anon_sym_fn] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_STAR] = ACTIONS(4428), - [anon_sym_struct] = ACTIONS(4428), - [anon_sym_mut] = ACTIONS(4428), - [anon_sym_QMARK] = ACTIONS(4428), - [anon_sym_BANG] = ACTIONS(4428), - [anon_sym_go] = ACTIONS(4428), - [anon_sym_spawn] = ACTIONS(4428), - [anon_sym_json_DOTdecode] = ACTIONS(4428), - [anon_sym_LBRACK2] = ACTIONS(4428), - [anon_sym_TILDE] = ACTIONS(4428), - [anon_sym_CARET] = ACTIONS(4428), - [anon_sym_AMP] = ACTIONS(4428), - [anon_sym_LT_DASH] = ACTIONS(4428), - [sym_none] = ACTIONS(4428), - [sym_true] = ACTIONS(4428), - [sym_false] = ACTIONS(4428), - [sym_nil] = ACTIONS(4428), - [anon_sym_if] = ACTIONS(4428), - [anon_sym_DOLLARif] = ACTIONS(4428), - [anon_sym_match] = ACTIONS(4428), - [anon_sym_select] = ACTIONS(4428), - [anon_sym_lock] = ACTIONS(4428), - [anon_sym_rlock] = ACTIONS(4428), - [anon_sym_unsafe] = ACTIONS(4428), - [anon_sym_sql] = ACTIONS(4428), - [sym_int_literal] = ACTIONS(4428), - [sym_float_literal] = ACTIONS(4428), - [sym_rune_literal] = ACTIONS(4428), - [anon_sym_SQUOTE] = ACTIONS(4428), - [anon_sym_DQUOTE] = ACTIONS(4428), - [anon_sym_c_SQUOTE] = ACTIONS(4428), - [anon_sym_c_DQUOTE] = ACTIONS(4428), - [anon_sym_r_SQUOTE] = ACTIONS(4428), - [anon_sym_r_DQUOTE] = ACTIONS(4428), - [sym_pseudo_compile_time_identifier] = ACTIONS(4428), - [anon_sym_shared] = ACTIONS(4428), - [anon_sym_map_LBRACK] = ACTIONS(4428), - [anon_sym_chan] = ACTIONS(4428), - [anon_sym_thread] = ACTIONS(4428), - [anon_sym_atomic] = ACTIONS(4428), - [anon_sym_assert] = ACTIONS(4428), - [anon_sym_defer] = ACTIONS(4428), - [anon_sym_goto] = ACTIONS(4428), - [anon_sym_break] = ACTIONS(4428), - [anon_sym_continue] = ACTIONS(4428), - [anon_sym_return] = ACTIONS(4428), - [anon_sym_DOLLARfor] = ACTIONS(4428), - [anon_sym_for] = ACTIONS(4428), - [anon_sym_POUND] = ACTIONS(4428), - [anon_sym_asm] = ACTIONS(4428), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), + [anon_sym_LBRACK2] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_LT_DASH] = ACTIONS(2001), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), }, [1926] = { [sym_line_comment] = STATE(1926), [sym_block_comment] = STATE(1926), - [aux_sym_strictly_expression_list_repeat1] = STATE(1925), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_CR] = ACTIONS(2007), - [anon_sym_CR_LF] = ACTIONS(2007), + [aux_sym_strictly_expression_list_repeat1] = STATE(1927), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), [anon_sym_COMMA] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_go] = ACTIONS(2007), - [anon_sym_spawn] = ACTIONS(2007), - [anon_sym_json_DOTdecode] = ACTIONS(2007), - [anon_sym_LBRACK2] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_LT_DASH] = ACTIONS(2007), - [sym_none] = ACTIONS(2007), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_nil] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_DOLLARif] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_select] = ACTIONS(2007), - [anon_sym_lock] = ACTIONS(2007), - [anon_sym_rlock] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_sql] = ACTIONS(2007), - [sym_int_literal] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), - [sym_rune_literal] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_c_SQUOTE] = ACTIONS(2007), - [anon_sym_c_DQUOTE] = ACTIONS(2007), - [anon_sym_r_SQUOTE] = ACTIONS(2007), - [anon_sym_r_DQUOTE] = ACTIONS(2007), - [sym_pseudo_compile_time_identifier] = ACTIONS(2007), - [anon_sym_shared] = ACTIONS(2007), - [anon_sym_map_LBRACK] = ACTIONS(2007), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2007), - [anon_sym_atomic] = ACTIONS(2007), - [anon_sym_assert] = ACTIONS(2007), - [anon_sym_defer] = ACTIONS(2007), - [anon_sym_goto] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_DOLLARfor] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_asm] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), }, [1927] = { [sym_line_comment] = STATE(1927), [sym_block_comment] = STATE(1927), - [aux_sym_strictly_expression_list_repeat1] = STATE(1927), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), + [aux_sym_strictly_expression_list_repeat1] = STATE(1925), + [sym_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_CR] = ACTIONS(4426), + [anon_sym_CR_LF] = ACTIONS(4426), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), - [anon_sym_LBRACK2] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_DASH] = ACTIONS(2045), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_COMMA] = ACTIONS(3984), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_fn] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_go] = ACTIONS(4426), + [anon_sym_spawn] = ACTIONS(4426), + [anon_sym_json_DOTdecode] = ACTIONS(4426), + [anon_sym_LBRACK2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_LT_DASH] = ACTIONS(4426), + [sym_none] = ACTIONS(4426), + [sym_true] = ACTIONS(4426), + [sym_false] = ACTIONS(4426), + [sym_nil] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_DOLLARif] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_select] = ACTIONS(4426), + [anon_sym_lock] = ACTIONS(4426), + [anon_sym_rlock] = ACTIONS(4426), + [anon_sym_unsafe] = ACTIONS(4426), + [anon_sym_sql] = ACTIONS(4426), + [sym_int_literal] = ACTIONS(4426), + [sym_float_literal] = ACTIONS(4426), + [sym_rune_literal] = ACTIONS(4426), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [anon_sym_c_SQUOTE] = ACTIONS(4426), + [anon_sym_c_DQUOTE] = ACTIONS(4426), + [anon_sym_r_SQUOTE] = ACTIONS(4426), + [anon_sym_r_DQUOTE] = ACTIONS(4426), + [sym_pseudo_compile_time_identifier] = ACTIONS(4426), + [anon_sym_shared] = ACTIONS(4426), + [anon_sym_map_LBRACK] = ACTIONS(4426), + [anon_sym_chan] = ACTIONS(4426), + [anon_sym_thread] = ACTIONS(4426), + [anon_sym_atomic] = ACTIONS(4426), + [anon_sym_assert] = ACTIONS(4426), + [anon_sym_defer] = ACTIONS(4426), + [anon_sym_goto] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_DOLLARfor] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(4426), + [anon_sym_asm] = ACTIONS(4426), }, [1928] = { [sym_line_comment] = STATE(1928), [sym_block_comment] = STATE(1928), - [sym_label_reference] = STATE(1945), - [sym_identifier] = ACTIONS(4988), - [anon_sym_LF] = ACTIONS(4540), - [anon_sym_CR] = ACTIONS(4540), - [anon_sym_CR_LF] = ACTIONS(4540), + [sym_label_reference] = STATE(1942), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LF] = ACTIONS(4526), + [anon_sym_CR] = ACTIONS(4526), + [anon_sym_CR_LF] = ACTIONS(4526), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_fn] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_struct] = ACTIONS(4540), - [anon_sym_mut] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_go] = ACTIONS(4540), - [anon_sym_spawn] = ACTIONS(4540), - [anon_sym_json_DOTdecode] = ACTIONS(4540), - [anon_sym_LBRACK2] = ACTIONS(4540), - [anon_sym_TILDE] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4540), - [anon_sym_LT_DASH] = ACTIONS(4540), - [sym_none] = ACTIONS(4540), - [sym_true] = ACTIONS(4540), - [sym_false] = ACTIONS(4540), - [sym_nil] = ACTIONS(4540), - [anon_sym_if] = ACTIONS(4540), - [anon_sym_DOLLARif] = ACTIONS(4540), - [anon_sym_match] = ACTIONS(4540), - [anon_sym_select] = ACTIONS(4540), - [anon_sym_lock] = ACTIONS(4540), - [anon_sym_rlock] = ACTIONS(4540), - [anon_sym_unsafe] = ACTIONS(4540), - [anon_sym_sql] = ACTIONS(4540), - [sym_int_literal] = ACTIONS(4540), - [sym_float_literal] = ACTIONS(4540), - [sym_rune_literal] = ACTIONS(4540), - [anon_sym_SQUOTE] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [anon_sym_c_SQUOTE] = ACTIONS(4540), - [anon_sym_c_DQUOTE] = ACTIONS(4540), - [anon_sym_r_SQUOTE] = ACTIONS(4540), - [anon_sym_r_DQUOTE] = ACTIONS(4540), - [sym_pseudo_compile_time_identifier] = ACTIONS(4540), - [anon_sym_shared] = ACTIONS(4540), - [anon_sym_map_LBRACK] = ACTIONS(4540), - [anon_sym_chan] = ACTIONS(4540), - [anon_sym_thread] = ACTIONS(4540), - [anon_sym_atomic] = ACTIONS(4540), - [anon_sym_assert] = ACTIONS(4540), - [anon_sym_defer] = ACTIONS(4540), - [anon_sym_goto] = ACTIONS(4540), - [anon_sym_break] = ACTIONS(4540), - [anon_sym_continue] = ACTIONS(4540), - [anon_sym_return] = ACTIONS(4540), - [anon_sym_DOLLARfor] = ACTIONS(4540), - [anon_sym_for] = ACTIONS(4540), - [anon_sym_POUND] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(4540), + [anon_sym_SEMI] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4526), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_LPAREN] = ACTIONS(4526), + [anon_sym_fn] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_mut] = ACTIONS(4526), + [anon_sym_QMARK] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_go] = ACTIONS(4526), + [anon_sym_spawn] = ACTIONS(4526), + [anon_sym_json_DOTdecode] = ACTIONS(4526), + [anon_sym_LBRACK2] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [anon_sym_CARET] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_LT_DASH] = ACTIONS(4526), + [sym_none] = ACTIONS(4526), + [sym_true] = ACTIONS(4526), + [sym_false] = ACTIONS(4526), + [sym_nil] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_DOLLARif] = ACTIONS(4526), + [anon_sym_match] = ACTIONS(4526), + [anon_sym_select] = ACTIONS(4526), + [anon_sym_lock] = ACTIONS(4526), + [anon_sym_rlock] = ACTIONS(4526), + [anon_sym_unsafe] = ACTIONS(4526), + [anon_sym_sql] = ACTIONS(4526), + [sym_int_literal] = ACTIONS(4526), + [sym_float_literal] = ACTIONS(4526), + [sym_rune_literal] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(4526), + [anon_sym_c_SQUOTE] = ACTIONS(4526), + [anon_sym_c_DQUOTE] = ACTIONS(4526), + [anon_sym_r_SQUOTE] = ACTIONS(4526), + [anon_sym_r_DQUOTE] = ACTIONS(4526), + [sym_pseudo_compile_time_identifier] = ACTIONS(4526), + [anon_sym_shared] = ACTIONS(4526), + [anon_sym_map_LBRACK] = ACTIONS(4526), + [anon_sym_chan] = ACTIONS(4526), + [anon_sym_thread] = ACTIONS(4526), + [anon_sym_atomic] = ACTIONS(4526), + [anon_sym_assert] = ACTIONS(4526), + [anon_sym_defer] = ACTIONS(4526), + [anon_sym_goto] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_DOLLARfor] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_POUND] = ACTIONS(4526), + [anon_sym_asm] = ACTIONS(4526), }, [1929] = { [sym_line_comment] = STATE(1929), [sym_block_comment] = STATE(1929), - [sym_label_reference] = STATE(1933), - [sym_identifier] = ACTIONS(4988), - [anon_sym_LF] = ACTIONS(4480), - [anon_sym_CR] = ACTIONS(4480), - [anon_sym_CR_LF] = ACTIONS(4480), + [sym_label_reference] = STATE(1938), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LF] = ACTIONS(4534), + [anon_sym_CR] = ACTIONS(4534), + [anon_sym_CR_LF] = ACTIONS(4534), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4480), - [anon_sym_DOT] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym_fn] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4480), - [anon_sym_DASH] = ACTIONS(4480), - [anon_sym_STAR] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_mut] = ACTIONS(4480), - [anon_sym_QMARK] = ACTIONS(4480), - [anon_sym_BANG] = ACTIONS(4480), - [anon_sym_go] = ACTIONS(4480), - [anon_sym_spawn] = ACTIONS(4480), - [anon_sym_json_DOTdecode] = ACTIONS(4480), - [anon_sym_LBRACK2] = ACTIONS(4480), - [anon_sym_TILDE] = ACTIONS(4480), - [anon_sym_CARET] = ACTIONS(4480), - [anon_sym_AMP] = ACTIONS(4480), - [anon_sym_LT_DASH] = ACTIONS(4480), - [sym_none] = ACTIONS(4480), - [sym_true] = ACTIONS(4480), - [sym_false] = ACTIONS(4480), - [sym_nil] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_DOLLARif] = ACTIONS(4480), - [anon_sym_match] = ACTIONS(4480), - [anon_sym_select] = ACTIONS(4480), - [anon_sym_lock] = ACTIONS(4480), - [anon_sym_rlock] = ACTIONS(4480), - [anon_sym_unsafe] = ACTIONS(4480), - [anon_sym_sql] = ACTIONS(4480), - [sym_int_literal] = ACTIONS(4480), - [sym_float_literal] = ACTIONS(4480), - [sym_rune_literal] = ACTIONS(4480), - [anon_sym_SQUOTE] = ACTIONS(4480), - [anon_sym_DQUOTE] = ACTIONS(4480), - [anon_sym_c_SQUOTE] = ACTIONS(4480), - [anon_sym_c_DQUOTE] = ACTIONS(4480), - [anon_sym_r_SQUOTE] = ACTIONS(4480), - [anon_sym_r_DQUOTE] = ACTIONS(4480), - [sym_pseudo_compile_time_identifier] = ACTIONS(4480), - [anon_sym_shared] = ACTIONS(4480), - [anon_sym_map_LBRACK] = ACTIONS(4480), - [anon_sym_chan] = ACTIONS(4480), - [anon_sym_thread] = ACTIONS(4480), - [anon_sym_atomic] = ACTIONS(4480), - [anon_sym_assert] = ACTIONS(4480), - [anon_sym_defer] = ACTIONS(4480), - [anon_sym_goto] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_DOLLARfor] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_POUND] = ACTIONS(4480), - [anon_sym_asm] = ACTIONS(4480), + [anon_sym_SEMI] = ACTIONS(4534), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_fn] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_mut] = ACTIONS(4534), + [anon_sym_QMARK] = ACTIONS(4534), + [anon_sym_BANG] = ACTIONS(4534), + [anon_sym_go] = ACTIONS(4534), + [anon_sym_spawn] = ACTIONS(4534), + [anon_sym_json_DOTdecode] = ACTIONS(4534), + [anon_sym_LBRACK2] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [anon_sym_CARET] = ACTIONS(4534), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_LT_DASH] = ACTIONS(4534), + [sym_none] = ACTIONS(4534), + [sym_true] = ACTIONS(4534), + [sym_false] = ACTIONS(4534), + [sym_nil] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_DOLLARif] = ACTIONS(4534), + [anon_sym_match] = ACTIONS(4534), + [anon_sym_select] = ACTIONS(4534), + [anon_sym_lock] = ACTIONS(4534), + [anon_sym_rlock] = ACTIONS(4534), + [anon_sym_unsafe] = ACTIONS(4534), + [anon_sym_sql] = ACTIONS(4534), + [sym_int_literal] = ACTIONS(4534), + [sym_float_literal] = ACTIONS(4534), + [sym_rune_literal] = ACTIONS(4534), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_DQUOTE] = ACTIONS(4534), + [anon_sym_c_SQUOTE] = ACTIONS(4534), + [anon_sym_c_DQUOTE] = ACTIONS(4534), + [anon_sym_r_SQUOTE] = ACTIONS(4534), + [anon_sym_r_DQUOTE] = ACTIONS(4534), + [sym_pseudo_compile_time_identifier] = ACTIONS(4534), + [anon_sym_shared] = ACTIONS(4534), + [anon_sym_map_LBRACK] = ACTIONS(4534), + [anon_sym_chan] = ACTIONS(4534), + [anon_sym_thread] = ACTIONS(4534), + [anon_sym_atomic] = ACTIONS(4534), + [anon_sym_assert] = ACTIONS(4534), + [anon_sym_defer] = ACTIONS(4534), + [anon_sym_goto] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_DOLLARfor] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(4534), + [anon_sym_asm] = ACTIONS(4534), }, [1930] = { [sym_line_comment] = STATE(1930), [sym_block_comment] = STATE(1930), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2001), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_CR] = ACTIONS(2001), + [anon_sym_CR_LF] = ACTIONS(2001), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), - [anon_sym_LBRACK2] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_DASH] = ACTIONS(2045), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_c_SQUOTE] = ACTIONS(2045), - [anon_sym_c_DQUOTE] = ACTIONS(2045), - [anon_sym_r_SQUOTE] = ACTIONS(2045), - [anon_sym_r_DQUOTE] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_go] = ACTIONS(2001), + [anon_sym_spawn] = ACTIONS(2001), + [anon_sym_json_DOTdecode] = ACTIONS(2001), + [anon_sym_LBRACK2] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_LT_DASH] = ACTIONS(2001), + [sym_none] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_nil] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_DOLLARif] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_select] = ACTIONS(2001), + [anon_sym_lock] = ACTIONS(2001), + [anon_sym_rlock] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_sql] = ACTIONS(2001), + [sym_int_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), + [sym_rune_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_c_SQUOTE] = ACTIONS(2001), + [anon_sym_c_DQUOTE] = ACTIONS(2001), + [anon_sym_r_SQUOTE] = ACTIONS(2001), + [anon_sym_r_DQUOTE] = ACTIONS(2001), + [sym_pseudo_compile_time_identifier] = ACTIONS(2001), + [anon_sym_shared] = ACTIONS(2001), + [anon_sym_map_LBRACK] = ACTIONS(2001), + [anon_sym_chan] = ACTIONS(2001), + [anon_sym_thread] = ACTIONS(2001), + [anon_sym_atomic] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_defer] = ACTIONS(2001), + [anon_sym_goto] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_DOLLARfor] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_asm] = ACTIONS(2001), }, [1931] = { [sym_line_comment] = STATE(1931), [sym_block_comment] = STATE(1931), - [sym_identifier] = ACTIONS(4733), - [anon_sym_LF] = ACTIONS(4733), - [anon_sym_CR] = ACTIONS(4733), - [anon_sym_CR_LF] = ACTIONS(4733), + [sym_identifier] = ACTIONS(4583), + [anon_sym_LF] = ACTIONS(4583), + [anon_sym_CR] = ACTIONS(4583), + [anon_sym_CR_LF] = ACTIONS(4583), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4733), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_RBRACE] = ACTIONS(4733), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_fn] = ACTIONS(4733), - [anon_sym_PLUS] = ACTIONS(4733), - [anon_sym_DASH] = ACTIONS(4733), - [anon_sym_STAR] = ACTIONS(4733), - [anon_sym_struct] = ACTIONS(4733), - [anon_sym_mut] = ACTIONS(4733), - [anon_sym_QMARK] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4733), - [anon_sym_go] = ACTIONS(4733), - [anon_sym_spawn] = ACTIONS(4733), - [anon_sym_json_DOTdecode] = ACTIONS(4733), - [anon_sym_LBRACK2] = ACTIONS(4733), - [anon_sym_TILDE] = ACTIONS(4733), - [anon_sym_CARET] = ACTIONS(4733), - [anon_sym_AMP] = ACTIONS(4733), - [anon_sym_LT_DASH] = ACTIONS(4733), - [sym_none] = ACTIONS(4733), - [sym_true] = ACTIONS(4733), - [sym_false] = ACTIONS(4733), - [sym_nil] = ACTIONS(4733), - [anon_sym_if] = ACTIONS(4733), - [anon_sym_DOLLARif] = ACTIONS(4733), - [anon_sym_match] = ACTIONS(4733), - [anon_sym_select] = ACTIONS(4733), - [anon_sym_lock] = ACTIONS(4733), - [anon_sym_rlock] = ACTIONS(4733), - [anon_sym_unsafe] = ACTIONS(4733), - [anon_sym_sql] = ACTIONS(4733), - [sym_int_literal] = ACTIONS(4733), - [sym_float_literal] = ACTIONS(4733), - [sym_rune_literal] = ACTIONS(4733), - [anon_sym_SQUOTE] = ACTIONS(4733), - [anon_sym_DQUOTE] = ACTIONS(4733), - [anon_sym_c_SQUOTE] = ACTIONS(4733), - [anon_sym_c_DQUOTE] = ACTIONS(4733), - [anon_sym_r_SQUOTE] = ACTIONS(4733), - [anon_sym_r_DQUOTE] = ACTIONS(4733), - [sym_pseudo_compile_time_identifier] = ACTIONS(4733), - [anon_sym_shared] = ACTIONS(4733), - [anon_sym_map_LBRACK] = ACTIONS(4733), - [anon_sym_chan] = ACTIONS(4733), - [anon_sym_thread] = ACTIONS(4733), - [anon_sym_atomic] = ACTIONS(4733), - [anon_sym_assert] = ACTIONS(4733), - [anon_sym_defer] = ACTIONS(4733), - [anon_sym_goto] = ACTIONS(4733), - [anon_sym_break] = ACTIONS(4733), - [anon_sym_continue] = ACTIONS(4733), - [anon_sym_return] = ACTIONS(4733), - [anon_sym_DOLLARfor] = ACTIONS(4733), - [anon_sym_for] = ACTIONS(4733), - [anon_sym_POUND] = ACTIONS(4733), - [anon_sym_asm] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_fn] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_struct] = ACTIONS(4583), + [anon_sym_mut] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_go] = ACTIONS(4583), + [anon_sym_spawn] = ACTIONS(4583), + [anon_sym_json_DOTdecode] = ACTIONS(4583), + [anon_sym_LBRACK2] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_CARET] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4583), + [anon_sym_LT_DASH] = ACTIONS(4583), + [sym_none] = ACTIONS(4583), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_nil] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_DOLLARif] = ACTIONS(4583), + [anon_sym_match] = ACTIONS(4583), + [anon_sym_select] = ACTIONS(4583), + [anon_sym_lock] = ACTIONS(4583), + [anon_sym_rlock] = ACTIONS(4583), + [anon_sym_unsafe] = ACTIONS(4583), + [anon_sym_sql] = ACTIONS(4583), + [sym_int_literal] = ACTIONS(4583), + [sym_float_literal] = ACTIONS(4583), + [sym_rune_literal] = ACTIONS(4583), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_c_SQUOTE] = ACTIONS(4583), + [anon_sym_c_DQUOTE] = ACTIONS(4583), + [anon_sym_r_SQUOTE] = ACTIONS(4583), + [anon_sym_r_DQUOTE] = ACTIONS(4583), + [sym_pseudo_compile_time_identifier] = ACTIONS(4583), + [anon_sym_shared] = ACTIONS(4583), + [anon_sym_map_LBRACK] = ACTIONS(4583), + [anon_sym_chan] = ACTIONS(4583), + [anon_sym_thread] = ACTIONS(4583), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_assert] = ACTIONS(4583), + [anon_sym_defer] = ACTIONS(4583), + [anon_sym_goto] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_DOLLARfor] = ACTIONS(4583), + [anon_sym_for] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_asm] = ACTIONS(4583), }, [1932] = { [sym_line_comment] = STATE(1932), [sym_block_comment] = STATE(1932), - [sym_identifier] = ACTIONS(4641), - [anon_sym_LF] = ACTIONS(4641), - [anon_sym_CR] = ACTIONS(4641), - [anon_sym_CR_LF] = ACTIONS(4641), + [sym_identifier] = ACTIONS(4988), + [anon_sym_LF] = ACTIONS(4990), + [anon_sym_CR] = ACTIONS(4990), + [anon_sym_CR_LF] = ACTIONS(4990), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4641), - [anon_sym_RBRACE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_fn] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_struct] = ACTIONS(4641), - [anon_sym_mut] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_go] = ACTIONS(4641), - [anon_sym_spawn] = ACTIONS(4641), - [anon_sym_json_DOTdecode] = ACTIONS(4641), - [anon_sym_LBRACK2] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_LT_DASH] = ACTIONS(4641), - [sym_none] = ACTIONS(4641), - [sym_true] = ACTIONS(4641), - [sym_false] = ACTIONS(4641), - [sym_nil] = ACTIONS(4641), - [anon_sym_if] = ACTIONS(4641), - [anon_sym_DOLLARif] = ACTIONS(4641), - [anon_sym_match] = ACTIONS(4641), - [anon_sym_select] = ACTIONS(4641), - [anon_sym_lock] = ACTIONS(4641), - [anon_sym_rlock] = ACTIONS(4641), - [anon_sym_unsafe] = ACTIONS(4641), - [anon_sym_sql] = ACTIONS(4641), - [sym_int_literal] = ACTIONS(4641), - [sym_float_literal] = ACTIONS(4641), - [sym_rune_literal] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_c_SQUOTE] = ACTIONS(4641), - [anon_sym_c_DQUOTE] = ACTIONS(4641), - [anon_sym_r_SQUOTE] = ACTIONS(4641), - [anon_sym_r_DQUOTE] = ACTIONS(4641), - [sym_pseudo_compile_time_identifier] = ACTIONS(4641), - [anon_sym_shared] = ACTIONS(4641), - [anon_sym_map_LBRACK] = ACTIONS(4641), - [anon_sym_chan] = ACTIONS(4641), - [anon_sym_thread] = ACTIONS(4641), - [anon_sym_atomic] = ACTIONS(4641), - [anon_sym_assert] = ACTIONS(4641), - [anon_sym_defer] = ACTIONS(4641), - [anon_sym_goto] = ACTIONS(4641), - [anon_sym_break] = ACTIONS(4641), - [anon_sym_continue] = ACTIONS(4641), - [anon_sym_return] = ACTIONS(4641), - [anon_sym_DOLLARfor] = ACTIONS(4641), - [anon_sym_for] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_asm] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_RBRACE] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_fn] = ACTIONS(4988), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_mut] = ACTIONS(4988), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_go] = ACTIONS(4988), + [anon_sym_spawn] = ACTIONS(4988), + [anon_sym_json_DOTdecode] = ACTIONS(4988), + [anon_sym_LBRACK2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4988), + [anon_sym_LT_DASH] = ACTIONS(4988), + [sym_none] = ACTIONS(4988), + [sym_true] = ACTIONS(4988), + [sym_false] = ACTIONS(4988), + [sym_nil] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_DOLLARif] = ACTIONS(4988), + [anon_sym_match] = ACTIONS(4988), + [anon_sym_select] = ACTIONS(4988), + [anon_sym_lock] = ACTIONS(4988), + [anon_sym_rlock] = ACTIONS(4988), + [anon_sym_unsafe] = ACTIONS(4988), + [anon_sym_sql] = ACTIONS(4988), + [sym_int_literal] = ACTIONS(4988), + [sym_float_literal] = ACTIONS(4988), + [sym_rune_literal] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [anon_sym_DQUOTE] = ACTIONS(4988), + [anon_sym_c_SQUOTE] = ACTIONS(4988), + [anon_sym_c_DQUOTE] = ACTIONS(4988), + [anon_sym_r_SQUOTE] = ACTIONS(4988), + [anon_sym_r_DQUOTE] = ACTIONS(4988), + [sym_pseudo_compile_time_identifier] = ACTIONS(4988), + [anon_sym_shared] = ACTIONS(4988), + [anon_sym_map_LBRACK] = ACTIONS(4988), + [anon_sym_chan] = ACTIONS(4988), + [anon_sym_thread] = ACTIONS(4988), + [anon_sym_atomic] = ACTIONS(4988), + [anon_sym_assert] = ACTIONS(4988), + [anon_sym_defer] = ACTIONS(4988), + [anon_sym_goto] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_DOLLARfor] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4988), + [anon_sym_asm] = ACTIONS(4988), }, [1933] = { [sym_line_comment] = STATE(1933), [sym_block_comment] = STATE(1933), - [sym_identifier] = ACTIONS(4809), - [anon_sym_LF] = ACTIONS(4809), - [anon_sym_CR] = ACTIONS(4809), - [anon_sym_CR_LF] = ACTIONS(4809), + [sym_identifier] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2037), + [anon_sym_CR] = ACTIONS(2037), + [anon_sym_CR_LF] = ACTIONS(2037), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_LBRACE] = ACTIONS(4809), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LPAREN] = ACTIONS(4809), - [anon_sym_fn] = ACTIONS(4809), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4809), - [anon_sym_struct] = ACTIONS(4809), - [anon_sym_mut] = ACTIONS(4809), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_go] = ACTIONS(4809), - [anon_sym_spawn] = ACTIONS(4809), - [anon_sym_json_DOTdecode] = ACTIONS(4809), - [anon_sym_LBRACK2] = ACTIONS(4809), - [anon_sym_TILDE] = ACTIONS(4809), - [anon_sym_CARET] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_DASH] = ACTIONS(4809), - [sym_none] = ACTIONS(4809), - [sym_true] = ACTIONS(4809), - [sym_false] = ACTIONS(4809), - [sym_nil] = ACTIONS(4809), - [anon_sym_if] = ACTIONS(4809), - [anon_sym_DOLLARif] = ACTIONS(4809), - [anon_sym_match] = ACTIONS(4809), - [anon_sym_select] = ACTIONS(4809), - [anon_sym_lock] = ACTIONS(4809), - [anon_sym_rlock] = ACTIONS(4809), - [anon_sym_unsafe] = ACTIONS(4809), - [anon_sym_sql] = ACTIONS(4809), - [sym_int_literal] = ACTIONS(4809), - [sym_float_literal] = ACTIONS(4809), - [sym_rune_literal] = ACTIONS(4809), - [anon_sym_SQUOTE] = ACTIONS(4809), - [anon_sym_DQUOTE] = ACTIONS(4809), - [anon_sym_c_SQUOTE] = ACTIONS(4809), - [anon_sym_c_DQUOTE] = ACTIONS(4809), - [anon_sym_r_SQUOTE] = ACTIONS(4809), - [anon_sym_r_DQUOTE] = ACTIONS(4809), - [sym_pseudo_compile_time_identifier] = ACTIONS(4809), - [anon_sym_shared] = ACTIONS(4809), - [anon_sym_map_LBRACK] = ACTIONS(4809), - [anon_sym_chan] = ACTIONS(4809), - [anon_sym_thread] = ACTIONS(4809), - [anon_sym_atomic] = ACTIONS(4809), - [anon_sym_assert] = ACTIONS(4809), - [anon_sym_defer] = ACTIONS(4809), - [anon_sym_goto] = ACTIONS(4809), - [anon_sym_break] = ACTIONS(4809), - [anon_sym_continue] = ACTIONS(4809), - [anon_sym_return] = ACTIONS(4809), - [anon_sym_DOLLARfor] = ACTIONS(4809), - [anon_sym_for] = ACTIONS(4809), - [anon_sym_POUND] = ACTIONS(4809), - [anon_sym_asm] = ACTIONS(4809), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_go] = ACTIONS(2037), + [anon_sym_spawn] = ACTIONS(2037), + [anon_sym_json_DOTdecode] = ACTIONS(2037), + [anon_sym_LBRACK2] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_LT_DASH] = ACTIONS(2037), + [sym_none] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_nil] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_DOLLARif] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_select] = ACTIONS(2037), + [anon_sym_lock] = ACTIONS(2037), + [anon_sym_rlock] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_sql] = ACTIONS(2037), + [sym_int_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + [sym_rune_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_c_SQUOTE] = ACTIONS(2037), + [anon_sym_c_DQUOTE] = ACTIONS(2037), + [anon_sym_r_SQUOTE] = ACTIONS(2037), + [anon_sym_r_DQUOTE] = ACTIONS(2037), + [sym_pseudo_compile_time_identifier] = ACTIONS(2037), + [anon_sym_shared] = ACTIONS(2037), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2037), + [anon_sym_thread] = ACTIONS(2037), + [anon_sym_atomic] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_defer] = ACTIONS(2037), + [anon_sym_goto] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_DOLLARfor] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_asm] = ACTIONS(2037), }, [1934] = { [sym_line_comment] = STATE(1934), [sym_block_comment] = STATE(1934), - [sym_identifier] = ACTIONS(4601), - [anon_sym_LF] = ACTIONS(4601), - [anon_sym_CR] = ACTIONS(4601), - [anon_sym_CR_LF] = ACTIONS(4601), + [sym_identifier] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4647), + [anon_sym_CR] = ACTIONS(4647), + [anon_sym_CR_LF] = ACTIONS(4647), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_LBRACE] = ACTIONS(4601), - [anon_sym_RBRACE] = ACTIONS(4601), - [anon_sym_LPAREN] = ACTIONS(4601), - [anon_sym_fn] = ACTIONS(4601), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4601), - [anon_sym_struct] = ACTIONS(4601), - [anon_sym_mut] = ACTIONS(4601), - [anon_sym_QMARK] = ACTIONS(4601), - [anon_sym_BANG] = ACTIONS(4601), - [anon_sym_go] = ACTIONS(4601), - [anon_sym_spawn] = ACTIONS(4601), - [anon_sym_json_DOTdecode] = ACTIONS(4601), - [anon_sym_LBRACK2] = ACTIONS(4601), - [anon_sym_TILDE] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_LT_DASH] = ACTIONS(4601), - [sym_none] = ACTIONS(4601), - [sym_true] = ACTIONS(4601), - [sym_false] = ACTIONS(4601), - [sym_nil] = ACTIONS(4601), - [anon_sym_if] = ACTIONS(4601), - [anon_sym_DOLLARif] = ACTIONS(4601), - [anon_sym_match] = ACTIONS(4601), - [anon_sym_select] = ACTIONS(4601), - [anon_sym_lock] = ACTIONS(4601), - [anon_sym_rlock] = ACTIONS(4601), - [anon_sym_unsafe] = ACTIONS(4601), - [anon_sym_sql] = ACTIONS(4601), - [sym_int_literal] = ACTIONS(4601), - [sym_float_literal] = ACTIONS(4601), - [sym_rune_literal] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4601), - [anon_sym_DQUOTE] = ACTIONS(4601), - [anon_sym_c_SQUOTE] = ACTIONS(4601), - [anon_sym_c_DQUOTE] = ACTIONS(4601), - [anon_sym_r_SQUOTE] = ACTIONS(4601), - [anon_sym_r_DQUOTE] = ACTIONS(4601), - [sym_pseudo_compile_time_identifier] = ACTIONS(4601), - [anon_sym_shared] = ACTIONS(4601), - [anon_sym_map_LBRACK] = ACTIONS(4601), - [anon_sym_chan] = ACTIONS(4601), - [anon_sym_thread] = ACTIONS(4601), - [anon_sym_atomic] = ACTIONS(4601), - [anon_sym_assert] = ACTIONS(4601), - [anon_sym_defer] = ACTIONS(4601), - [anon_sym_goto] = ACTIONS(4601), - [anon_sym_break] = ACTIONS(4601), - [anon_sym_continue] = ACTIONS(4601), - [anon_sym_return] = ACTIONS(4601), - [anon_sym_DOLLARfor] = ACTIONS(4601), - [anon_sym_for] = ACTIONS(4601), - [anon_sym_POUND] = ACTIONS(4601), - [anon_sym_asm] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_fn] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4647), + [anon_sym_struct] = ACTIONS(4647), + [anon_sym_mut] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_go] = ACTIONS(4647), + [anon_sym_spawn] = ACTIONS(4647), + [anon_sym_json_DOTdecode] = ACTIONS(4647), + [anon_sym_LBRACK2] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4647), + [anon_sym_LT_DASH] = ACTIONS(4647), + [sym_none] = ACTIONS(4647), + [sym_true] = ACTIONS(4647), + [sym_false] = ACTIONS(4647), + [sym_nil] = ACTIONS(4647), + [anon_sym_if] = ACTIONS(4647), + [anon_sym_DOLLARif] = ACTIONS(4647), + [anon_sym_match] = ACTIONS(4647), + [anon_sym_select] = ACTIONS(4647), + [anon_sym_lock] = ACTIONS(4647), + [anon_sym_rlock] = ACTIONS(4647), + [anon_sym_unsafe] = ACTIONS(4647), + [anon_sym_sql] = ACTIONS(4647), + [sym_int_literal] = ACTIONS(4647), + [sym_float_literal] = ACTIONS(4647), + [sym_rune_literal] = ACTIONS(4647), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_c_SQUOTE] = ACTIONS(4647), + [anon_sym_c_DQUOTE] = ACTIONS(4647), + [anon_sym_r_SQUOTE] = ACTIONS(4647), + [anon_sym_r_DQUOTE] = ACTIONS(4647), + [sym_pseudo_compile_time_identifier] = ACTIONS(4647), + [anon_sym_shared] = ACTIONS(4647), + [anon_sym_map_LBRACK] = ACTIONS(4647), + [anon_sym_chan] = ACTIONS(4647), + [anon_sym_thread] = ACTIONS(4647), + [anon_sym_atomic] = ACTIONS(4647), + [anon_sym_assert] = ACTIONS(4647), + [anon_sym_defer] = ACTIONS(4647), + [anon_sym_goto] = ACTIONS(4647), + [anon_sym_break] = ACTIONS(4647), + [anon_sym_continue] = ACTIONS(4647), + [anon_sym_return] = ACTIONS(4647), + [anon_sym_DOLLARfor] = ACTIONS(4647), + [anon_sym_for] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_asm] = ACTIONS(4647), }, [1935] = { [sym_line_comment] = STATE(1935), [sym_block_comment] = STATE(1935), - [sym_identifier] = ACTIONS(4621), - [anon_sym_LF] = ACTIONS(4621), - [anon_sym_CR] = ACTIONS(4621), - [anon_sym_CR_LF] = ACTIONS(4621), + [sym_identifier] = ACTIONS(4550), + [anon_sym_LF] = ACTIONS(4550), + [anon_sym_CR] = ACTIONS(4550), + [anon_sym_CR_LF] = ACTIONS(4550), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_fn] = ACTIONS(4621), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [anon_sym_struct] = ACTIONS(4621), - [anon_sym_mut] = ACTIONS(4621), - [anon_sym_QMARK] = ACTIONS(4621), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_go] = ACTIONS(4621), - [anon_sym_spawn] = ACTIONS(4621), - [anon_sym_json_DOTdecode] = ACTIONS(4621), - [anon_sym_LBRACK2] = ACTIONS(4621), - [anon_sym_TILDE] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_LT_DASH] = ACTIONS(4621), - [sym_none] = ACTIONS(4621), - [sym_true] = ACTIONS(4621), - [sym_false] = ACTIONS(4621), - [sym_nil] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_DOLLARif] = ACTIONS(4621), - [anon_sym_match] = ACTIONS(4621), - [anon_sym_select] = ACTIONS(4621), - [anon_sym_lock] = ACTIONS(4621), - [anon_sym_rlock] = ACTIONS(4621), - [anon_sym_unsafe] = ACTIONS(4621), - [anon_sym_sql] = ACTIONS(4621), - [sym_int_literal] = ACTIONS(4621), - [sym_float_literal] = ACTIONS(4621), - [sym_rune_literal] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4621), - [anon_sym_DQUOTE] = ACTIONS(4621), - [anon_sym_c_SQUOTE] = ACTIONS(4621), - [anon_sym_c_DQUOTE] = ACTIONS(4621), - [anon_sym_r_SQUOTE] = ACTIONS(4621), - [anon_sym_r_DQUOTE] = ACTIONS(4621), - [sym_pseudo_compile_time_identifier] = ACTIONS(4621), - [anon_sym_shared] = ACTIONS(4621), - [anon_sym_map_LBRACK] = ACTIONS(4621), - [anon_sym_chan] = ACTIONS(4621), - [anon_sym_thread] = ACTIONS(4621), - [anon_sym_atomic] = ACTIONS(4621), - [anon_sym_assert] = ACTIONS(4621), - [anon_sym_defer] = ACTIONS(4621), - [anon_sym_goto] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_DOLLARfor] = ACTIONS(4621), - [anon_sym_for] = ACTIONS(4621), - [anon_sym_POUND] = ACTIONS(4621), - [anon_sym_asm] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4550), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4550), + [anon_sym_fn] = ACTIONS(4550), + [anon_sym_PLUS] = ACTIONS(4550), + [anon_sym_DASH] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(4550), + [anon_sym_struct] = ACTIONS(4550), + [anon_sym_mut] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4550), + [anon_sym_BANG] = ACTIONS(4550), + [anon_sym_go] = ACTIONS(4550), + [anon_sym_spawn] = ACTIONS(4550), + [anon_sym_json_DOTdecode] = ACTIONS(4550), + [anon_sym_LBRACK2] = ACTIONS(4550), + [anon_sym_TILDE] = ACTIONS(4550), + [anon_sym_CARET] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4550), + [anon_sym_LT_DASH] = ACTIONS(4550), + [sym_none] = ACTIONS(4550), + [sym_true] = ACTIONS(4550), + [sym_false] = ACTIONS(4550), + [sym_nil] = ACTIONS(4550), + [anon_sym_if] = ACTIONS(4550), + [anon_sym_DOLLARif] = ACTIONS(4550), + [anon_sym_match] = ACTIONS(4550), + [anon_sym_select] = ACTIONS(4550), + [anon_sym_lock] = ACTIONS(4550), + [anon_sym_rlock] = ACTIONS(4550), + [anon_sym_unsafe] = ACTIONS(4550), + [anon_sym_sql] = ACTIONS(4550), + [sym_int_literal] = ACTIONS(4550), + [sym_float_literal] = ACTIONS(4550), + [sym_rune_literal] = ACTIONS(4550), + [anon_sym_SQUOTE] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_c_SQUOTE] = ACTIONS(4550), + [anon_sym_c_DQUOTE] = ACTIONS(4550), + [anon_sym_r_SQUOTE] = ACTIONS(4550), + [anon_sym_r_DQUOTE] = ACTIONS(4550), + [sym_pseudo_compile_time_identifier] = ACTIONS(4550), + [anon_sym_shared] = ACTIONS(4550), + [anon_sym_map_LBRACK] = ACTIONS(4550), + [anon_sym_chan] = ACTIONS(4550), + [anon_sym_thread] = ACTIONS(4550), + [anon_sym_atomic] = ACTIONS(4550), + [anon_sym_assert] = ACTIONS(4550), + [anon_sym_defer] = ACTIONS(4550), + [anon_sym_goto] = ACTIONS(4550), + [anon_sym_break] = ACTIONS(4550), + [anon_sym_continue] = ACTIONS(4550), + [anon_sym_return] = ACTIONS(4550), + [anon_sym_DOLLARfor] = ACTIONS(4550), + [anon_sym_for] = ACTIONS(4550), + [anon_sym_POUND] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(4550), }, [1936] = { [sym_line_comment] = STATE(1936), [sym_block_comment] = STATE(1936), - [sym_identifier] = ACTIONS(4737), - [anon_sym_LF] = ACTIONS(4737), - [anon_sym_CR] = ACTIONS(4737), - [anon_sym_CR_LF] = ACTIONS(4737), + [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(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4737), - [anon_sym_DOT] = ACTIONS(4737), - [anon_sym_LBRACE] = ACTIONS(4737), - [anon_sym_RBRACE] = ACTIONS(4737), - [anon_sym_LPAREN] = ACTIONS(4737), - [anon_sym_fn] = ACTIONS(4737), - [anon_sym_PLUS] = ACTIONS(4737), - [anon_sym_DASH] = ACTIONS(4737), - [anon_sym_STAR] = ACTIONS(4737), - [anon_sym_struct] = ACTIONS(4737), - [anon_sym_mut] = ACTIONS(4737), - [anon_sym_QMARK] = ACTIONS(4737), - [anon_sym_BANG] = ACTIONS(4737), - [anon_sym_go] = ACTIONS(4737), - [anon_sym_spawn] = ACTIONS(4737), - [anon_sym_json_DOTdecode] = ACTIONS(4737), - [anon_sym_LBRACK2] = ACTIONS(4737), - [anon_sym_TILDE] = ACTIONS(4737), - [anon_sym_CARET] = ACTIONS(4737), - [anon_sym_AMP] = ACTIONS(4737), - [anon_sym_LT_DASH] = ACTIONS(4737), - [sym_none] = ACTIONS(4737), - [sym_true] = ACTIONS(4737), - [sym_false] = ACTIONS(4737), - [sym_nil] = ACTIONS(4737), - [anon_sym_if] = ACTIONS(4737), - [anon_sym_DOLLARif] = ACTIONS(4737), - [anon_sym_match] = ACTIONS(4737), - [anon_sym_select] = ACTIONS(4737), - [anon_sym_lock] = ACTIONS(4737), - [anon_sym_rlock] = ACTIONS(4737), - [anon_sym_unsafe] = ACTIONS(4737), - [anon_sym_sql] = ACTIONS(4737), - [sym_int_literal] = ACTIONS(4737), - [sym_float_literal] = ACTIONS(4737), - [sym_rune_literal] = ACTIONS(4737), - [anon_sym_SQUOTE] = ACTIONS(4737), - [anon_sym_DQUOTE] = ACTIONS(4737), - [anon_sym_c_SQUOTE] = ACTIONS(4737), - [anon_sym_c_DQUOTE] = ACTIONS(4737), - [anon_sym_r_SQUOTE] = ACTIONS(4737), - [anon_sym_r_DQUOTE] = ACTIONS(4737), - [sym_pseudo_compile_time_identifier] = ACTIONS(4737), - [anon_sym_shared] = ACTIONS(4737), - [anon_sym_map_LBRACK] = ACTIONS(4737), - [anon_sym_chan] = ACTIONS(4737), - [anon_sym_thread] = ACTIONS(4737), - [anon_sym_atomic] = ACTIONS(4737), - [anon_sym_assert] = ACTIONS(4737), - [anon_sym_defer] = ACTIONS(4737), - [anon_sym_goto] = ACTIONS(4737), - [anon_sym_break] = ACTIONS(4737), - [anon_sym_continue] = ACTIONS(4737), - [anon_sym_return] = ACTIONS(4737), - [anon_sym_DOLLARfor] = ACTIONS(4737), - [anon_sym_for] = ACTIONS(4737), - [anon_sym_POUND] = ACTIONS(4737), - [anon_sym_asm] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_LPAREN] = 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_mut] = 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), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(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), }, [1937] = { [sym_line_comment] = STATE(1937), [sym_block_comment] = STATE(1937), - [sym_identifier] = ACTIONS(4613), - [anon_sym_LF] = ACTIONS(4613), - [anon_sym_CR] = ACTIONS(4613), - [anon_sym_CR_LF] = ACTIONS(4613), + [sym_identifier] = ACTIONS(4619), + [anon_sym_LF] = ACTIONS(4619), + [anon_sym_CR] = ACTIONS(4619), + [anon_sym_CR_LF] = ACTIONS(4619), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym_fn] = ACTIONS(4613), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_struct] = ACTIONS(4613), - [anon_sym_mut] = ACTIONS(4613), - [anon_sym_QMARK] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_go] = ACTIONS(4613), - [anon_sym_spawn] = ACTIONS(4613), - [anon_sym_json_DOTdecode] = ACTIONS(4613), - [anon_sym_LBRACK2] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_LT_DASH] = ACTIONS(4613), - [sym_none] = ACTIONS(4613), - [sym_true] = ACTIONS(4613), - [sym_false] = ACTIONS(4613), - [sym_nil] = ACTIONS(4613), - [anon_sym_if] = ACTIONS(4613), - [anon_sym_DOLLARif] = ACTIONS(4613), - [anon_sym_match] = ACTIONS(4613), - [anon_sym_select] = ACTIONS(4613), - [anon_sym_lock] = ACTIONS(4613), - [anon_sym_rlock] = ACTIONS(4613), - [anon_sym_unsafe] = ACTIONS(4613), - [anon_sym_sql] = ACTIONS(4613), - [sym_int_literal] = ACTIONS(4613), - [sym_float_literal] = ACTIONS(4613), - [sym_rune_literal] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [anon_sym_DQUOTE] = ACTIONS(4613), - [anon_sym_c_SQUOTE] = ACTIONS(4613), - [anon_sym_c_DQUOTE] = ACTIONS(4613), - [anon_sym_r_SQUOTE] = ACTIONS(4613), - [anon_sym_r_DQUOTE] = ACTIONS(4613), - [sym_pseudo_compile_time_identifier] = ACTIONS(4613), - [anon_sym_shared] = ACTIONS(4613), - [anon_sym_map_LBRACK] = ACTIONS(4613), - [anon_sym_chan] = ACTIONS(4613), - [anon_sym_thread] = ACTIONS(4613), - [anon_sym_atomic] = ACTIONS(4613), - [anon_sym_assert] = ACTIONS(4613), - [anon_sym_defer] = ACTIONS(4613), - [anon_sym_goto] = ACTIONS(4613), - [anon_sym_break] = ACTIONS(4613), - [anon_sym_continue] = ACTIONS(4613), - [anon_sym_return] = ACTIONS(4613), - [anon_sym_DOLLARfor] = ACTIONS(4613), - [anon_sym_for] = ACTIONS(4613), - [anon_sym_POUND] = ACTIONS(4613), - [anon_sym_asm] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_RBRACE] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_fn] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [anon_sym_struct] = ACTIONS(4619), + [anon_sym_mut] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_go] = ACTIONS(4619), + [anon_sym_spawn] = ACTIONS(4619), + [anon_sym_json_DOTdecode] = ACTIONS(4619), + [anon_sym_LBRACK2] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4619), + [anon_sym_LT_DASH] = ACTIONS(4619), + [sym_none] = ACTIONS(4619), + [sym_true] = ACTIONS(4619), + [sym_false] = ACTIONS(4619), + [sym_nil] = ACTIONS(4619), + [anon_sym_if] = ACTIONS(4619), + [anon_sym_DOLLARif] = ACTIONS(4619), + [anon_sym_match] = ACTIONS(4619), + [anon_sym_select] = ACTIONS(4619), + [anon_sym_lock] = ACTIONS(4619), + [anon_sym_rlock] = ACTIONS(4619), + [anon_sym_unsafe] = ACTIONS(4619), + [anon_sym_sql] = ACTIONS(4619), + [sym_int_literal] = ACTIONS(4619), + [sym_float_literal] = ACTIONS(4619), + [sym_rune_literal] = ACTIONS(4619), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_c_SQUOTE] = ACTIONS(4619), + [anon_sym_c_DQUOTE] = ACTIONS(4619), + [anon_sym_r_SQUOTE] = ACTIONS(4619), + [anon_sym_r_DQUOTE] = ACTIONS(4619), + [sym_pseudo_compile_time_identifier] = ACTIONS(4619), + [anon_sym_shared] = ACTIONS(4619), + [anon_sym_map_LBRACK] = ACTIONS(4619), + [anon_sym_chan] = ACTIONS(4619), + [anon_sym_thread] = ACTIONS(4619), + [anon_sym_atomic] = ACTIONS(4619), + [anon_sym_assert] = ACTIONS(4619), + [anon_sym_defer] = ACTIONS(4619), + [anon_sym_goto] = ACTIONS(4619), + [anon_sym_break] = ACTIONS(4619), + [anon_sym_continue] = ACTIONS(4619), + [anon_sym_return] = ACTIONS(4619), + [anon_sym_DOLLARfor] = ACTIONS(4619), + [anon_sym_for] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_asm] = ACTIONS(4619), }, [1938] = { [sym_line_comment] = STATE(1938), [sym_block_comment] = STATE(1938), - [sym_identifier] = ACTIONS(4841), - [anon_sym_LF] = ACTIONS(4841), - [anon_sym_CR] = ACTIONS(4841), - [anon_sym_CR_LF] = ACTIONS(4841), + [sym_identifier] = ACTIONS(4881), + [anon_sym_LF] = ACTIONS(4881), + [anon_sym_CR] = ACTIONS(4881), + [anon_sym_CR_LF] = ACTIONS(4881), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_LBRACE] = ACTIONS(4841), - [anon_sym_RBRACE] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4841), - [anon_sym_fn] = ACTIONS(4841), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4841), - [anon_sym_struct] = ACTIONS(4841), - [anon_sym_mut] = ACTIONS(4841), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_go] = ACTIONS(4841), - [anon_sym_spawn] = ACTIONS(4841), - [anon_sym_json_DOTdecode] = ACTIONS(4841), - [anon_sym_LBRACK2] = ACTIONS(4841), - [anon_sym_TILDE] = ACTIONS(4841), - [anon_sym_CARET] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_DASH] = ACTIONS(4841), - [sym_none] = ACTIONS(4841), - [sym_true] = ACTIONS(4841), - [sym_false] = ACTIONS(4841), - [sym_nil] = ACTIONS(4841), - [anon_sym_if] = ACTIONS(4841), - [anon_sym_DOLLARif] = ACTIONS(4841), - [anon_sym_match] = ACTIONS(4841), - [anon_sym_select] = ACTIONS(4841), - [anon_sym_lock] = ACTIONS(4841), - [anon_sym_rlock] = ACTIONS(4841), - [anon_sym_unsafe] = ACTIONS(4841), - [anon_sym_sql] = ACTIONS(4841), - [sym_int_literal] = ACTIONS(4841), - [sym_float_literal] = ACTIONS(4841), - [sym_rune_literal] = ACTIONS(4841), - [anon_sym_SQUOTE] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [anon_sym_c_SQUOTE] = ACTIONS(4841), - [anon_sym_c_DQUOTE] = ACTIONS(4841), - [anon_sym_r_SQUOTE] = ACTIONS(4841), - [anon_sym_r_DQUOTE] = ACTIONS(4841), - [sym_pseudo_compile_time_identifier] = ACTIONS(4841), - [anon_sym_shared] = ACTIONS(4841), - [anon_sym_map_LBRACK] = ACTIONS(4841), - [anon_sym_chan] = ACTIONS(4841), - [anon_sym_thread] = ACTIONS(4841), - [anon_sym_atomic] = ACTIONS(4841), - [anon_sym_assert] = ACTIONS(4841), - [anon_sym_defer] = ACTIONS(4841), - [anon_sym_goto] = ACTIONS(4841), - [anon_sym_break] = ACTIONS(4841), - [anon_sym_continue] = ACTIONS(4841), - [anon_sym_return] = ACTIONS(4841), - [anon_sym_DOLLARfor] = ACTIONS(4841), - [anon_sym_for] = ACTIONS(4841), - [anon_sym_POUND] = ACTIONS(4841), - [anon_sym_asm] = ACTIONS(4841), + [anon_sym_SEMI] = ACTIONS(4881), + [anon_sym_DOT] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_fn] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_STAR] = ACTIONS(4881), + [anon_sym_struct] = ACTIONS(4881), + [anon_sym_mut] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4881), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_go] = ACTIONS(4881), + [anon_sym_spawn] = ACTIONS(4881), + [anon_sym_json_DOTdecode] = ACTIONS(4881), + [anon_sym_LBRACK2] = ACTIONS(4881), + [anon_sym_TILDE] = ACTIONS(4881), + [anon_sym_CARET] = ACTIONS(4881), + [anon_sym_AMP] = ACTIONS(4881), + [anon_sym_LT_DASH] = ACTIONS(4881), + [sym_none] = ACTIONS(4881), + [sym_true] = ACTIONS(4881), + [sym_false] = ACTIONS(4881), + [sym_nil] = ACTIONS(4881), + [anon_sym_if] = ACTIONS(4881), + [anon_sym_DOLLARif] = ACTIONS(4881), + [anon_sym_match] = ACTIONS(4881), + [anon_sym_select] = ACTIONS(4881), + [anon_sym_lock] = ACTIONS(4881), + [anon_sym_rlock] = ACTIONS(4881), + [anon_sym_unsafe] = ACTIONS(4881), + [anon_sym_sql] = ACTIONS(4881), + [sym_int_literal] = ACTIONS(4881), + [sym_float_literal] = ACTIONS(4881), + [sym_rune_literal] = ACTIONS(4881), + [anon_sym_SQUOTE] = ACTIONS(4881), + [anon_sym_DQUOTE] = ACTIONS(4881), + [anon_sym_c_SQUOTE] = ACTIONS(4881), + [anon_sym_c_DQUOTE] = ACTIONS(4881), + [anon_sym_r_SQUOTE] = ACTIONS(4881), + [anon_sym_r_DQUOTE] = ACTIONS(4881), + [sym_pseudo_compile_time_identifier] = ACTIONS(4881), + [anon_sym_shared] = ACTIONS(4881), + [anon_sym_map_LBRACK] = ACTIONS(4881), + [anon_sym_chan] = ACTIONS(4881), + [anon_sym_thread] = ACTIONS(4881), + [anon_sym_atomic] = ACTIONS(4881), + [anon_sym_assert] = ACTIONS(4881), + [anon_sym_defer] = ACTIONS(4881), + [anon_sym_goto] = ACTIONS(4881), + [anon_sym_break] = ACTIONS(4881), + [anon_sym_continue] = ACTIONS(4881), + [anon_sym_return] = ACTIONS(4881), + [anon_sym_DOLLARfor] = ACTIONS(4881), + [anon_sym_for] = ACTIONS(4881), + [anon_sym_POUND] = ACTIONS(4881), + [anon_sym_asm] = ACTIONS(4881), }, [1939] = { [sym_line_comment] = STATE(1939), [sym_block_comment] = STATE(1939), - [sym_identifier] = ACTIONS(4548), - [anon_sym_LF] = ACTIONS(4548), - [anon_sym_CR] = ACTIONS(4548), - [anon_sym_CR_LF] = ACTIONS(4548), + [sym_identifier] = ACTIONS(4851), + [anon_sym_LF] = ACTIONS(4851), + [anon_sym_CR] = ACTIONS(4851), + [anon_sym_CR_LF] = ACTIONS(4851), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4548), - [anon_sym_LBRACE] = ACTIONS(4548), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_fn] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4548), - [anon_sym_DASH] = ACTIONS(4548), - [anon_sym_STAR] = ACTIONS(4548), - [anon_sym_struct] = ACTIONS(4548), - [anon_sym_mut] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4548), - [anon_sym_BANG] = ACTIONS(4548), - [anon_sym_go] = ACTIONS(4548), - [anon_sym_spawn] = ACTIONS(4548), - [anon_sym_json_DOTdecode] = ACTIONS(4548), - [anon_sym_LBRACK2] = ACTIONS(4548), - [anon_sym_TILDE] = ACTIONS(4548), - [anon_sym_CARET] = ACTIONS(4548), - [anon_sym_AMP] = ACTIONS(4548), - [anon_sym_LT_DASH] = ACTIONS(4548), - [sym_none] = ACTIONS(4548), - [sym_true] = ACTIONS(4548), - [sym_false] = ACTIONS(4548), - [sym_nil] = ACTIONS(4548), - [anon_sym_if] = ACTIONS(4548), - [anon_sym_DOLLARif] = ACTIONS(4548), - [anon_sym_match] = ACTIONS(4548), - [anon_sym_select] = ACTIONS(4548), - [anon_sym_lock] = ACTIONS(4548), - [anon_sym_rlock] = ACTIONS(4548), - [anon_sym_unsafe] = ACTIONS(4548), - [anon_sym_sql] = ACTIONS(4548), - [sym_int_literal] = ACTIONS(4548), - [sym_float_literal] = ACTIONS(4548), - [sym_rune_literal] = ACTIONS(4548), - [anon_sym_SQUOTE] = ACTIONS(4548), - [anon_sym_DQUOTE] = ACTIONS(4548), - [anon_sym_c_SQUOTE] = ACTIONS(4548), - [anon_sym_c_DQUOTE] = ACTIONS(4548), - [anon_sym_r_SQUOTE] = ACTIONS(4548), - [anon_sym_r_DQUOTE] = ACTIONS(4548), - [sym_pseudo_compile_time_identifier] = ACTIONS(4548), - [anon_sym_shared] = ACTIONS(4548), - [anon_sym_map_LBRACK] = ACTIONS(4548), - [anon_sym_chan] = ACTIONS(4548), - [anon_sym_thread] = ACTIONS(4548), - [anon_sym_atomic] = ACTIONS(4548), - [anon_sym_assert] = ACTIONS(4548), - [anon_sym_defer] = ACTIONS(4548), - [anon_sym_goto] = ACTIONS(4548), - [anon_sym_break] = ACTIONS(4548), - [anon_sym_continue] = ACTIONS(4548), - [anon_sym_return] = ACTIONS(4548), - [anon_sym_DOLLARfor] = ACTIONS(4548), - [anon_sym_for] = ACTIONS(4548), - [anon_sym_POUND] = ACTIONS(4548), - [anon_sym_asm] = ACTIONS(4548), + [anon_sym_SEMI] = ACTIONS(4851), + [anon_sym_DOT] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [anon_sym_RBRACE] = ACTIONS(4851), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_fn] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4851), + [anon_sym_STAR] = ACTIONS(4851), + [anon_sym_struct] = ACTIONS(4851), + [anon_sym_mut] = ACTIONS(4851), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_BANG] = ACTIONS(4851), + [anon_sym_go] = ACTIONS(4851), + [anon_sym_spawn] = ACTIONS(4851), + [anon_sym_json_DOTdecode] = ACTIONS(4851), + [anon_sym_LBRACK2] = ACTIONS(4851), + [anon_sym_TILDE] = ACTIONS(4851), + [anon_sym_CARET] = ACTIONS(4851), + [anon_sym_AMP] = ACTIONS(4851), + [anon_sym_LT_DASH] = ACTIONS(4851), + [sym_none] = ACTIONS(4851), + [sym_true] = ACTIONS(4851), + [sym_false] = ACTIONS(4851), + [sym_nil] = ACTIONS(4851), + [anon_sym_if] = ACTIONS(4851), + [anon_sym_DOLLARif] = ACTIONS(4851), + [anon_sym_match] = ACTIONS(4851), + [anon_sym_select] = ACTIONS(4851), + [anon_sym_lock] = ACTIONS(4851), + [anon_sym_rlock] = ACTIONS(4851), + [anon_sym_unsafe] = ACTIONS(4851), + [anon_sym_sql] = ACTIONS(4851), + [sym_int_literal] = ACTIONS(4851), + [sym_float_literal] = ACTIONS(4851), + [sym_rune_literal] = ACTIONS(4851), + [anon_sym_SQUOTE] = ACTIONS(4851), + [anon_sym_DQUOTE] = ACTIONS(4851), + [anon_sym_c_SQUOTE] = ACTIONS(4851), + [anon_sym_c_DQUOTE] = ACTIONS(4851), + [anon_sym_r_SQUOTE] = ACTIONS(4851), + [anon_sym_r_DQUOTE] = ACTIONS(4851), + [sym_pseudo_compile_time_identifier] = ACTIONS(4851), + [anon_sym_shared] = ACTIONS(4851), + [anon_sym_map_LBRACK] = ACTIONS(4851), + [anon_sym_chan] = ACTIONS(4851), + [anon_sym_thread] = ACTIONS(4851), + [anon_sym_atomic] = ACTIONS(4851), + [anon_sym_assert] = ACTIONS(4851), + [anon_sym_defer] = ACTIONS(4851), + [anon_sym_goto] = ACTIONS(4851), + [anon_sym_break] = ACTIONS(4851), + [anon_sym_continue] = ACTIONS(4851), + [anon_sym_return] = ACTIONS(4851), + [anon_sym_DOLLARfor] = ACTIONS(4851), + [anon_sym_for] = ACTIONS(4851), + [anon_sym_POUND] = ACTIONS(4851), + [anon_sym_asm] = ACTIONS(4851), }, [1940] = { [sym_line_comment] = STATE(1940), [sym_block_comment] = STATE(1940), - [sym_identifier] = ACTIONS(3254), - [anon_sym_LF] = ACTIONS(3254), - [anon_sym_CR] = ACTIONS(3254), - [anon_sym_CR_LF] = ACTIONS(3254), + [sym_identifier] = ACTIONS(4807), + [anon_sym_LF] = ACTIONS(4807), + [anon_sym_CR] = ACTIONS(4807), + [anon_sym_CR_LF] = ACTIONS(4807), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_DOT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_fn] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_mut] = ACTIONS(3254), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_go] = ACTIONS(3254), - [anon_sym_spawn] = ACTIONS(3254), - [anon_sym_json_DOTdecode] = ACTIONS(3254), - [anon_sym_LBRACK2] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_LT_DASH] = ACTIONS(3254), - [sym_none] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_nil] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_DOLLARif] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_lock] = ACTIONS(3254), - [anon_sym_rlock] = ACTIONS(3254), - [anon_sym_unsafe] = ACTIONS(3254), - [anon_sym_sql] = ACTIONS(3254), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(3254), - [sym_rune_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_c_SQUOTE] = ACTIONS(3254), - [anon_sym_c_DQUOTE] = ACTIONS(3254), - [anon_sym_r_SQUOTE] = ACTIONS(3254), - [anon_sym_r_DQUOTE] = ACTIONS(3254), - [sym_pseudo_compile_time_identifier] = ACTIONS(3254), - [anon_sym_shared] = ACTIONS(3254), - [anon_sym_map_LBRACK] = ACTIONS(3254), - [anon_sym_chan] = ACTIONS(3254), - [anon_sym_thread] = ACTIONS(3254), - [anon_sym_atomic] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_defer] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_DOLLARfor] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_LPAREN] = ACTIONS(4807), + [anon_sym_fn] = ACTIONS(4807), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_struct] = ACTIONS(4807), + [anon_sym_mut] = ACTIONS(4807), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_go] = ACTIONS(4807), + [anon_sym_spawn] = ACTIONS(4807), + [anon_sym_json_DOTdecode] = ACTIONS(4807), + [anon_sym_LBRACK2] = ACTIONS(4807), + [anon_sym_TILDE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_DASH] = ACTIONS(4807), + [sym_none] = ACTIONS(4807), + [sym_true] = ACTIONS(4807), + [sym_false] = ACTIONS(4807), + [sym_nil] = ACTIONS(4807), + [anon_sym_if] = ACTIONS(4807), + [anon_sym_DOLLARif] = ACTIONS(4807), + [anon_sym_match] = ACTIONS(4807), + [anon_sym_select] = ACTIONS(4807), + [anon_sym_lock] = ACTIONS(4807), + [anon_sym_rlock] = ACTIONS(4807), + [anon_sym_unsafe] = ACTIONS(4807), + [anon_sym_sql] = ACTIONS(4807), + [sym_int_literal] = ACTIONS(4807), + [sym_float_literal] = ACTIONS(4807), + [sym_rune_literal] = ACTIONS(4807), + [anon_sym_SQUOTE] = ACTIONS(4807), + [anon_sym_DQUOTE] = ACTIONS(4807), + [anon_sym_c_SQUOTE] = ACTIONS(4807), + [anon_sym_c_DQUOTE] = ACTIONS(4807), + [anon_sym_r_SQUOTE] = ACTIONS(4807), + [anon_sym_r_DQUOTE] = ACTIONS(4807), + [sym_pseudo_compile_time_identifier] = ACTIONS(4807), + [anon_sym_shared] = ACTIONS(4807), + [anon_sym_map_LBRACK] = ACTIONS(4807), + [anon_sym_chan] = ACTIONS(4807), + [anon_sym_thread] = ACTIONS(4807), + [anon_sym_atomic] = ACTIONS(4807), + [anon_sym_assert] = ACTIONS(4807), + [anon_sym_defer] = ACTIONS(4807), + [anon_sym_goto] = ACTIONS(4807), + [anon_sym_break] = ACTIONS(4807), + [anon_sym_continue] = ACTIONS(4807), + [anon_sym_return] = ACTIONS(4807), + [anon_sym_DOLLARfor] = ACTIONS(4807), + [anon_sym_for] = ACTIONS(4807), + [anon_sym_POUND] = ACTIONS(4807), + [anon_sym_asm] = ACTIONS(4807), }, [1941] = { [sym_line_comment] = STATE(1941), [sym_block_comment] = STATE(1941), - [sym_identifier] = ACTIONS(4797), - [anon_sym_LF] = ACTIONS(4797), - [anon_sym_CR] = ACTIONS(4797), - [anon_sym_CR_LF] = ACTIONS(4797), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_DOT] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_fn] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_struct] = ACTIONS(4797), - [anon_sym_mut] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_go] = ACTIONS(4797), - [anon_sym_spawn] = ACTIONS(4797), - [anon_sym_json_DOTdecode] = ACTIONS(4797), - [anon_sym_LBRACK2] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4797), - [anon_sym_LT_DASH] = ACTIONS(4797), - [sym_none] = ACTIONS(4797), - [sym_true] = ACTIONS(4797), - [sym_false] = ACTIONS(4797), - [sym_nil] = ACTIONS(4797), - [anon_sym_if] = ACTIONS(4797), - [anon_sym_DOLLARif] = ACTIONS(4797), - [anon_sym_match] = ACTIONS(4797), - [anon_sym_select] = ACTIONS(4797), - [anon_sym_lock] = ACTIONS(4797), - [anon_sym_rlock] = ACTIONS(4797), - [anon_sym_unsafe] = ACTIONS(4797), - [anon_sym_sql] = ACTIONS(4797), - [sym_int_literal] = ACTIONS(4797), - [sym_float_literal] = ACTIONS(4797), - [sym_rune_literal] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_c_SQUOTE] = ACTIONS(4797), - [anon_sym_c_DQUOTE] = ACTIONS(4797), - [anon_sym_r_SQUOTE] = ACTIONS(4797), - [anon_sym_r_DQUOTE] = ACTIONS(4797), - [sym_pseudo_compile_time_identifier] = ACTIONS(4797), - [anon_sym_shared] = ACTIONS(4797), - [anon_sym_map_LBRACK] = ACTIONS(4797), - [anon_sym_chan] = ACTIONS(4797), - [anon_sym_thread] = ACTIONS(4797), - [anon_sym_atomic] = ACTIONS(4797), - [anon_sym_assert] = ACTIONS(4797), - [anon_sym_defer] = ACTIONS(4797), - [anon_sym_goto] = ACTIONS(4797), - [anon_sym_break] = ACTIONS(4797), - [anon_sym_continue] = ACTIONS(4797), - [anon_sym_return] = ACTIONS(4797), - [anon_sym_DOLLARfor] = ACTIONS(4797), - [anon_sym_for] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_asm] = ACTIONS(4797), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_c_SQUOTE] = ACTIONS(3250), + [anon_sym_c_DQUOTE] = ACTIONS(3250), + [anon_sym_r_SQUOTE] = ACTIONS(3250), + [anon_sym_r_DQUOTE] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), }, [1942] = { [sym_line_comment] = STATE(1942), [sym_block_comment] = STATE(1942), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [sym_identifier] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_CR] = ACTIONS(4885), + [anon_sym_CR_LF] = ACTIONS(4885), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_DOT] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_fn] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_struct] = ACTIONS(4885), + [anon_sym_mut] = ACTIONS(4885), + [anon_sym_QMARK] = ACTIONS(4885), + [anon_sym_BANG] = ACTIONS(4885), + [anon_sym_go] = ACTIONS(4885), + [anon_sym_spawn] = ACTIONS(4885), + [anon_sym_json_DOTdecode] = ACTIONS(4885), + [anon_sym_LBRACK2] = ACTIONS(4885), + [anon_sym_TILDE] = ACTIONS(4885), + [anon_sym_CARET] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + [anon_sym_LT_DASH] = ACTIONS(4885), + [sym_none] = ACTIONS(4885), + [sym_true] = ACTIONS(4885), + [sym_false] = ACTIONS(4885), + [sym_nil] = ACTIONS(4885), + [anon_sym_if] = ACTIONS(4885), + [anon_sym_DOLLARif] = ACTIONS(4885), + [anon_sym_match] = ACTIONS(4885), + [anon_sym_select] = ACTIONS(4885), + [anon_sym_lock] = ACTIONS(4885), + [anon_sym_rlock] = ACTIONS(4885), + [anon_sym_unsafe] = ACTIONS(4885), + [anon_sym_sql] = ACTIONS(4885), + [sym_int_literal] = ACTIONS(4885), + [sym_float_literal] = ACTIONS(4885), + [sym_rune_literal] = ACTIONS(4885), + [anon_sym_SQUOTE] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_c_SQUOTE] = ACTIONS(4885), + [anon_sym_c_DQUOTE] = ACTIONS(4885), + [anon_sym_r_SQUOTE] = ACTIONS(4885), + [anon_sym_r_DQUOTE] = ACTIONS(4885), + [sym_pseudo_compile_time_identifier] = ACTIONS(4885), + [anon_sym_shared] = ACTIONS(4885), + [anon_sym_map_LBRACK] = ACTIONS(4885), + [anon_sym_chan] = ACTIONS(4885), + [anon_sym_thread] = ACTIONS(4885), + [anon_sym_atomic] = ACTIONS(4885), + [anon_sym_assert] = ACTIONS(4885), + [anon_sym_defer] = ACTIONS(4885), + [anon_sym_goto] = ACTIONS(4885), + [anon_sym_break] = ACTIONS(4885), + [anon_sym_continue] = ACTIONS(4885), + [anon_sym_return] = ACTIONS(4885), + [anon_sym_DOLLARfor] = ACTIONS(4885), + [anon_sym_for] = ACTIONS(4885), + [anon_sym_POUND] = ACTIONS(4885), + [anon_sym_asm] = ACTIONS(4885), }, [1943] = { [sym_line_comment] = STATE(1943), [sym_block_comment] = STATE(1943), - [sym_identifier] = ACTIONS(4585), - [anon_sym_LF] = ACTIONS(4585), - [anon_sym_CR] = ACTIONS(4585), - [anon_sym_CR_LF] = ACTIONS(4585), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(4585), - [anon_sym_RBRACE] = ACTIONS(4585), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_fn] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_STAR] = ACTIONS(4585), - [anon_sym_struct] = ACTIONS(4585), - [anon_sym_mut] = ACTIONS(4585), - [anon_sym_QMARK] = ACTIONS(4585), - [anon_sym_BANG] = ACTIONS(4585), - [anon_sym_go] = ACTIONS(4585), - [anon_sym_spawn] = ACTIONS(4585), - [anon_sym_json_DOTdecode] = ACTIONS(4585), - [anon_sym_LBRACK2] = ACTIONS(4585), - [anon_sym_TILDE] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_LT_DASH] = ACTIONS(4585), - [sym_none] = ACTIONS(4585), - [sym_true] = ACTIONS(4585), - [sym_false] = ACTIONS(4585), - [sym_nil] = ACTIONS(4585), - [anon_sym_if] = ACTIONS(4585), - [anon_sym_DOLLARif] = ACTIONS(4585), - [anon_sym_match] = ACTIONS(4585), - [anon_sym_select] = ACTIONS(4585), - [anon_sym_lock] = ACTIONS(4585), - [anon_sym_rlock] = ACTIONS(4585), - [anon_sym_unsafe] = ACTIONS(4585), - [anon_sym_sql] = ACTIONS(4585), - [sym_int_literal] = ACTIONS(4585), - [sym_float_literal] = ACTIONS(4585), - [sym_rune_literal] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4585), - [anon_sym_DQUOTE] = ACTIONS(4585), - [anon_sym_c_SQUOTE] = ACTIONS(4585), - [anon_sym_c_DQUOTE] = ACTIONS(4585), - [anon_sym_r_SQUOTE] = ACTIONS(4585), - [anon_sym_r_DQUOTE] = ACTIONS(4585), - [sym_pseudo_compile_time_identifier] = ACTIONS(4585), - [anon_sym_shared] = ACTIONS(4585), - [anon_sym_map_LBRACK] = ACTIONS(4585), - [anon_sym_chan] = ACTIONS(4585), - [anon_sym_thread] = ACTIONS(4585), - [anon_sym_atomic] = ACTIONS(4585), - [anon_sym_assert] = ACTIONS(4585), - [anon_sym_defer] = ACTIONS(4585), - [anon_sym_goto] = ACTIONS(4585), - [anon_sym_break] = ACTIONS(4585), - [anon_sym_continue] = ACTIONS(4585), - [anon_sym_return] = ACTIONS(4585), - [anon_sym_DOLLARfor] = ACTIONS(4585), - [anon_sym_for] = ACTIONS(4585), - [anon_sym_POUND] = ACTIONS(4585), - [anon_sym_asm] = ACTIONS(4585), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), }, [1944] = { [sym_line_comment] = STATE(1944), [sym_block_comment] = STATE(1944), - [sym_identifier] = ACTIONS(4825), - [anon_sym_LF] = ACTIONS(4825), - [anon_sym_CR] = ACTIONS(4825), - [anon_sym_CR_LF] = ACTIONS(4825), + [sym_identifier] = ACTIONS(4671), + [anon_sym_LF] = ACTIONS(4671), + [anon_sym_CR] = ACTIONS(4671), + [anon_sym_CR_LF] = ACTIONS(4671), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4825), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4825), - [anon_sym_fn] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4825), - [anon_sym_struct] = ACTIONS(4825), - [anon_sym_mut] = ACTIONS(4825), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_go] = ACTIONS(4825), - [anon_sym_spawn] = ACTIONS(4825), - [anon_sym_json_DOTdecode] = ACTIONS(4825), - [anon_sym_LBRACK2] = ACTIONS(4825), - [anon_sym_TILDE] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_DASH] = ACTIONS(4825), - [sym_none] = ACTIONS(4825), - [sym_true] = ACTIONS(4825), - [sym_false] = ACTIONS(4825), - [sym_nil] = ACTIONS(4825), - [anon_sym_if] = ACTIONS(4825), - [anon_sym_DOLLARif] = ACTIONS(4825), - [anon_sym_match] = ACTIONS(4825), - [anon_sym_select] = ACTIONS(4825), - [anon_sym_lock] = ACTIONS(4825), - [anon_sym_rlock] = ACTIONS(4825), - [anon_sym_unsafe] = ACTIONS(4825), - [anon_sym_sql] = ACTIONS(4825), - [sym_int_literal] = ACTIONS(4825), - [sym_float_literal] = ACTIONS(4825), - [sym_rune_literal] = ACTIONS(4825), - [anon_sym_SQUOTE] = ACTIONS(4825), - [anon_sym_DQUOTE] = ACTIONS(4825), - [anon_sym_c_SQUOTE] = ACTIONS(4825), - [anon_sym_c_DQUOTE] = ACTIONS(4825), - [anon_sym_r_SQUOTE] = ACTIONS(4825), - [anon_sym_r_DQUOTE] = ACTIONS(4825), - [sym_pseudo_compile_time_identifier] = ACTIONS(4825), - [anon_sym_shared] = ACTIONS(4825), - [anon_sym_map_LBRACK] = ACTIONS(4825), - [anon_sym_chan] = ACTIONS(4825), - [anon_sym_thread] = ACTIONS(4825), - [anon_sym_atomic] = ACTIONS(4825), - [anon_sym_assert] = ACTIONS(4825), - [anon_sym_defer] = ACTIONS(4825), - [anon_sym_goto] = ACTIONS(4825), - [anon_sym_break] = ACTIONS(4825), - [anon_sym_continue] = ACTIONS(4825), - [anon_sym_return] = ACTIONS(4825), - [anon_sym_DOLLARfor] = ACTIONS(4825), - [anon_sym_for] = ACTIONS(4825), - [anon_sym_POUND] = ACTIONS(4825), - [anon_sym_asm] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4671), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_LBRACE] = ACTIONS(4671), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym_fn] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4671), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4671), + [anon_sym_struct] = ACTIONS(4671), + [anon_sym_mut] = ACTIONS(4671), + [anon_sym_QMARK] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4671), + [anon_sym_go] = ACTIONS(4671), + [anon_sym_spawn] = ACTIONS(4671), + [anon_sym_json_DOTdecode] = ACTIONS(4671), + [anon_sym_LBRACK2] = ACTIONS(4671), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [anon_sym_LT_DASH] = ACTIONS(4671), + [sym_none] = ACTIONS(4671), + [sym_true] = ACTIONS(4671), + [sym_false] = ACTIONS(4671), + [sym_nil] = ACTIONS(4671), + [anon_sym_if] = ACTIONS(4671), + [anon_sym_DOLLARif] = ACTIONS(4671), + [anon_sym_match] = ACTIONS(4671), + [anon_sym_select] = ACTIONS(4671), + [anon_sym_lock] = ACTIONS(4671), + [anon_sym_rlock] = ACTIONS(4671), + [anon_sym_unsafe] = ACTIONS(4671), + [anon_sym_sql] = ACTIONS(4671), + [sym_int_literal] = ACTIONS(4671), + [sym_float_literal] = ACTIONS(4671), + [sym_rune_literal] = ACTIONS(4671), + [anon_sym_SQUOTE] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(4671), + [anon_sym_c_SQUOTE] = ACTIONS(4671), + [anon_sym_c_DQUOTE] = ACTIONS(4671), + [anon_sym_r_SQUOTE] = ACTIONS(4671), + [anon_sym_r_DQUOTE] = ACTIONS(4671), + [sym_pseudo_compile_time_identifier] = ACTIONS(4671), + [anon_sym_shared] = ACTIONS(4671), + [anon_sym_map_LBRACK] = ACTIONS(4671), + [anon_sym_chan] = ACTIONS(4671), + [anon_sym_thread] = ACTIONS(4671), + [anon_sym_atomic] = ACTIONS(4671), + [anon_sym_assert] = ACTIONS(4671), + [anon_sym_defer] = ACTIONS(4671), + [anon_sym_goto] = ACTIONS(4671), + [anon_sym_break] = ACTIONS(4671), + [anon_sym_continue] = ACTIONS(4671), + [anon_sym_return] = ACTIONS(4671), + [anon_sym_DOLLARfor] = ACTIONS(4671), + [anon_sym_for] = ACTIONS(4671), + [anon_sym_POUND] = ACTIONS(4671), + [anon_sym_asm] = ACTIONS(4671), }, [1945] = { [sym_line_comment] = STATE(1945), [sym_block_comment] = STATE(1945), - [sym_identifier] = ACTIONS(4821), - [anon_sym_LF] = ACTIONS(4821), - [anon_sym_CR] = ACTIONS(4821), - [anon_sym_CR_LF] = ACTIONS(4821), + [sym_identifier] = ACTIONS(4595), + [anon_sym_LF] = ACTIONS(4595), + [anon_sym_CR] = ACTIONS(4595), + [anon_sym_CR_LF] = ACTIONS(4595), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_fn] = ACTIONS(4821), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4821), - [anon_sym_struct] = ACTIONS(4821), - [anon_sym_mut] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_go] = ACTIONS(4821), - [anon_sym_spawn] = ACTIONS(4821), - [anon_sym_json_DOTdecode] = ACTIONS(4821), - [anon_sym_LBRACK2] = ACTIONS(4821), - [anon_sym_TILDE] = ACTIONS(4821), - [anon_sym_CARET] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_DASH] = ACTIONS(4821), - [sym_none] = ACTIONS(4821), - [sym_true] = ACTIONS(4821), - [sym_false] = ACTIONS(4821), - [sym_nil] = ACTIONS(4821), - [anon_sym_if] = ACTIONS(4821), - [anon_sym_DOLLARif] = ACTIONS(4821), - [anon_sym_match] = ACTIONS(4821), - [anon_sym_select] = ACTIONS(4821), - [anon_sym_lock] = ACTIONS(4821), - [anon_sym_rlock] = ACTIONS(4821), - [anon_sym_unsafe] = ACTIONS(4821), - [anon_sym_sql] = ACTIONS(4821), - [sym_int_literal] = ACTIONS(4821), - [sym_float_literal] = ACTIONS(4821), - [sym_rune_literal] = ACTIONS(4821), - [anon_sym_SQUOTE] = ACTIONS(4821), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_c_SQUOTE] = ACTIONS(4821), - [anon_sym_c_DQUOTE] = ACTIONS(4821), - [anon_sym_r_SQUOTE] = ACTIONS(4821), - [anon_sym_r_DQUOTE] = ACTIONS(4821), - [sym_pseudo_compile_time_identifier] = ACTIONS(4821), - [anon_sym_shared] = ACTIONS(4821), - [anon_sym_map_LBRACK] = ACTIONS(4821), - [anon_sym_chan] = ACTIONS(4821), - [anon_sym_thread] = ACTIONS(4821), - [anon_sym_atomic] = ACTIONS(4821), - [anon_sym_assert] = ACTIONS(4821), - [anon_sym_defer] = ACTIONS(4821), - [anon_sym_goto] = ACTIONS(4821), - [anon_sym_break] = ACTIONS(4821), - [anon_sym_continue] = ACTIONS(4821), - [anon_sym_return] = ACTIONS(4821), - [anon_sym_DOLLARfor] = ACTIONS(4821), - [anon_sym_for] = ACTIONS(4821), - [anon_sym_POUND] = ACTIONS(4821), - [anon_sym_asm] = ACTIONS(4821), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_fn] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_struct] = ACTIONS(4595), + [anon_sym_mut] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_go] = ACTIONS(4595), + [anon_sym_spawn] = ACTIONS(4595), + [anon_sym_json_DOTdecode] = ACTIONS(4595), + [anon_sym_LBRACK2] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_LT_DASH] = ACTIONS(4595), + [sym_none] = ACTIONS(4595), + [sym_true] = ACTIONS(4595), + [sym_false] = ACTIONS(4595), + [sym_nil] = ACTIONS(4595), + [anon_sym_if] = ACTIONS(4595), + [anon_sym_DOLLARif] = ACTIONS(4595), + [anon_sym_match] = ACTIONS(4595), + [anon_sym_select] = ACTIONS(4595), + [anon_sym_lock] = ACTIONS(4595), + [anon_sym_rlock] = ACTIONS(4595), + [anon_sym_unsafe] = ACTIONS(4595), + [anon_sym_sql] = ACTIONS(4595), + [sym_int_literal] = ACTIONS(4595), + [sym_float_literal] = ACTIONS(4595), + [sym_rune_literal] = ACTIONS(4595), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_c_SQUOTE] = ACTIONS(4595), + [anon_sym_c_DQUOTE] = ACTIONS(4595), + [anon_sym_r_SQUOTE] = ACTIONS(4595), + [anon_sym_r_DQUOTE] = ACTIONS(4595), + [sym_pseudo_compile_time_identifier] = ACTIONS(4595), + [anon_sym_shared] = ACTIONS(4595), + [anon_sym_map_LBRACK] = ACTIONS(4595), + [anon_sym_chan] = ACTIONS(4595), + [anon_sym_thread] = ACTIONS(4595), + [anon_sym_atomic] = ACTIONS(4595), + [anon_sym_assert] = ACTIONS(4595), + [anon_sym_defer] = ACTIONS(4595), + [anon_sym_goto] = ACTIONS(4595), + [anon_sym_break] = ACTIONS(4595), + [anon_sym_continue] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4595), + [anon_sym_DOLLARfor] = ACTIONS(4595), + [anon_sym_for] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_asm] = ACTIONS(4595), }, [1946] = { [sym_line_comment] = STATE(1946), [sym_block_comment] = STATE(1946), - [sym_identifier] = ACTIONS(4645), - [anon_sym_LF] = ACTIONS(4645), - [anon_sym_CR] = ACTIONS(4645), - [anon_sym_CR_LF] = ACTIONS(4645), + [sym_identifier] = ACTIONS(4639), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_CR] = ACTIONS(4639), + [anon_sym_CR_LF] = ACTIONS(4639), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4645), - [anon_sym_fn] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_struct] = ACTIONS(4645), - [anon_sym_mut] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4645), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_go] = ACTIONS(4645), - [anon_sym_spawn] = ACTIONS(4645), - [anon_sym_json_DOTdecode] = ACTIONS(4645), - [anon_sym_LBRACK2] = ACTIONS(4645), - [anon_sym_TILDE] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_LT_DASH] = ACTIONS(4645), - [sym_none] = ACTIONS(4645), - [sym_true] = ACTIONS(4645), - [sym_false] = ACTIONS(4645), - [sym_nil] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_DOLLARif] = ACTIONS(4645), - [anon_sym_match] = ACTIONS(4645), - [anon_sym_select] = ACTIONS(4645), - [anon_sym_lock] = ACTIONS(4645), - [anon_sym_rlock] = ACTIONS(4645), - [anon_sym_unsafe] = ACTIONS(4645), - [anon_sym_sql] = ACTIONS(4645), - [sym_int_literal] = ACTIONS(4645), - [sym_float_literal] = ACTIONS(4645), - [sym_rune_literal] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4645), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_c_SQUOTE] = ACTIONS(4645), - [anon_sym_c_DQUOTE] = ACTIONS(4645), - [anon_sym_r_SQUOTE] = ACTIONS(4645), - [anon_sym_r_DQUOTE] = ACTIONS(4645), - [sym_pseudo_compile_time_identifier] = ACTIONS(4645), - [anon_sym_shared] = ACTIONS(4645), - [anon_sym_map_LBRACK] = ACTIONS(4645), - [anon_sym_chan] = ACTIONS(4645), - [anon_sym_thread] = ACTIONS(4645), - [anon_sym_atomic] = ACTIONS(4645), - [anon_sym_assert] = ACTIONS(4645), - [anon_sym_defer] = ACTIONS(4645), - [anon_sym_goto] = ACTIONS(4645), - [anon_sym_break] = ACTIONS(4645), - [anon_sym_continue] = ACTIONS(4645), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_DOLLARfor] = ACTIONS(4645), - [anon_sym_for] = ACTIONS(4645), - [anon_sym_POUND] = ACTIONS(4645), - [anon_sym_asm] = ACTIONS(4645), + [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_DOT] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_RBRACE] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_fn] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4639), + [anon_sym_STAR] = ACTIONS(4639), + [anon_sym_struct] = ACTIONS(4639), + [anon_sym_mut] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_go] = ACTIONS(4639), + [anon_sym_spawn] = ACTIONS(4639), + [anon_sym_json_DOTdecode] = ACTIONS(4639), + [anon_sym_LBRACK2] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_CARET] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4639), + [anon_sym_LT_DASH] = ACTIONS(4639), + [sym_none] = ACTIONS(4639), + [sym_true] = ACTIONS(4639), + [sym_false] = ACTIONS(4639), + [sym_nil] = ACTIONS(4639), + [anon_sym_if] = ACTIONS(4639), + [anon_sym_DOLLARif] = ACTIONS(4639), + [anon_sym_match] = ACTIONS(4639), + [anon_sym_select] = ACTIONS(4639), + [anon_sym_lock] = ACTIONS(4639), + [anon_sym_rlock] = ACTIONS(4639), + [anon_sym_unsafe] = ACTIONS(4639), + [anon_sym_sql] = ACTIONS(4639), + [sym_int_literal] = ACTIONS(4639), + [sym_float_literal] = ACTIONS(4639), + [sym_rune_literal] = ACTIONS(4639), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_c_SQUOTE] = ACTIONS(4639), + [anon_sym_c_DQUOTE] = ACTIONS(4639), + [anon_sym_r_SQUOTE] = ACTIONS(4639), + [anon_sym_r_DQUOTE] = ACTIONS(4639), + [sym_pseudo_compile_time_identifier] = ACTIONS(4639), + [anon_sym_shared] = ACTIONS(4639), + [anon_sym_map_LBRACK] = ACTIONS(4639), + [anon_sym_chan] = ACTIONS(4639), + [anon_sym_thread] = ACTIONS(4639), + [anon_sym_atomic] = ACTIONS(4639), + [anon_sym_assert] = ACTIONS(4639), + [anon_sym_defer] = ACTIONS(4639), + [anon_sym_goto] = ACTIONS(4639), + [anon_sym_break] = ACTIONS(4639), + [anon_sym_continue] = ACTIONS(4639), + [anon_sym_return] = ACTIONS(4639), + [anon_sym_DOLLARfor] = ACTIONS(4639), + [anon_sym_for] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_asm] = ACTIONS(4639), }, [1947] = { [sym_line_comment] = STATE(1947), [sym_block_comment] = STATE(1947), - [sym_identifier] = ACTIONS(4875), - [anon_sym_LF] = ACTIONS(4875), - [anon_sym_CR] = ACTIONS(4875), - [anon_sym_CR_LF] = ACTIONS(4875), + [sym_identifier] = ACTIONS(4655), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_CR] = ACTIONS(4655), + [anon_sym_CR_LF] = ACTIONS(4655), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_DOT] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [anon_sym_fn] = ACTIONS(4875), - [anon_sym_PLUS] = ACTIONS(4875), - [anon_sym_DASH] = ACTIONS(4875), - [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_struct] = ACTIONS(4875), - [anon_sym_mut] = ACTIONS(4875), - [anon_sym_QMARK] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4875), - [anon_sym_go] = ACTIONS(4875), - [anon_sym_spawn] = ACTIONS(4875), - [anon_sym_json_DOTdecode] = ACTIONS(4875), - [anon_sym_LBRACK2] = ACTIONS(4875), - [anon_sym_TILDE] = ACTIONS(4875), - [anon_sym_CARET] = ACTIONS(4875), - [anon_sym_AMP] = ACTIONS(4875), - [anon_sym_LT_DASH] = ACTIONS(4875), - [sym_none] = ACTIONS(4875), - [sym_true] = ACTIONS(4875), - [sym_false] = ACTIONS(4875), - [sym_nil] = ACTIONS(4875), - [anon_sym_if] = ACTIONS(4875), - [anon_sym_DOLLARif] = ACTIONS(4875), - [anon_sym_match] = ACTIONS(4875), - [anon_sym_select] = ACTIONS(4875), - [anon_sym_lock] = ACTIONS(4875), - [anon_sym_rlock] = ACTIONS(4875), - [anon_sym_unsafe] = ACTIONS(4875), - [anon_sym_sql] = ACTIONS(4875), - [sym_int_literal] = ACTIONS(4875), - [sym_float_literal] = ACTIONS(4875), - [sym_rune_literal] = ACTIONS(4875), - [anon_sym_SQUOTE] = ACTIONS(4875), - [anon_sym_DQUOTE] = ACTIONS(4875), - [anon_sym_c_SQUOTE] = ACTIONS(4875), - [anon_sym_c_DQUOTE] = ACTIONS(4875), - [anon_sym_r_SQUOTE] = ACTIONS(4875), - [anon_sym_r_DQUOTE] = ACTIONS(4875), - [sym_pseudo_compile_time_identifier] = ACTIONS(4875), - [anon_sym_shared] = ACTIONS(4875), - [anon_sym_map_LBRACK] = ACTIONS(4875), - [anon_sym_chan] = ACTIONS(4875), - [anon_sym_thread] = ACTIONS(4875), - [anon_sym_atomic] = ACTIONS(4875), - [anon_sym_assert] = ACTIONS(4875), - [anon_sym_defer] = ACTIONS(4875), - [anon_sym_goto] = ACTIONS(4875), - [anon_sym_break] = ACTIONS(4875), - [anon_sym_continue] = ACTIONS(4875), - [anon_sym_return] = ACTIONS(4875), - [anon_sym_DOLLARfor] = ACTIONS(4875), - [anon_sym_for] = ACTIONS(4875), - [anon_sym_POUND] = ACTIONS(4875), - [anon_sym_asm] = ACTIONS(4875), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4655), + [anon_sym_LBRACE] = ACTIONS(4655), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_LPAREN] = ACTIONS(4655), + [anon_sym_fn] = ACTIONS(4655), + [anon_sym_PLUS] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4655), + [anon_sym_STAR] = ACTIONS(4655), + [anon_sym_struct] = ACTIONS(4655), + [anon_sym_mut] = ACTIONS(4655), + [anon_sym_QMARK] = ACTIONS(4655), + [anon_sym_BANG] = ACTIONS(4655), + [anon_sym_go] = ACTIONS(4655), + [anon_sym_spawn] = ACTIONS(4655), + [anon_sym_json_DOTdecode] = ACTIONS(4655), + [anon_sym_LBRACK2] = ACTIONS(4655), + [anon_sym_TILDE] = ACTIONS(4655), + [anon_sym_CARET] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4655), + [anon_sym_LT_DASH] = ACTIONS(4655), + [sym_none] = ACTIONS(4655), + [sym_true] = ACTIONS(4655), + [sym_false] = ACTIONS(4655), + [sym_nil] = ACTIONS(4655), + [anon_sym_if] = ACTIONS(4655), + [anon_sym_DOLLARif] = ACTIONS(4655), + [anon_sym_match] = ACTIONS(4655), + [anon_sym_select] = ACTIONS(4655), + [anon_sym_lock] = ACTIONS(4655), + [anon_sym_rlock] = ACTIONS(4655), + [anon_sym_unsafe] = ACTIONS(4655), + [anon_sym_sql] = ACTIONS(4655), + [sym_int_literal] = ACTIONS(4655), + [sym_float_literal] = ACTIONS(4655), + [sym_rune_literal] = ACTIONS(4655), + [anon_sym_SQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_c_SQUOTE] = ACTIONS(4655), + [anon_sym_c_DQUOTE] = ACTIONS(4655), + [anon_sym_r_SQUOTE] = ACTIONS(4655), + [anon_sym_r_DQUOTE] = ACTIONS(4655), + [sym_pseudo_compile_time_identifier] = ACTIONS(4655), + [anon_sym_shared] = ACTIONS(4655), + [anon_sym_map_LBRACK] = ACTIONS(4655), + [anon_sym_chan] = ACTIONS(4655), + [anon_sym_thread] = ACTIONS(4655), + [anon_sym_atomic] = ACTIONS(4655), + [anon_sym_assert] = ACTIONS(4655), + [anon_sym_defer] = ACTIONS(4655), + [anon_sym_goto] = ACTIONS(4655), + [anon_sym_break] = ACTIONS(4655), + [anon_sym_continue] = ACTIONS(4655), + [anon_sym_return] = ACTIONS(4655), + [anon_sym_DOLLARfor] = ACTIONS(4655), + [anon_sym_for] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_asm] = ACTIONS(4655), }, [1948] = { [sym_line_comment] = STATE(1948), [sym_block_comment] = STATE(1948), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [sym_identifier] = ACTIONS(4591), + [anon_sym_LF] = ACTIONS(4591), + [anon_sym_CR] = ACTIONS(4591), + [anon_sym_CR_LF] = ACTIONS(4591), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_fn] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_struct] = ACTIONS(4591), + [anon_sym_mut] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_go] = ACTIONS(4591), + [anon_sym_spawn] = ACTIONS(4591), + [anon_sym_json_DOTdecode] = ACTIONS(4591), + [anon_sym_LBRACK2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4591), + [anon_sym_LT_DASH] = ACTIONS(4591), + [sym_none] = ACTIONS(4591), + [sym_true] = ACTIONS(4591), + [sym_false] = ACTIONS(4591), + [sym_nil] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(4591), + [anon_sym_DOLLARif] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(4591), + [anon_sym_select] = ACTIONS(4591), + [anon_sym_lock] = ACTIONS(4591), + [anon_sym_rlock] = ACTIONS(4591), + [anon_sym_unsafe] = ACTIONS(4591), + [anon_sym_sql] = ACTIONS(4591), + [sym_int_literal] = ACTIONS(4591), + [sym_float_literal] = ACTIONS(4591), + [sym_rune_literal] = ACTIONS(4591), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_c_SQUOTE] = ACTIONS(4591), + [anon_sym_c_DQUOTE] = ACTIONS(4591), + [anon_sym_r_SQUOTE] = ACTIONS(4591), + [anon_sym_r_DQUOTE] = ACTIONS(4591), + [sym_pseudo_compile_time_identifier] = ACTIONS(4591), + [anon_sym_shared] = ACTIONS(4591), + [anon_sym_map_LBRACK] = ACTIONS(4591), + [anon_sym_chan] = ACTIONS(4591), + [anon_sym_thread] = ACTIONS(4591), + [anon_sym_atomic] = ACTIONS(4591), + [anon_sym_assert] = ACTIONS(4591), + [anon_sym_defer] = ACTIONS(4591), + [anon_sym_goto] = ACTIONS(4591), + [anon_sym_break] = ACTIONS(4591), + [anon_sym_continue] = ACTIONS(4591), + [anon_sym_return] = ACTIONS(4591), + [anon_sym_DOLLARfor] = ACTIONS(4591), + [anon_sym_for] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_asm] = ACTIONS(4591), }, [1949] = { [sym_line_comment] = STATE(1949), [sym_block_comment] = STATE(1949), - [sym_identifier] = ACTIONS(4837), - [anon_sym_LF] = ACTIONS(4837), - [anon_sym_CR] = ACTIONS(4837), - [anon_sym_CR_LF] = ACTIONS(4837), + [sym_identifier] = ACTIONS(4803), + [anon_sym_LF] = ACTIONS(4803), + [anon_sym_CR] = ACTIONS(4803), + [anon_sym_CR_LF] = ACTIONS(4803), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_LBRACE] = ACTIONS(4837), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4837), - [anon_sym_fn] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_struct] = ACTIONS(4837), - [anon_sym_mut] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_go] = ACTIONS(4837), - [anon_sym_spawn] = ACTIONS(4837), - [anon_sym_json_DOTdecode] = ACTIONS(4837), - [anon_sym_LBRACK2] = ACTIONS(4837), - [anon_sym_TILDE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_DASH] = ACTIONS(4837), - [sym_none] = ACTIONS(4837), - [sym_true] = ACTIONS(4837), - [sym_false] = ACTIONS(4837), - [sym_nil] = ACTIONS(4837), - [anon_sym_if] = ACTIONS(4837), - [anon_sym_DOLLARif] = ACTIONS(4837), - [anon_sym_match] = ACTIONS(4837), - [anon_sym_select] = ACTIONS(4837), - [anon_sym_lock] = ACTIONS(4837), - [anon_sym_rlock] = ACTIONS(4837), - [anon_sym_unsafe] = ACTIONS(4837), - [anon_sym_sql] = ACTIONS(4837), - [sym_int_literal] = ACTIONS(4837), - [sym_float_literal] = ACTIONS(4837), - [sym_rune_literal] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [anon_sym_c_SQUOTE] = ACTIONS(4837), - [anon_sym_c_DQUOTE] = ACTIONS(4837), - [anon_sym_r_SQUOTE] = ACTIONS(4837), - [anon_sym_r_DQUOTE] = ACTIONS(4837), - [sym_pseudo_compile_time_identifier] = ACTIONS(4837), - [anon_sym_shared] = ACTIONS(4837), - [anon_sym_map_LBRACK] = ACTIONS(4837), - [anon_sym_chan] = ACTIONS(4837), - [anon_sym_thread] = ACTIONS(4837), - [anon_sym_atomic] = ACTIONS(4837), - [anon_sym_assert] = ACTIONS(4837), - [anon_sym_defer] = ACTIONS(4837), - [anon_sym_goto] = ACTIONS(4837), - [anon_sym_break] = ACTIONS(4837), - [anon_sym_continue] = ACTIONS(4837), - [anon_sym_return] = ACTIONS(4837), - [anon_sym_DOLLARfor] = ACTIONS(4837), - [anon_sym_for] = ACTIONS(4837), - [anon_sym_POUND] = ACTIONS(4837), - [anon_sym_asm] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4803), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_LPAREN] = ACTIONS(4803), + [anon_sym_fn] = ACTIONS(4803), + [anon_sym_PLUS] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4803), + [anon_sym_STAR] = ACTIONS(4803), + [anon_sym_struct] = ACTIONS(4803), + [anon_sym_mut] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4803), + [anon_sym_BANG] = ACTIONS(4803), + [anon_sym_go] = ACTIONS(4803), + [anon_sym_spawn] = ACTIONS(4803), + [anon_sym_json_DOTdecode] = ACTIONS(4803), + [anon_sym_LBRACK2] = ACTIONS(4803), + [anon_sym_TILDE] = ACTIONS(4803), + [anon_sym_CARET] = ACTIONS(4803), + [anon_sym_AMP] = ACTIONS(4803), + [anon_sym_LT_DASH] = ACTIONS(4803), + [sym_none] = ACTIONS(4803), + [sym_true] = ACTIONS(4803), + [sym_false] = ACTIONS(4803), + [sym_nil] = ACTIONS(4803), + [anon_sym_if] = ACTIONS(4803), + [anon_sym_DOLLARif] = ACTIONS(4803), + [anon_sym_match] = ACTIONS(4803), + [anon_sym_select] = ACTIONS(4803), + [anon_sym_lock] = ACTIONS(4803), + [anon_sym_rlock] = ACTIONS(4803), + [anon_sym_unsafe] = ACTIONS(4803), + [anon_sym_sql] = ACTIONS(4803), + [sym_int_literal] = ACTIONS(4803), + [sym_float_literal] = ACTIONS(4803), + [sym_rune_literal] = ACTIONS(4803), + [anon_sym_SQUOTE] = ACTIONS(4803), + [anon_sym_DQUOTE] = ACTIONS(4803), + [anon_sym_c_SQUOTE] = ACTIONS(4803), + [anon_sym_c_DQUOTE] = ACTIONS(4803), + [anon_sym_r_SQUOTE] = ACTIONS(4803), + [anon_sym_r_DQUOTE] = ACTIONS(4803), + [sym_pseudo_compile_time_identifier] = ACTIONS(4803), + [anon_sym_shared] = ACTIONS(4803), + [anon_sym_map_LBRACK] = ACTIONS(4803), + [anon_sym_chan] = ACTIONS(4803), + [anon_sym_thread] = ACTIONS(4803), + [anon_sym_atomic] = ACTIONS(4803), + [anon_sym_assert] = ACTIONS(4803), + [anon_sym_defer] = ACTIONS(4803), + [anon_sym_goto] = ACTIONS(4803), + [anon_sym_break] = ACTIONS(4803), + [anon_sym_continue] = ACTIONS(4803), + [anon_sym_return] = ACTIONS(4803), + [anon_sym_DOLLARfor] = ACTIONS(4803), + [anon_sym_for] = ACTIONS(4803), + [anon_sym_POUND] = ACTIONS(4803), + [anon_sym_asm] = ACTIONS(4803), }, [1950] = { [sym_line_comment] = STATE(1950), [sym_block_comment] = STATE(1950), - [sym_identifier] = ACTIONS(4990), - [anon_sym_LF] = ACTIONS(4992), - [anon_sym_CR] = ACTIONS(4992), - [anon_sym_CR_LF] = ACTIONS(4992), + [sym_identifier] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4627), + [anon_sym_CR] = ACTIONS(4627), + [anon_sym_CR_LF] = ACTIONS(4627), [anon_sym_SLASH_SLASH] = ACTIONS(311), [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_fn] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4990), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_struct] = ACTIONS(4990), - [anon_sym_mut] = ACTIONS(4990), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_go] = ACTIONS(4990), - [anon_sym_spawn] = ACTIONS(4990), - [anon_sym_json_DOTdecode] = ACTIONS(4990), - [anon_sym_LBRACK2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4990), - [anon_sym_LT_DASH] = ACTIONS(4990), - [sym_none] = ACTIONS(4990), - [sym_true] = ACTIONS(4990), - [sym_false] = ACTIONS(4990), - [sym_nil] = ACTIONS(4990), - [anon_sym_if] = ACTIONS(4990), - [anon_sym_DOLLARif] = ACTIONS(4990), - [anon_sym_match] = ACTIONS(4990), - [anon_sym_select] = ACTIONS(4990), - [anon_sym_lock] = ACTIONS(4990), - [anon_sym_rlock] = ACTIONS(4990), - [anon_sym_unsafe] = ACTIONS(4990), - [anon_sym_sql] = ACTIONS(4990), - [sym_int_literal] = ACTIONS(4990), - [sym_float_literal] = ACTIONS(4990), - [sym_rune_literal] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym_DQUOTE] = ACTIONS(4990), - [anon_sym_c_SQUOTE] = ACTIONS(4990), - [anon_sym_c_DQUOTE] = ACTIONS(4990), - [anon_sym_r_SQUOTE] = ACTIONS(4990), - [anon_sym_r_DQUOTE] = ACTIONS(4990), - [sym_pseudo_compile_time_identifier] = ACTIONS(4990), - [anon_sym_shared] = ACTIONS(4990), - [anon_sym_map_LBRACK] = ACTIONS(4990), - [anon_sym_chan] = ACTIONS(4990), - [anon_sym_thread] = ACTIONS(4990), - [anon_sym_atomic] = ACTIONS(4990), - [anon_sym_assert] = ACTIONS(4990), - [anon_sym_defer] = ACTIONS(4990), - [anon_sym_goto] = ACTIONS(4990), - [anon_sym_break] = ACTIONS(4990), - [anon_sym_continue] = ACTIONS(4990), - [anon_sym_return] = ACTIONS(4990), - [anon_sym_DOLLARfor] = ACTIONS(4990), - [anon_sym_for] = ACTIONS(4990), - [anon_sym_POUND] = ACTIONS(4990), - [anon_sym_asm] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_fn] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [anon_sym_struct] = ACTIONS(4627), + [anon_sym_mut] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_go] = ACTIONS(4627), + [anon_sym_spawn] = ACTIONS(4627), + [anon_sym_json_DOTdecode] = ACTIONS(4627), + [anon_sym_LBRACK2] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4627), + [anon_sym_LT_DASH] = ACTIONS(4627), + [sym_none] = ACTIONS(4627), + [sym_true] = ACTIONS(4627), + [sym_false] = ACTIONS(4627), + [sym_nil] = ACTIONS(4627), + [anon_sym_if] = ACTIONS(4627), + [anon_sym_DOLLARif] = ACTIONS(4627), + [anon_sym_match] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), + [anon_sym_lock] = ACTIONS(4627), + [anon_sym_rlock] = ACTIONS(4627), + [anon_sym_unsafe] = ACTIONS(4627), + [anon_sym_sql] = ACTIONS(4627), + [sym_int_literal] = ACTIONS(4627), + [sym_float_literal] = ACTIONS(4627), + [sym_rune_literal] = ACTIONS(4627), + [anon_sym_SQUOTE] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_c_SQUOTE] = ACTIONS(4627), + [anon_sym_c_DQUOTE] = ACTIONS(4627), + [anon_sym_r_SQUOTE] = ACTIONS(4627), + [anon_sym_r_DQUOTE] = ACTIONS(4627), + [sym_pseudo_compile_time_identifier] = ACTIONS(4627), + [anon_sym_shared] = ACTIONS(4627), + [anon_sym_map_LBRACK] = ACTIONS(4627), + [anon_sym_chan] = ACTIONS(4627), + [anon_sym_thread] = ACTIONS(4627), + [anon_sym_atomic] = ACTIONS(4627), + [anon_sym_assert] = ACTIONS(4627), + [anon_sym_defer] = ACTIONS(4627), + [anon_sym_goto] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_continue] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_DOLLARfor] = ACTIONS(4627), + [anon_sym_for] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_asm] = ACTIONS(4627), }, [1951] = { - [sym_line_comment] = STATE(1951), - [sym_block_comment] = STATE(1951), - [sym_identifier] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [anon_sym_CR] = ACTIONS(1997), - [anon_sym_CR_LF] = ACTIONS(1997), - [anon_sym_SLASH_SLASH] = ACTIONS(311), - [anon_sym_SLASH_STAR] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_fn] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_go] = ACTIONS(1997), - [anon_sym_spawn] = ACTIONS(1997), - [anon_sym_json_DOTdecode] = ACTIONS(1997), - [anon_sym_LBRACK2] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_LT_DASH] = ACTIONS(1997), - [sym_none] = ACTIONS(1997), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [sym_nil] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_DOLLARif] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(1997), - [anon_sym_lock] = ACTIONS(1997), - [anon_sym_rlock] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_sql] = ACTIONS(1997), - [sym_int_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_rune_literal] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [anon_sym_c_SQUOTE] = ACTIONS(1997), - [anon_sym_c_DQUOTE] = ACTIONS(1997), - [anon_sym_r_SQUOTE] = ACTIONS(1997), - [anon_sym_r_DQUOTE] = ACTIONS(1997), - [sym_pseudo_compile_time_identifier] = ACTIONS(1997), - [anon_sym_shared] = ACTIONS(1997), - [anon_sym_map_LBRACK] = ACTIONS(1997), - [anon_sym_chan] = ACTIONS(1997), - [anon_sym_thread] = ACTIONS(1997), - [anon_sym_atomic] = ACTIONS(1997), - [anon_sym_assert] = ACTIONS(1997), - [anon_sym_defer] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_DOLLARfor] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), - }, - [1952] = { - [sym_line_comment] = STATE(1952), - [sym_block_comment] = STATE(1952), - [sym_identifier] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_COLON] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_LT_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_AMP_EQ] = ACTIONS(3049), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_PIPE_EQ] = ACTIONS(3049), - [anon_sym_CARET_EQ] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - }, - [1953] = { - [sym_line_comment] = STATE(1953), - [sym_block_comment] = STATE(1953), - [sym_identifier] = ACTIONS(2815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_EQ] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_COLON] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_DASH] = ACTIONS(2813), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_STAR_EQ] = ACTIONS(2813), - [anon_sym_SLASH_EQ] = ACTIONS(2813), - [anon_sym_PERCENT_EQ] = ACTIONS(2813), - [anon_sym_LT_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_AMP_EQ] = ACTIONS(2813), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2813), - [anon_sym_PLUS_EQ] = ACTIONS(2813), - [anon_sym_DASH_EQ] = ACTIONS(2813), - [anon_sym_PIPE_EQ] = ACTIONS(2813), - [anon_sym_CARET_EQ] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), - }, - [1954] = { - [sym_line_comment] = STATE(1954), - [sym_block_comment] = STATE(1954), - [sym_identifier] = ACTIONS(3080), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_EQ] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_COLON] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3078), - [anon_sym_POUND_LBRACK] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3078), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3078), - [anon_sym_STAR_EQ] = ACTIONS(3078), - [anon_sym_SLASH_EQ] = ACTIONS(3078), - [anon_sym_PERCENT_EQ] = ACTIONS(3078), - [anon_sym_LT_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_AMP_EQ] = ACTIONS(3078), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3078), - [anon_sym_PLUS_EQ] = ACTIONS(3078), - [anon_sym_DASH_EQ] = ACTIONS(3078), - [anon_sym_PIPE_EQ] = ACTIONS(3078), - [anon_sym_CARET_EQ] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3078), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), + [sym_line_comment] = STATE(1951), + [sym_block_comment] = STATE(1951), + [sym_identifier] = ACTIONS(4651), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_CR] = ACTIONS(4651), + [anon_sym_CR_LF] = ACTIONS(4651), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_SLASH_STAR] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_DOT] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(4651), + [anon_sym_fn] = ACTIONS(4651), + [anon_sym_PLUS] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4651), + [anon_sym_STAR] = ACTIONS(4651), + [anon_sym_struct] = ACTIONS(4651), + [anon_sym_mut] = ACTIONS(4651), + [anon_sym_QMARK] = ACTIONS(4651), + [anon_sym_BANG] = ACTIONS(4651), + [anon_sym_go] = ACTIONS(4651), + [anon_sym_spawn] = ACTIONS(4651), + [anon_sym_json_DOTdecode] = ACTIONS(4651), + [anon_sym_LBRACK2] = ACTIONS(4651), + [anon_sym_TILDE] = ACTIONS(4651), + [anon_sym_CARET] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4651), + [anon_sym_LT_DASH] = ACTIONS(4651), + [sym_none] = ACTIONS(4651), + [sym_true] = ACTIONS(4651), + [sym_false] = ACTIONS(4651), + [sym_nil] = ACTIONS(4651), + [anon_sym_if] = ACTIONS(4651), + [anon_sym_DOLLARif] = ACTIONS(4651), + [anon_sym_match] = ACTIONS(4651), + [anon_sym_select] = ACTIONS(4651), + [anon_sym_lock] = ACTIONS(4651), + [anon_sym_rlock] = ACTIONS(4651), + [anon_sym_unsafe] = ACTIONS(4651), + [anon_sym_sql] = ACTIONS(4651), + [sym_int_literal] = ACTIONS(4651), + [sym_float_literal] = ACTIONS(4651), + [sym_rune_literal] = ACTIONS(4651), + [anon_sym_SQUOTE] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_c_SQUOTE] = ACTIONS(4651), + [anon_sym_c_DQUOTE] = ACTIONS(4651), + [anon_sym_r_SQUOTE] = ACTIONS(4651), + [anon_sym_r_DQUOTE] = ACTIONS(4651), + [sym_pseudo_compile_time_identifier] = ACTIONS(4651), + [anon_sym_shared] = ACTIONS(4651), + [anon_sym_map_LBRACK] = ACTIONS(4651), + [anon_sym_chan] = ACTIONS(4651), + [anon_sym_thread] = ACTIONS(4651), + [anon_sym_atomic] = ACTIONS(4651), + [anon_sym_assert] = ACTIONS(4651), + [anon_sym_defer] = ACTIONS(4651), + [anon_sym_goto] = ACTIONS(4651), + [anon_sym_break] = ACTIONS(4651), + [anon_sym_continue] = ACTIONS(4651), + [anon_sym_return] = ACTIONS(4651), + [anon_sym_DOLLARfor] = ACTIONS(4651), + [anon_sym_for] = ACTIONS(4651), + [anon_sym_POUND] = ACTIONS(4651), + [anon_sym_asm] = ACTIONS(4651), }, - [1955] = { - [sym_line_comment] = STATE(1955), - [sym_block_comment] = STATE(1955), - [sym_identifier] = ACTIONS(2815), + [1952] = { + [sym_line_comment] = STATE(1952), + [sym_block_comment] = STATE(1952), + [sym_identifier] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_EQ] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_GT] = ACTIONS(2815), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2815), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2815), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_STAR_EQ] = ACTIONS(2813), - [anon_sym_SLASH_EQ] = ACTIONS(2813), - [anon_sym_PERCENT_EQ] = ACTIONS(2813), - [anon_sym_LT_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_AMP_EQ] = ACTIONS(2813), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2813), - [anon_sym_PLUS_EQ] = ACTIONS(2813), - [anon_sym_DASH_EQ] = ACTIONS(2813), - [anon_sym_PIPE_EQ] = ACTIONS(2813), - [anon_sym_CARET_EQ] = ACTIONS(2813), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2815), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2815), - [anon_sym_thread] = ACTIONS(2815), - [anon_sym_atomic] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_DOT] = ACTIONS(2667), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2667), + [anon_sym_POUND_LBRACK] = ACTIONS(2667), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = 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_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2667), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), }, - [1956] = { - [sym_line_comment] = STATE(1956), - [sym_block_comment] = STATE(1956), + [1953] = { + [sym_line_comment] = STATE(1953), + [sym_block_comment] = STATE(1953), + [sym_identifier] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_STAR_EQ] = ACTIONS(3047), + [anon_sym_SLASH_EQ] = ACTIONS(3047), + [anon_sym_PERCENT_EQ] = ACTIONS(3047), + [anon_sym_LT_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_AMP_EQ] = ACTIONS(3047), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3047), + [anon_sym_PLUS_EQ] = ACTIONS(3047), + [anon_sym_DASH_EQ] = ACTIONS(3047), + [anon_sym_PIPE_EQ] = ACTIONS(3047), + [anon_sym_CARET_EQ] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + }, + [1954] = { + [sym_line_comment] = STATE(1954), + [sym_block_comment] = STATE(1954), [sym_identifier] = ACTIONS(3350), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -224144,139 +224248,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3350), [anon_sym_atomic] = ACTIONS(3350), }, + [1955] = { + [sym_line_comment] = STATE(1955), + [sym_block_comment] = STATE(1955), + [sym_identifier] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_STAR_EQ] = ACTIONS(2983), + [anon_sym_SLASH_EQ] = ACTIONS(2983), + [anon_sym_PERCENT_EQ] = ACTIONS(2983), + [anon_sym_LT_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_AMP_EQ] = ACTIONS(2983), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2983), + [anon_sym_PLUS_EQ] = ACTIONS(2983), + [anon_sym_DASH_EQ] = ACTIONS(2983), + [anon_sym_PIPE_EQ] = ACTIONS(2983), + [anon_sym_CARET_EQ] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + }, + [1956] = { + [sym_line_comment] = STATE(1956), + [sym_block_comment] = STATE(1956), + [sym_identifier] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_STAR_EQ] = ACTIONS(3047), + [anon_sym_SLASH_EQ] = ACTIONS(3047), + [anon_sym_PERCENT_EQ] = ACTIONS(3047), + [anon_sym_LT_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_AMP_EQ] = ACTIONS(3047), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3047), + [anon_sym_PLUS_EQ] = ACTIONS(3047), + [anon_sym_DASH_EQ] = ACTIONS(3047), + [anon_sym_PIPE_EQ] = ACTIONS(3047), + [anon_sym_CARET_EQ] = ACTIONS(3047), + [anon_sym_COLON_EQ] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + }, [1957] = { [sym_line_comment] = STATE(1957), [sym_block_comment] = STATE(1957), - [sym_identifier] = ACTIONS(3080), + [sym_identifier] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_EQ] = ACTIONS(3080), - [anon_sym_fn] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3080), - [anon_sym_QMARK_DOT] = ACTIONS(3078), - [anon_sym_POUND_LBRACK] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3080), - [anon_sym_BANGis] = ACTIONS(3078), - [anon_sym_in] = ACTIONS(3080), - [anon_sym_BANGin] = ACTIONS(3078), - [anon_sym_STAR_EQ] = ACTIONS(3078), - [anon_sym_SLASH_EQ] = ACTIONS(3078), - [anon_sym_PERCENT_EQ] = ACTIONS(3078), - [anon_sym_LT_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_AMP_EQ] = ACTIONS(3078), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3078), - [anon_sym_PLUS_EQ] = ACTIONS(3078), - [anon_sym_DASH_EQ] = ACTIONS(3078), - [anon_sym_PIPE_EQ] = ACTIONS(3078), - [anon_sym_CARET_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3080), - [anon_sym_map_LBRACK] = ACTIONS(3078), - [anon_sym_chan] = ACTIONS(3080), - [anon_sym_thread] = ACTIONS(3080), - [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_STAR_EQ] = ACTIONS(2983), + [anon_sym_SLASH_EQ] = ACTIONS(2983), + [anon_sym_PERCENT_EQ] = ACTIONS(2983), + [anon_sym_LT_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_AMP_EQ] = ACTIONS(2983), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2983), + [anon_sym_PLUS_EQ] = ACTIONS(2983), + [anon_sym_DASH_EQ] = ACTIONS(2983), + [anon_sym_PIPE_EQ] = ACTIONS(2983), + [anon_sym_CARET_EQ] = ACTIONS(2983), + [anon_sym_COLON_EQ] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), }, [1958] = { [sym_line_comment] = STATE(1958), [sym_block_comment] = STATE(1958), - [sym_identifier] = ACTIONS(2997), + [sym_identifier] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_EQ] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_PIPE_PIPE] = ACTIONS(2995), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2995), - [anon_sym_POUND_LBRACK] = ACTIONS(2995), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2995), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2995), - [anon_sym_STAR_EQ] = ACTIONS(2995), - [anon_sym_SLASH_EQ] = ACTIONS(2995), - [anon_sym_PERCENT_EQ] = ACTIONS(2995), - [anon_sym_LT_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_GT_EQ] = ACTIONS(2995), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2995), - [anon_sym_AMP_EQ] = ACTIONS(2995), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2995), - [anon_sym_PLUS_EQ] = ACTIONS(2995), - [anon_sym_DASH_EQ] = ACTIONS(2995), - [anon_sym_PIPE_EQ] = ACTIONS(2995), - [anon_sym_CARET_EQ] = ACTIONS(2995), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2995), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_EQ] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_STAR_EQ] = ACTIONS(3053), + [anon_sym_SLASH_EQ] = ACTIONS(3053), + [anon_sym_PERCENT_EQ] = ACTIONS(3053), + [anon_sym_LT_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_AMP_EQ] = ACTIONS(3053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), + [anon_sym_PLUS_EQ] = ACTIONS(3053), + [anon_sym_DASH_EQ] = ACTIONS(3053), + [anon_sym_PIPE_EQ] = ACTIONS(3053), + [anon_sym_CARET_EQ] = ACTIONS(3053), + [anon_sym_COLON_EQ] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), }, [1959] = { [sym_line_comment] = STATE(1959), @@ -224348,244 +224586,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1960] = { [sym_line_comment] = STATE(1960), [sym_block_comment] = STATE(1960), - [sym_identifier] = ACTIONS(3051), + [sym_identifier] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_LT_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_AMP_EQ] = ACTIONS(3049), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_PIPE_EQ] = ACTIONS(3049), - [anon_sym_CARET_EQ] = ACTIONS(3049), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(2667), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2667), + [anon_sym_POUND_LBRACK] = ACTIONS(2667), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = 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_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2667), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), }, [1961] = { [sym_line_comment] = STATE(1961), [sym_block_comment] = STATE(1961), - [sym_identifier] = ACTIONS(2997), + [sym_identifier] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_EQ] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_PIPE_PIPE] = ACTIONS(2995), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2995), - [anon_sym_POUND_LBRACK] = ACTIONS(2995), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2995), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2995), - [anon_sym_STAR_EQ] = ACTIONS(2995), - [anon_sym_SLASH_EQ] = ACTIONS(2995), - [anon_sym_PERCENT_EQ] = ACTIONS(2995), - [anon_sym_LT_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_GT_EQ] = ACTIONS(2995), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2995), - [anon_sym_AMP_EQ] = ACTIONS(2995), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2995), - [anon_sym_PLUS_EQ] = ACTIONS(2995), - [anon_sym_DASH_EQ] = ACTIONS(2995), - [anon_sym_PIPE_EQ] = ACTIONS(2995), - [anon_sym_CARET_EQ] = ACTIONS(2995), - [anon_sym_COLON_EQ] = ACTIONS(2995), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2995), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_EQ] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_LT_DASH] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3055), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3055), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3055), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3055), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_STAR_EQ] = ACTIONS(3053), + [anon_sym_SLASH_EQ] = ACTIONS(3053), + [anon_sym_PERCENT_EQ] = ACTIONS(3053), + [anon_sym_LT_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_AMP_EQ] = ACTIONS(3053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), + [anon_sym_PLUS_EQ] = ACTIONS(3053), + [anon_sym_DASH_EQ] = ACTIONS(3053), + [anon_sym_PIPE_EQ] = ACTIONS(3053), + [anon_sym_CARET_EQ] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3055), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3055), + [anon_sym_thread] = ACTIONS(3055), + [anon_sym_atomic] = ACTIONS(3055), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 32, + [0] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1995), 1, - anon_sym_SEMI, - ACTIONS(2007), 1, - anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5002), 1, - anon_sym_LPAREN, - ACTIONS(5012), 1, - anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_QMARK, - ACTIONS(5020), 1, - anon_sym_BANG, - ACTIONS(5022), 1, - anon_sym_LBRACK2, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5030), 1, - anon_sym_POUND_LBRACK, - STATE(1799), 1, - sym_block, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, - sym_or_block, - STATE(3390), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4207), 1, - sym_type_parameters, - ACTIONS(4994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5032), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(5004), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5006), 8, - anon_sym_STAR, - anon_sym_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(3862), 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, - [127] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1963), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(578), 24, + ACTIONS(602), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224610,7 +224753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_DQUOTE, anon_sym_map_LBRACK, anon_sym_POUND, - ACTIONS(5036), 34, + ACTIONS(4992), 34, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224645,17 +224788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARfor, anon_sym_for, anon_sym_asm, - [200] = 32, + [73] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1995), 1, + ACTIONS(2035), 1, anon_sym_SEMI, - ACTIONS(2007), 1, + ACTIONS(2041), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, + ACTIONS(4998), 1, + anon_sym_LBRACE, ACTIONS(5000), 1, anon_sym_COMMA, ACTIONS(5002), 1, @@ -224680,17 +224825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5038), 1, - anon_sym_LBRACE, - STATE(1937), 1, + STATE(1792), 1, sym_block, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(3390), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -224704,7 +224847,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1964), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -224740,94 +224883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [327] = 16, + [200] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, - anon_sym_LPAREN, - ACTIONS(5012), 1, - anon_sym_LBRACK, - ACTIONS(5018), 1, - anon_sym_QMARK, - ACTIONS(5020), 1, - anon_sym_BANG, - ACTIONS(5022), 1, - anon_sym_LBRACK2, - ACTIONS(5030), 1, - anon_sym_POUND_LBRACK, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, - sym_or_block, - STATE(4207), 1, - sym_type_parameters, - ACTIONS(4994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1965), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 7, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5006), 8, - anon_sym_STAR, - anon_sym_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(2061), 30, + ACTIONS(2035), 1, 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, - [420] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1995), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(2041), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, + ACTIONS(5000), 1, + anon_sym_COMMA, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, @@ -224850,15 +224918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5040), 1, - anon_sym_COMMA, - STATE(2118), 1, + ACTIONS(5036), 1, + anon_sym_LBRACE, + STATE(1948), 1, + sym_block, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(3390), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -224872,7 +224942,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1966), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -224908,45 +224978,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [541] = 17, + [327] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2071), 1, - sym_argument_list, STATE(2072), 1, + sym_argument_list, + STATE(2073), 1, sym_or_block, STATE(4173), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1967), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 3, + ACTIONS(2053), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5046), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5048), 8, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -224955,7 +225024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 30, + ACTIONS(2051), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -224986,213 +225055,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [636] = 15, + [420] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, + ACTIONS(2075), 1, + anon_sym_EQ, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, - sym_or_block, - STATE(4207), 1, - sym_type_parameters, - ACTIONS(4994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1968), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2049), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2047), 30, - anon_sym_SEMI, + ACTIONS(5054), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5062), 1, anon_sym_PLUS_PLUS, + ACTIONS(5064), 1, anon_sym_DASH_DASH, + ACTIONS(5066), 1, anon_sym_AMP_AMP, + ACTIONS(5068), 1, anon_sym_PIPE_PIPE, + ACTIONS(5070), 1, 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, - [727] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_BANG, - ACTIONS(5056), 1, - anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - STATE(2071), 1, - sym_argument_list, STATE(2072), 1, + sym_argument_list, + STATE(2073), 1, sym_or_block, STATE(4173), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5060), 2, + ACTIONS(5058), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5064), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1969), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5046), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5062), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5048), 8, - anon_sym_STAR, - anon_sym_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(2061), 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, + ACTIONS(5072), 2, 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, - [828] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_BANG, - ACTIONS(5056), 1, - anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5066), 1, - anon_sym_AMP_AMP, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, - sym_or_block, - STATE(4173), 1, - sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5064), 2, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, - STATE(1970), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(5046), 4, + ACTIONS(5056), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5062), 4, + ACTIONS(5060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5048), 8, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -225201,18 +225126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 23, - anon_sym_as, + ACTIONS(2073), 16, 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, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -225225,36 +225143,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [931] = 15, + [535] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5002), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5018), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5020), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2071), 1, + STATE(2134), 1, sym_argument_list, - STATE(2072), 1, + STATE(2135), 1, sym_or_block, - STATE(4173), 1, + STATE(4203), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1971), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 15, + ACTIONS(2061), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -225270,7 +225188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2047), 30, + ACTIONS(2059), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -225278,10 +225197,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, @@ -225301,45 +225218,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1022] = 17, + anon_sym_COLON_EQ, + [626] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5002), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5018), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5020), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2071), 1, + STATE(2134), 1, sym_argument_list, - STATE(2072), 1, + STATE(2135), 1, sym_or_block, - STATE(4173), 1, + STATE(4203), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1972), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5046), 4, + ACTIONS(5004), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5048), 8, + ACTIONS(5006), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -225348,7 +225266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 30, + ACTIONS(2051), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -225356,10 +225275,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, @@ -225379,296 +225296,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1117] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2069), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_BANG, - ACTIONS(5056), 1, - anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5066), 1, - anon_sym_AMP_AMP, - ACTIONS(5068), 1, - anon_sym_as, - ACTIONS(5070), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5072), 1, - anon_sym_DASH_DASH, - ACTIONS(5074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5076), 1, - anon_sym_or, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, - sym_or_block, - STATE(4173), 1, - sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5064), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5078), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1973), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5046), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5062), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5048), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2067), 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, - [1232] = 27, + anon_sym_COLON_EQ, + [721] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2059), 1, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_BANG, - ACTIONS(5056), 1, - anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5066), 1, - anon_sym_AMP_AMP, - ACTIONS(5068), 1, - anon_sym_as, - ACTIONS(5070), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5072), 1, - anon_sym_DASH_DASH, - ACTIONS(5074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5076), 1, - anon_sym_or, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, - sym_or_block, - STATE(4173), 1, - sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5064), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5078), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1974), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5046), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5062), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5048), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2057), 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, - [1347] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5002), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5018), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5020), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2071), 1, + STATE(2134), 1, sym_argument_list, - STATE(2072), 1, + STATE(2135), 1, sym_or_block, - STATE(4173), 1, + STATE(4203), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1975), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2065), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2063), 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, + ACTIONS(5034), 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, - [1438] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, - anon_sym_QMARK, - ACTIONS(5054), 1, - anon_sym_BANG, - ACTIONS(5056), 1, - anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, - sym_or_block, - STATE(4173), 1, - sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1976), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, - anon_sym_EQ, + ACTIONS(5004), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5048), 8, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5006), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -225677,25 +225353,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 30, + ACTIONS(2051), 24, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, @@ -225708,81 +225377,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1531] = 27, + anon_sym_COLON_EQ, + [822] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2069), 1, - anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5002), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2072), 1, sym_argument_list, - STATE(2120), 1, + STATE(2073), 1, sym_or_block, - STATE(4207), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5032), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1977), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(5004), 4, + ACTIONS(2057), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5006), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2067), 16, - anon_sym_SEMI, + ACTIONS(2055), 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, @@ -225795,37 +225454,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, - [1646] = 15, + [913] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2071), 1, - sym_argument_list, STATE(2072), 1, + sym_argument_list, + STATE(2073), 1, sym_or_block, STATE(4173), 1, sym_type_parameters, - ACTIONS(5042), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1978), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 15, + ACTIONS(2053), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -225841,7 +225499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 30, + ACTIONS(2051), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -225872,12 +225530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [1737] = 27, + [1004] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2059), 1, + ACTIONS(2075), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -225903,11 +225561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -225921,7 +225579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1979), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -225943,7 +225601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 16, + ACTIONS(2073), 16, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -225960,14 +225618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1852] = 29, + [1119] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2041), 1, - anon_sym_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2065), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -225993,13 +225649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(3940), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -226013,7 +225667,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1980), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -226035,7 +225689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3908), 14, + ACTIONS(2063), 16, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226050,7 +225706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1971] = 15, + [1234] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -226067,35 +225723,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1981), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 15, + ACTIONS(2049), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5004), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5006), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 30, + ACTIONS(2047), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -226126,45 +225784,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2062] = 17, + [1329] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2072), 1, sym_argument_list, - STATE(2120), 1, + STATE(2073), 1, sym_or_block, - STATE(4207), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1982), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5004), 4, + ACTIONS(5056), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5006), 8, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226173,8 +225831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 30, - anon_sym_SEMI, + ACTIONS(2051), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -226182,8 +225839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226203,15 +225862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2157] = 29, + [1424] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2035), 1, + anon_sym_LBRACE, ACTIONS(2041), 1, - anon_sym_SEMI, - ACTIONS(2045), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -226229,48 +225887,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, ACTIONS(5028), 1, anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, - anon_sym_AMP_AMP, - ACTIONS(5090), 1, - anon_sym_PIPE_PIPE, - STATE(2118), 1, + ACTIONS(5076), 1, + anon_sym_COMMA, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4012), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(5032), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1983), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5004), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5006), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226279,8 +225939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3908), 14, - anon_sym_COMMA, + ACTIONS(3862), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -226294,12 +225953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2276] = 20, + [1545] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, + ACTIONS(2053), 1, anon_sym_EQ, ACTIONS(5002), 1, anon_sym_LPAREN, @@ -226311,13 +225970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -226328,7 +225989,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1984), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -226350,14 +226011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 24, + ACTIONS(2051), 23, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -226375,17 +226035,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2377] = 21, + [1648] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, + ACTIONS(1993), 1, + anon_sym_LBRACE, + ACTIONS(2001), 1, anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, ACTIONS(5018), 1, anon_sym_QMARK, ACTIONS(5020), 1, @@ -226394,13 +226062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5024), 1, anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(3941), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -226408,10 +226082,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5032), 2, + anon_sym_is, + anon_sym_BANGis, ACTIONS(5034), 2, anon_sym_in, anon_sym_BANGin, - STATE(1985), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, ACTIONS(5004), 4, @@ -226433,17 +226110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3908), 14, 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, @@ -226457,45 +226125,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2480] = 17, + [1767] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1993), 1, + anon_sym_SEMI, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, ACTIONS(5018), 1, anon_sym_QMARK, ACTIONS(5020), 1, anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, + ACTIONS(5028), 1, + anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + ACTIONS(5086), 1, + anon_sym_AMP_AMP, + ACTIONS(5088), 1, + anon_sym_PIPE_PIPE, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4013), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1986), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2079), 3, - anon_sym_EQ, + ACTIONS(5032), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5004), 4, + ACTIONS(5090), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1979), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5006), 8, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226504,24 +226200,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3908), 14, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_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, + [1886] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2065), 1, + anon_sym_EQ, + ACTIONS(5040), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_QMARK, + ACTIONS(5048), 1, + anon_sym_BANG, + ACTIONS(5050), 1, + anon_sym_LBRACK2, + ACTIONS(5052), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5062), 1, anon_sym_PLUS_PLUS, + ACTIONS(5064), 1, anon_sym_DASH_DASH, + ACTIONS(5066), 1, anon_sym_AMP_AMP, + ACTIONS(5068), 1, anon_sym_PIPE_PIPE, + ACTIONS(5070), 1, anon_sym_or, + STATE(2072), 1, + sym_argument_list, + STATE(2073), 1, + sym_or_block, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(5038), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5058), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5072), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5056), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5060), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5042), 8, + anon_sym_STAR, + anon_sym_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(2063), 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, @@ -226534,8 +226303,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, - [2575] = 15, + [2001] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -226552,35 +226320,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1987), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(2065), 15, + ACTIONS(2053), 7, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, + ACTIONS(5006), 8, + anon_sym_STAR, + anon_sym_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(2063), 30, + ACTIONS(2051), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -226611,19 +226380,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2666] = 7, + [2094] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5094), 1, - anon_sym_else, - STATE(2209), 1, - sym_else_branch, - STATE(1988), 2, + ACTIONS(5040), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_QMARK, + ACTIONS(5048), 1, + anon_sym_BANG, + ACTIONS(5050), 1, + anon_sym_LBRACK2, + ACTIONS(5052), 1, + anon_sym_POUND_LBRACK, + STATE(2072), 1, + sym_argument_list, + STATE(2073), 1, + sym_or_block, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(5038), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 18, + ACTIONS(2061), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -226632,27 +226418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2081), 35, - anon_sym_DOT, + ACTIONS(2059), 30, 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, @@ -226660,8 +226440,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, @@ -226678,15 +226456,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [2740] = 5, + [2185] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + ACTIONS(5002), 1, + anon_sym_LPAREN, + ACTIONS(5012), 1, + anon_sym_LBRACK, + ACTIONS(5018), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_BANG, + ACTIONS(5022), 1, + anon_sym_LBRACK2, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(2053), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -226695,37 +226494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 37, + ACTIONS(2051), 30, 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, @@ -226743,56 +226532,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2810] = 21, + [2276] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_EQ, - ACTIONS(5002), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, - anon_sym_AMP_AMP, - STATE(2118), 1, + STATE(2072), 1, sym_argument_list, - STATE(2120), 1, + STATE(2073), 1, sym_or_block, - STATE(4207), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5092), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1990), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(2049), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5056), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226801,16 +226579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 22, - anon_sym_SEMI, + ACTIONS(2047), 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, @@ -226823,168 +226610,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, - [2912] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_LBRACK, - STATE(1991), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3350), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [2982] = 27, + [2371] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2069), 1, - anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, ACTIONS(5018), 1, anon_sym_QMARK, ACTIONS(5020), 1, anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5028), 1, - anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, - anon_sym_AMP_AMP, - ACTIONS(5090), 1, - anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5032), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5092), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1992), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5080), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5082), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2067), 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, - [3096] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 18, + ACTIONS(2057), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -226993,37 +226648,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2095), 37, + ACTIONS(2055), 30, 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, @@ -227041,141 +226686,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3166] = 20, + [2462] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(5002), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + ACTIONS(5066), 1, + anon_sym_AMP_AMP, + STATE(2072), 1, sym_argument_list, - STATE(2120), 1, + STATE(2073), 1, sym_or_block, - STATE(4207), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 2, + ACTIONS(5058), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, - STATE(1994), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5056), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, - anon_sym_STAR, - anon_sym_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(2061), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3266] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5094), 1, - anon_sym_else, - STATE(2210), 1, - sym_else_branch, - STATE(1995), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2089), 18, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2087), 35, - anon_sym_DOT, + ACTIONS(2051), 23, 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, @@ -227188,131 +226768,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3340] = 27, + [2565] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2073), 1, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5002), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5030), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2072), 1, sym_argument_list, - STATE(2120), 1, + STATE(2073), 1, sym_or_block, - STATE(4207), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5058), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5034), 2, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5096), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1996), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(5004), 4, + ACTIONS(5056), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5010), 4, + ACTIONS(5060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5006), 8, - anon_sym_STAR, - anon_sym_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(2071), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3454] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1997), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2097), 18, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5042), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2095), 37, - anon_sym_DOT, + ACTIONS(2051), 24, 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, @@ -227320,14 +226835,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_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, @@ -227340,82 +226849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [3524] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2995), 1, - anon_sym_LBRACK, - STATE(1998), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2997), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [3594] = 5, + [2666] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2813), 1, + ACTIONS(2667), 1, anon_sym_LBRACK, - STATE(1999), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 54, + ACTIONS(2669), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227470,12 +226914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [3664] = 27, + [2736] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2059), 1, + ACTIONS(2065), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -227497,15 +226941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5086), 1, anon_sym_AMP_AMP, - ACTIONS(5090), 1, + ACTIONS(5088), 1, anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -227513,26 +226957,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5032), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5084), 2, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, - STATE(2000), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -227541,7 +226985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 15, + ACTIONS(2063), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -227557,17 +227001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3778] = 5, + [2850] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(2001), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3051), 54, + ACTIONS(2985), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227622,94 +227066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [3848] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5002), 1, - anon_sym_LPAREN, - ACTIONS(5012), 1, - anon_sym_LBRACK, - ACTIONS(5018), 1, - anon_sym_QMARK, - ACTIONS(5020), 1, - anon_sym_BANG, - ACTIONS(5022), 1, - anon_sym_LBRACK2, - ACTIONS(5030), 1, - anon_sym_POUND_LBRACK, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, - sym_or_block, - STATE(4207), 1, - sym_type_parameters, - ACTIONS(4994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2002), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5080), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5082), 8, - anon_sym_STAR, - anon_sym_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(2061), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3942] = 5, + [2920] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3078), 1, + ACTIONS(3348), 1, anon_sym_LBRACK, - STATE(2003), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3080), 54, + ACTIONS(3350), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227764,69 +227131,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [4012] = 27, + [2990] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2073), 1, - anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, ACTIONS(5018), 1, anon_sym_QMARK, ACTIONS(5020), 1, anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5028), 1, - anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, - anon_sym_AMP_AMP, - ACTIONS(5090), 1, - anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5092), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5096), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2004), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(2049), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -227835,9 +227178,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2071), 15, + ACTIONS(2047), 29, anon_sym_SEMI, + anon_sym_as, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -227851,59 +227208,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4126] = 5, + [3084] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(2069), 1, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2091), 37, - anon_sym_DOT, + ACTIONS(4996), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5002), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5012), 1, anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(5014), 1, anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + ACTIONS(5018), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_BANG, + ACTIONS(5022), 1, + anon_sym_LBRACK2, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5086), 1, anon_sym_AMP_AMP, + ACTIONS(5088), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, + ACTIONS(5092), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5078), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -227916,24 +227294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4196] = 9, + anon_sym_COLON_EQ, + [3198] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_COLON_EQ, - STATE(4028), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2178), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(2006), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 19, + ACTIONS(2169), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -227942,7 +227312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, @@ -227953,22 +227322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 31, + ACTIONS(2167), 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_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, @@ -227985,11 +227359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [4274] = 17, + anon_sym_COLON_EQ, + [3268] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2053), 1, + anon_sym_EQ, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, @@ -228002,28 +227379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2079), 3, - anon_sym_EQ, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5080), 4, + ACTIONS(5090), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1995), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5082), 8, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -228032,14 +227416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 29, + ACTIONS(2051), 23, 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, @@ -228047,8 +227427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -228062,19 +227440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4368] = 7, + [3368] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(5094), 1, anon_sym_else, - STATE(2175), 1, + STATE(2077), 1, sym_else_branch, - STATE(2008), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 18, + ACTIONS(2089), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228093,7 +227471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2081), 35, + ACTIONS(2087), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228129,56 +227507,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4442] = 7, + [3442] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_else, - STATE(2174), 1, - sym_else_branch, - STATE(2009), 2, + ACTIONS(5002), 1, + anon_sym_LPAREN, + ACTIONS(5012), 1, + anon_sym_LBRACK, + ACTIONS(5018), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_BANG, + ACTIONS(5022), 1, + anon_sym_LBRACK2, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 18, + ACTIONS(2053), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2087), 35, + ACTIONS(2051), 29, 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, @@ -228196,7 +227584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4516] = 16, + [3536] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -228213,19 +227601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2010), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, + ACTIONS(2053), 7, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228233,7 +227621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -228242,7 +227630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 29, + ACTIONS(2051), 29, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -228272,17 +227660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4608] = 6, + [3628] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2027), 1, - sym_type_parameters, - STATE(2011), 2, + ACTIONS(5094), 1, + anon_sym_else, + STATE(2070), 1, + sym_else_branch, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 18, + ACTIONS(2083), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228301,7 +227691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(2081), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228337,12 +227727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4679] = 27, + [3702] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2045), 1, + ACTIONS(2075), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -228364,15 +227754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5086), 1, anon_sym_AMP_AMP, - ACTIONS(5090), 1, + ACTIONS(5088), 1, anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, @@ -228380,26 +227770,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5032), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5084), 2, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, - STATE(2012), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -228408,7 +227798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3908), 14, + ACTIONS(2073), 15, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228423,17 +227814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4792] = 6, + [3816] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_DOLLARelse, - STATE(2013), 2, + ACTIONS(5096), 1, + anon_sym_else, + STATE(2194), 1, + sym_else_branch, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 18, + ACTIONS(2089), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228452,8 +227845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2329), 35, - anon_sym_SEMI, + ACTIONS(2087), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228464,8 +227856,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, @@ -228487,19 +227881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4863] = 6, - ACTIONS(3), 1, + [3890] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_DOLLARelse, - STATE(2014), 2, + ACTIONS(3047), 1, + anon_sym_LBRACK, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 18, - anon_sym_EQ, + ACTIONS(3049), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228507,6 +227910,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_PIPE, @@ -228517,20 +227930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2137), 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, @@ -228540,48 +227939,23 @@ 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, - [4934] = 9, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [3960] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_COMMA, - ACTIONS(5112), 1, - anon_sym_EQ, - STATE(3385), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(2015), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(5108), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2965), 17, + ACTIONS(2169), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228599,9 +227973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 21, + ACTIONS(2167), 37, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -228617,21 +227993,33 @@ 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, - [5011] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [4030] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_DOLLARelse, - STATE(2016), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228650,7 +228038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2329), 35, + ACTIONS(2145), 37, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228661,15 +228050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_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, @@ -228686,69 +228075,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5082] = 27, + anon_sym_COLON_EQ, + [4100] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2073), 1, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, ACTIONS(5002), 1, anon_sym_LPAREN, ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, ACTIONS(5018), 1, anon_sym_QMARK, ACTIONS(5020), 1, anon_sym_BANG, ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5028), 1, - anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5086), 1, anon_sym_AMP_AMP, - ACTIONS(5090), 1, - anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 2, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5116), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2017), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -228757,8 +228134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2071), 14, + ACTIONS(2051), 22, + anon_sym_SEMI, + anon_sym_as, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -228772,79 +228157,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5195] = 27, + [4202] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2073), 1, - anon_sym_EQ, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5002), 1, - anon_sym_LPAREN, - ACTIONS(5012), 1, - anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, - anon_sym_QMARK, - ACTIONS(5020), 1, - anon_sym_BANG, - ACTIONS(5022), 1, - anon_sym_LBRACK2, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5030), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, - anon_sym_AMP_AMP, - ACTIONS(5090), 1, - anon_sym_PIPE_PIPE, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, - sym_or_block, - STATE(4207), 1, - sym_type_parameters, - ACTIONS(4994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5092), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5118), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2018), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(2147), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5082), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2071), 14, + ACTIONS(2145), 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, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -228857,18 +228222,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, - [5308] = 6, + [4272] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2115), 1, - sym_type_parameters, - STATE(2019), 2, + ACTIONS(5096), 1, + anon_sym_else, + STATE(2195), 1, + sym_else_branch, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 18, + ACTIONS(2083), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228887,7 +228253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(2081), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228923,17 +228289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5379] = 6, + [4346] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_DOLLARelse, - STATE(2020), 2, + ACTIONS(5098), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, + anon_sym_COLON_EQ, + STATE(4033), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2180), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 18, + ACTIONS(2175), 19, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -228942,6 +228315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, @@ -228952,18 +228326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2137), 35, + ACTIONS(2173), 31, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, @@ -228988,139 +228358,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5450] = 5, + [4424] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2021), 2, + ACTIONS(3053), 1, + anon_sym_LBRACK, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(5124), 5, + ACTIONS(3055), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5122), 49, anon_sym_DOT, - anon_sym_LBRACE, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_struct, + anon_sym_pub, anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, + anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - sym_pseudo_compile_time_identifier, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, - [5519] = 4, - ACTIONS(311), 1, + anon_sym_AT_LBRACK, + [4494] = 27, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4132), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2069), 1, + anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5002), 1, 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, + ACTIONS(5012), 1, + anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, + ACTIONS(5018), 1, anon_sym_QMARK, + ACTIONS(5020), 1, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, + ACTIONS(5022), 1, anon_sym_LBRACK2, - anon_sym_TILDE, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5034), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5092), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5004), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(5010), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5006), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [5586] = 27, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4608] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2073), 1, + ACTIONS(2001), 1, anon_sym_EQ, ACTIONS(4996), 1, anon_sym_as, @@ -229142,42 +228537,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(5030), 1, anon_sym_POUND_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5086), 1, anon_sym_AMP_AMP, - ACTIONS(5090), 1, + ACTIONS(5088), 1, anon_sym_PIPE_PIPE, - STATE(2118), 1, + STATE(2134), 1, sym_argument_list, - STATE(2120), 1, + STATE(2135), 1, sym_or_block, - STATE(4207), 1, + STATE(4203), 1, sym_type_parameters, ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 2, + ACTIONS(5032), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5092), 2, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5126), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2023), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(5080), 4, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5086), 4, + ACTIONS(5084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5082), 8, + ACTIONS(5080), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -229186,7 +228581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2071), 14, + ACTIONS(3908), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229201,15 +228596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5699] = 5, + [4721] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2024), 2, + ACTIONS(5102), 1, + anon_sym_DOLLARelse, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 18, + ACTIONS(2105), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229228,7 +228625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, + ACTIONS(2103), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229239,10 +228637,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, @@ -229264,16 +228660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5767] = 5, + anon_sym_COLON_EQ, + [4792] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + ACTIONS(5106), 1, + anon_sym_COMMA, + ACTIONS(5108), 1, + anon_sym_EQ, + STATE(3388), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 18, - anon_sym_EQ, + ACTIONS(5104), 13, + anon_sym_LBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(3035), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229291,11 +228707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3088), 35, + ACTIONS(3033), 21, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -229315,27 +228729,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, - [5835] = 5, + [4869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2026), 2, + ACTIONS(5110), 1, + anon_sym_DOLLARelse, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 18, + ACTIONS(2105), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229354,7 +228758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3029), 35, + ACTIONS(2103), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229390,15 +228794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [5903] = 5, + [4940] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + ACTIONS(5112), 1, + anon_sym_DOLLARelse, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 18, + ACTIONS(2093), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229417,7 +228823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(2091), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229453,15 +228859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5971] = 5, + [5011] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + ACTIONS(5114), 1, + anon_sym_DOLLARelse, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 18, + ACTIONS(2093), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229480,8 +228888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2839), 35, - anon_sym_SEMI, + ACTIONS(2091), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229492,8 +228899,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, @@ -229515,16 +228924,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, - [6039] = 5, + [5082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2132), 1, + sym_type_parameters, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 18, + ACTIONS(2187), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229543,8 +228953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2951), 35, - anon_sym_SEMI, + ACTIONS(2185), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229555,8 +228964,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, @@ -229578,16 +228989,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6107] = 5, + [5153] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + STATE(2018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [5220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2030), 1, + sym_type_parameters, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 18, + ACTIONS(2187), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229606,7 +229081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3284), 35, + ACTIONS(2185), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229642,56 +229117,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6175] = 5, + [5291] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + ACTIONS(2069), 1, + anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5002), 1, + anon_sym_LPAREN, + ACTIONS(5012), 1, + anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, + ACTIONS(5018), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_BANG, + ACTIONS(5022), 1, + anon_sym_LBRACK2, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5086), 1, + anon_sym_AMP_AMP, + ACTIONS(5088), 1, + anon_sym_PIPE_PIPE, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5090), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5116), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 18, - anon_sym_EQ, + ACTIONS(5078), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 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(2067), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5404] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2069), 1, + anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5002), 1, + anon_sym_LPAREN, + ACTIONS(5012), 1, + anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, + ACTIONS(5018), 1, anon_sym_QMARK, + ACTIONS(5020), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5022), 1, anon_sym_LBRACK2, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5086), 1, + anon_sym_AMP_AMP, + ACTIONS(5088), 1, + anon_sym_PIPE_PIPE, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5090), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5118), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2021), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5078), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 8, + anon_sym_STAR, + anon_sym_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(3272), 35, + ACTIONS(2067), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5517] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + STATE(2022), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5122), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(5120), 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_RPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [5586] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2069), 1, + anon_sym_EQ, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5002), 1, + anon_sym_LPAREN, + ACTIONS(5012), 1, anon_sym_LBRACK, + ACTIONS(5014), 1, anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, anon_sym_DASH_DASH, + ACTIONS(5018), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_BANG, + ACTIONS(5022), 1, + anon_sym_LBRACK2, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5086), 1, anon_sym_AMP_AMP, + ACTIONS(5088), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2134), 1, + sym_argument_list, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, + sym_type_parameters, + ACTIONS(4994), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5090), 2, anon_sym_in, anon_sym_BANGin, + ACTIONS(5124), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5078), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -229705,18 +229439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6243] = 6, + [5699] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2435), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(2032), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 18, + ACTIONS(2993), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229735,9 +229466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2442), 33, + ACTIONS(2991), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -229745,8 +229477,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, @@ -229768,16 +229502,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, - [6313] = 5, + [5767] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 18, + ACTIONS(2961), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229796,7 +229529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3338), 35, + ACTIONS(2959), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229832,15 +229565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [6381] = 5, + [5835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 18, + ACTIONS(2849), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229859,8 +229592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3256), 35, - anon_sym_SEMI, + ACTIONS(2847), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229871,8 +229603,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, @@ -229894,16 +229628,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, - [6449] = 5, + [5903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 18, + ACTIONS(3045), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229922,8 +229655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3246), 35, - anon_sym_SEMI, + ACTIONS(3043), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229934,8 +229666,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, @@ -229957,16 +229691,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, - [6517] = 5, + [5971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + ACTIONS(5126), 1, + anon_sym_DOT, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 18, + ACTIONS(3045), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -229985,9 +229720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3041), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3043), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -229997,8 +229730,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, @@ -230020,16 +229755,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, - [6585] = 5, + [6041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 18, + ACTIONS(3332), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230048,7 +229782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3082), 35, + ACTIONS(3330), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230084,15 +229818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6653] = 5, + [6109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 18, + ACTIONS(2841), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230111,7 +229845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 35, + ACTIONS(2839), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230147,15 +229881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6721] = 5, + [6177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 18, + ACTIONS(2865), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230174,7 +229908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2959), 35, + ACTIONS(2863), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230210,15 +229944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6789] = 5, + [6245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 18, + ACTIONS(3296), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230237,7 +229971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3029), 35, + ACTIONS(3294), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230273,15 +230007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6857] = 5, + [6313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 18, + ACTIONS(3292), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230300,7 +230034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3037), 35, + ACTIONS(3290), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230336,15 +230070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6925] = 5, + [6381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(3328), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230363,7 +230097,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(3326), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230399,15 +230133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [6993] = 5, + [6449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + ACTIONS(2441), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 18, + ACTIONS(2445), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230426,10 +230163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 35, + ACTIONS(2448), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -230437,10 +230173,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, @@ -230462,15 +230196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [7061] = 5, + anon_sym_COLON_EQ, + [6519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 18, + ACTIONS(3270), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230489,7 +230224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(3268), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230525,15 +230260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7129] = 5, + [6587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 18, + ACTIONS(3266), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230552,7 +230287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2883), 35, + ACTIONS(3264), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230588,15 +230323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7197] = 5, + [6655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 18, + ACTIONS(2383), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230615,7 +230350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3242), 35, + ACTIONS(2381), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230626,10 +230362,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, @@ -230651,15 +230385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [7265] = 5, + anon_sym_COLON_EQ, + [6723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 18, + ACTIONS(2881), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230678,7 +230413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3088), 35, + ACTIONS(2879), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230714,15 +230449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7333] = 5, + [6791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 18, + ACTIONS(3041), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230741,7 +230476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3298), 35, + ACTIONS(3039), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230777,15 +230512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7401] = 5, + [6859] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 18, + ACTIONS(3246), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230804,7 +230539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3338), 35, + ACTIONS(3244), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230840,15 +230575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7469] = 5, + [6927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 18, + ACTIONS(3250), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230867,8 +230602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3302), 35, - anon_sym_SEMI, + ACTIONS(3248), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230879,8 +230613,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, @@ -230902,16 +230638,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, - [7537] = 5, + [6995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 18, + ACTIONS(2957), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230930,7 +230665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3045), 35, + ACTIONS(2955), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230966,15 +230701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7605] = 5, + [7063] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 18, + ACTIONS(3262), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -230993,7 +230728,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3306), 35, + ACTIONS(3260), 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, + [7131] = 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(2967), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2965), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231029,15 +230827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7673] = 5, + [7199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 18, + ACTIONS(3035), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231056,7 +230854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3312), 35, + ACTIONS(3033), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231092,15 +230890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7741] = 5, + [7267] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 18, + ACTIONS(3240), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231119,7 +230917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, + ACTIONS(3238), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231155,15 +230953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [7809] = 5, + [7335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231182,7 +230980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 35, + ACTIONS(2173), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231218,15 +231016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [7877] = 5, + [7403] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 18, + ACTIONS(2929), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231245,7 +231043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2971), 35, + ACTIONS(2927), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231256,10 +231055,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, @@ -231281,15 +231078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [7945] = 5, + anon_sym_COLON_EQ, + [7471] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 18, + ACTIONS(2445), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231308,7 +231106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3316), 35, + ACTIONS(2448), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231344,15 +231142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8013] = 5, + [7539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 18, + ACTIONS(2187), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231371,7 +231169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3326), 35, + ACTIONS(2185), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231407,15 +231205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8081] = 5, + [7607] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 18, + ACTIONS(2893), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231434,7 +231232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3334), 35, + ACTIONS(2891), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231470,15 +231268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8149] = 5, + [7675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231497,7 +231295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3037), 35, + ACTIONS(2145), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231533,15 +231331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8217] = 5, + [7743] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 18, + ACTIONS(3045), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231560,7 +231358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3352), 35, + ACTIONS(3043), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231596,15 +231394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8285] = 5, + [7811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 18, + ACTIONS(3007), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231623,7 +231421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2839), 35, + ACTIONS(3005), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231659,15 +231457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8353] = 5, + [7879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 18, + ACTIONS(2981), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231686,7 +231484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2951), 35, + ACTIONS(2979), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231722,15 +231520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8421] = 5, + [7947] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 18, + ACTIONS(2977), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231749,7 +231547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2835), 35, + ACTIONS(2975), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231785,15 +231583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8489] = 5, + [8015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 18, + ACTIONS(3069), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231812,7 +231610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2825), 35, + ACTIONS(3067), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231823,10 +231622,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, @@ -231848,15 +231645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8557] = 5, + anon_sym_COLON_EQ, + [8083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 18, + ACTIONS(3328), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231875,7 +231673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2821), 35, + ACTIONS(3326), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231886,10 +231685,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, @@ -231911,15 +231708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8625] = 5, + anon_sym_COLON_EQ, + [8151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 18, + ACTIONS(3300), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -231938,7 +231736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2817), 35, + ACTIONS(3298), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231949,10 +231748,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, @@ -231974,15 +231771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8693] = 5, + anon_sym_COLON_EQ, + [8219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 18, + ACTIONS(3304), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232001,7 +231799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2449), 35, + ACTIONS(3302), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232037,15 +231835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8761] = 5, + [8287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(3084), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232064,7 +231862,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(3082), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232100,17 +231898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8829] = 6, + [8355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, - anon_sym_LBRACE, - STATE(2070), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(3308), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232129,10 +231925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 34, + ACTIONS(3306), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -232164,15 +231961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8899] = 5, + [8423] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 18, + ACTIONS(2865), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232191,7 +231988,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(2863), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232227,15 +232024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [8967] = 5, + [8491] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 18, + ACTIONS(2833), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232254,7 +232051,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(2831), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232290,15 +232087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [9035] = 5, + [8559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 18, + ACTIONS(2829), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232317,8 +232114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3242), 35, - anon_sym_SEMI, + ACTIONS(2827), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232329,8 +232125,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, @@ -232352,16 +232150,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, - [9103] = 5, + [8627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 18, + ACTIONS(2823), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232380,8 +232177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2463), 35, - anon_sym_SEMI, + ACTIONS(2821), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232392,8 +232188,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, @@ -232415,16 +232213,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, - [9171] = 5, + [8695] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 18, + ACTIONS(2819), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232443,7 +232240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3025), 35, + ACTIONS(2817), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232479,15 +232276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [9239] = 5, + [8763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 18, + ACTIONS(2957), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232506,7 +232303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3252), 35, + ACTIONS(2955), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232542,15 +232339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [9307] = 5, + [8831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 18, + ACTIONS(3336), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232569,7 +232366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3033), 35, + ACTIONS(3334), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232605,15 +232402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9375] = 5, + [8899] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 18, + ACTIONS(3312), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232632,7 +232429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3025), 35, + ACTIONS(3310), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232668,15 +232465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9443] = 5, + [8967] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 18, + ACTIONS(2659), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232695,7 +232492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2391), 35, + ACTIONS(2657), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232731,15 +232528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [9511] = 5, + [9035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 18, + ACTIONS(2655), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232758,8 +232555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2445), 35, - anon_sym_SEMI, + ACTIONS(2653), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232770,8 +232566,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, @@ -232793,16 +232591,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, - [9579] = 5, + [9103] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 18, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232821,7 +232618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3003), 35, + ACTIONS(3316), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232857,15 +232654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9647] = 5, + [9171] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 18, + ACTIONS(3324), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232884,7 +232681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2421), 35, + ACTIONS(3322), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232895,10 +232693,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, @@ -232920,15 +232716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [9715] = 5, + anon_sym_COLON_EQ, + [9239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 18, + ACTIONS(2837), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -232947,7 +232744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3021), 35, + ACTIONS(2835), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232983,15 +232780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9783] = 5, + [9307] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 18, + ACTIONS(3340), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233010,7 +232807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3017), 35, + ACTIONS(3338), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233046,15 +232843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9851] = 5, + [9375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 18, + ACTIONS(3346), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233073,7 +232870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2431), 35, + ACTIONS(3344), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233109,15 +232906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9919] = 5, + [9443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 18, + ACTIONS(3256), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233136,7 +232933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, + ACTIONS(3254), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233172,15 +232969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9987] = 5, + [9511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 18, + ACTIONS(2397), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233199,8 +232996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 35, - anon_sym_SEMI, + ACTIONS(2395), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233211,8 +233007,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, @@ -233234,16 +233032,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, - [10055] = 5, + [9579] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 18, + ACTIONS(3356), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233262,7 +233059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2971), 35, + ACTIONS(3354), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233298,15 +233095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10123] = 5, + [9647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 18, + ACTIONS(3035), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233325,7 +233122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3021), 35, + ACTIONS(3033), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233361,15 +233158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10191] = 5, + [9715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 18, + ACTIONS(2429), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233388,7 +233185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2883), 35, + ACTIONS(2427), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233424,15 +233221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10259] = 5, + [9783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 18, + ACTIONS(3031), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233451,7 +233248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(3029), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233462,10 +233260,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, @@ -233487,15 +233283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10327] = 5, + anon_sym_COLON_EQ, + [9851] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 18, + ACTIONS(3240), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233514,7 +233311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2835), 35, + ACTIONS(3238), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233550,79 +233347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10395] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_BANG, - STATE(2093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2693), 17, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2691), 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, - [10465] = 5, + [9919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 18, + ACTIONS(2457), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233641,7 +233374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2825), 35, + ACTIONS(2455), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233677,15 +233410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10533] = 5, + [9987] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 18, + ACTIONS(2373), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233704,7 +233437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2821), 35, + ACTIONS(2371), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233740,15 +233473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10601] = 5, + [10055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 18, + ACTIONS(3023), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233767,7 +233500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2817), 35, + ACTIONS(3021), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233803,17 +233536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10669] = 6, + [10123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, - anon_sym_LBRACE, - STATE(2097), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 18, + ACTIONS(2951), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233832,10 +233563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2829), 34, + ACTIONS(2949), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -233867,17 +233599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10739] = 6, + [10191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(2098), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 18, + ACTIONS(3027), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233896,10 +233626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3029), 34, + ACTIONS(3025), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -233931,15 +233662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10809] = 5, + [10259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 18, + ACTIONS(2453), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -233958,7 +233689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2959), 35, + ACTIONS(2451), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233969,10 +233701,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, @@ -233994,15 +233724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [10877] = 5, + anon_sym_COLON_EQ, + [10327] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 18, + ACTIONS(3019), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234021,7 +233752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2829), 35, + ACTIONS(3017), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -234057,15 +233788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10945] = 5, + [10395] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 18, + ACTIONS(3001), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234084,7 +233815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 35, + ACTIONS(2999), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234095,10 +233827,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, @@ -234120,15 +233850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11013] = 5, + anon_sym_COLON_EQ, + [10463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + ACTIONS(5129), 1, + anon_sym_BANG, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 18, + ACTIONS(2697), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234138,7 +233871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -234147,7 +233879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2915), 35, + ACTIONS(2695), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234183,15 +233915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11081] = 5, + [10533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 18, + ACTIONS(3015), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234210,7 +233942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2919), 35, + ACTIONS(3013), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234221,10 +233954,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, @@ -234246,21 +233977,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11149] = 7, + anon_sym_COLON_EQ, + [10601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3005), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(5132), 2, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - STATE(2104), 2, + 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, + [10669] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(3045), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234279,15 +234070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 31, + ACTIONS(3043), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -234297,6 +234090,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, @@ -234311,15 +234105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11221] = 5, + [10739] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + ACTIONS(2337), 1, + anon_sym_LBRACE, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 18, + ACTIONS(2837), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234338,10 +234134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, + ACTIONS(2835), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -234349,10 +234145,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, @@ -234374,15 +234168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11289] = 5, + anon_sym_COLON_EQ, + [10809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 18, + ACTIONS(2981), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234401,7 +234196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3017), 35, + ACTIONS(2979), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234412,10 +234208,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, @@ -234437,15 +234231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11357] = 5, + anon_sym_COLON_EQ, + [10877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 18, + ACTIONS(2401), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234464,7 +234259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2991), 35, + ACTIONS(2399), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234475,10 +234271,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, @@ -234500,15 +234294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11425] = 5, + anon_sym_COLON_EQ, + [10945] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + ACTIONS(2180), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(5133), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234527,7 +234328,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3082), 35, + ACTIONS(2173), 31, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [11017] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2917), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2915), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234563,15 +234423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11493] = 5, + [11085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2109), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 18, + ACTIONS(2921), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234590,7 +234450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3246), 35, + ACTIONS(2919), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234626,15 +234486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11561] = 5, + [11153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 18, + ACTIONS(2925), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234653,7 +234513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3256), 35, + ACTIONS(2923), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234689,15 +234549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11629] = 5, + [11221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 18, + ACTIONS(2977), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234716,7 +234576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3272), 35, + ACTIONS(2975), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234727,10 +234588,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, @@ -234752,15 +234611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11697] = 5, + anon_sym_COLON_EQ, + [11289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 18, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234779,7 +234639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3284), 35, + ACTIONS(2987), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234815,15 +234675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11765] = 5, + [11357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 18, + ACTIONS(3280), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234842,7 +234702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3058), 35, + ACTIONS(3278), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234853,10 +234714,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, @@ -234878,15 +234737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11833] = 5, + anon_sym_COLON_EQ, + [11425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3064), 18, + ACTIONS(2997), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234905,7 +234765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3062), 35, + ACTIONS(2995), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234941,15 +234801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11901] = 5, + [11493] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 18, + ACTIONS(3250), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -234968,7 +234828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(3248), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234979,10 +234840,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, @@ -235004,15 +234863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11969] = 5, + anon_sym_COLON_EQ, + [11561] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 18, + ACTIONS(2893), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235031,7 +234891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3068), 35, + ACTIONS(2891), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235067,15 +234927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12037] = 5, + [11629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 18, + ACTIONS(2187), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235094,7 +234954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3352), 35, + ACTIONS(2185), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235130,15 +234990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12105] = 5, + [11697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 18, + ACTIONS(2377), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235157,7 +235017,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(2375), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -235193,15 +235053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12173] = 5, + [11765] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 18, + ACTIONS(2885), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235220,7 +235080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3334), 35, + ACTIONS(2883), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235256,15 +235116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12241] = 5, + [11833] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 18, + ACTIONS(3061), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235283,8 +235143,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, - anon_sym_SEMI, + ACTIONS(3059), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235295,8 +235154,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, @@ -235318,16 +235179,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, - [12309] = 5, + [11901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 18, + ACTIONS(3065), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235346,7 +235206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3326), 35, + ACTIONS(3063), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235382,15 +235242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12377] = 5, + [11969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 18, + ACTIONS(2833), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235409,7 +235269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3316), 35, + ACTIONS(2831), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235420,10 +235281,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, @@ -235445,15 +235304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12445] = 5, + anon_sym_COLON_EQ, + [12037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 18, + ACTIONS(3073), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235472,7 +235332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2929), 35, + ACTIONS(3071), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235508,15 +235368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12513] = 5, + [12105] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2124), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 18, + ACTIONS(2829), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235535,7 +235395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2911), 35, + ACTIONS(2827), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235546,10 +235407,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, @@ -235571,15 +235430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12581] = 5, + anon_sym_COLON_EQ, + [12173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2125), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 18, + ACTIONS(2823), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235598,7 +235458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3312), 35, + ACTIONS(2821), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235609,10 +235470,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, @@ -235634,15 +235493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12649] = 5, + anon_sym_COLON_EQ, + [12241] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 18, + ACTIONS(2819), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235661,7 +235521,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3306), 35, + ACTIONS(2817), 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, + [12309] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2967), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2965), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235697,15 +235620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12717] = 5, + [12377] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2127), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 18, + ACTIONS(3286), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235724,7 +235647,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, + ACTIONS(3284), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -235760,15 +235683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12785] = 5, + [12445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2128), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 18, + ACTIONS(3246), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235787,7 +235710,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2457), 35, + ACTIONS(3244), 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, + [12513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2889), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2887), 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, + [12581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2877), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2875), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235823,15 +235872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12853] = 5, + [12649] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2129), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 18, + ACTIONS(3266), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235850,8 +235899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2417), 35, - anon_sym_SEMI, + ACTIONS(3264), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235862,8 +235910,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, @@ -235885,16 +235935,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, - [12921] = 5, + [12717] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2130), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 18, + ACTIONS(3270), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235913,7 +235962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3072), 35, + ACTIONS(3268), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235949,15 +235998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12989] = 5, + [12785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 18, + ACTIONS(3292), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -235976,8 +236025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2391), 35, - anon_sym_SEMI, + ACTIONS(3290), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -235988,8 +236036,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, @@ -236011,16 +236061,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, - [13057] = 5, + [12853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2132), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 18, + ACTIONS(2947), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236039,7 +236088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3302), 35, + ACTIONS(2945), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236075,15 +236124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13125] = 5, + [12921] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 18, + ACTIONS(3296), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236102,8 +236151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2421), 35, - anon_sym_SEMI, + ACTIONS(3294), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236114,8 +236162,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, @@ -236137,18 +236187,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, - [13193] = 6, + [12989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5134), 1, - anon_sym_BANG, - STATE(2134), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 17, + ACTIONS(3080), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236158,6 +236205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -236166,8 +236214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2691), 35, - anon_sym_SEMI, + ACTIONS(3078), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236178,8 +236225,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, @@ -236201,16 +236250,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, - [13263] = 5, + [13057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2135), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 18, + ACTIONS(2841), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236229,7 +236277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3298), 35, + ACTIONS(2839), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236265,15 +236313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13331] = 5, + [13125] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 18, + ACTIONS(3356), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236292,8 +236340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2867), 35, - anon_sym_SEMI, + ACTIONS(3354), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236304,8 +236351,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, @@ -236327,16 +236376,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, - [13399] = 5, + [13193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2137), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 18, + ACTIONS(2659), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236355,7 +236403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2463), 35, + ACTIONS(2657), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236366,10 +236415,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, @@ -236391,15 +236438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13467] = 5, + anon_sym_COLON_EQ, + [13261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2138), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 18, + ACTIONS(2655), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236418,7 +236466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2449), 35, + ACTIONS(2653), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236429,10 +236478,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, @@ -236454,15 +236501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13535] = 5, + anon_sym_COLON_EQ, + [13329] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2139), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 18, + ACTIONS(3346), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236481,7 +236529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2975), 35, + ACTIONS(3344), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236517,15 +236565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13603] = 5, + [13397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 18, + ACTIONS(3324), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236544,7 +236592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2955), 35, + ACTIONS(3322), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236580,17 +236628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13671] = 6, + [13465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - STATE(2141), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 18, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236609,7 +236655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3029), 34, + ACTIONS(3316), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236644,15 +236691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13741] = 5, + [13533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2142), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 18, + ACTIONS(3312), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236671,7 +236718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2933), 35, + ACTIONS(3310), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236707,34 +236754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13809] = 7, + [13601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, - anon_sym_EQ, - STATE(2143), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2439), 17, + ACTIONS(2973), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -236752,17 +236781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2442), 19, + ACTIONS(2971), 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, @@ -236772,15 +236805,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [13881] = 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, + [13669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 18, + ACTIONS(3274), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236799,7 +236844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2875), 35, + ACTIONS(3272), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -236835,15 +236880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13949] = 5, + [13737] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2145), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 18, + ACTIONS(2471), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236862,7 +236907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 35, + ACTIONS(2469), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -236898,15 +236943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14017] = 5, + [13805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2146), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 18, + ACTIONS(2935), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -236925,8 +236970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2915), 35, - anon_sym_SEMI, + ACTIONS(2933), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -236937,8 +236981,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, @@ -236960,57 +237006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14085] = 5, + [13873] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2147), 2, + ACTIONS(2443), 1, + anon_sym_EQ, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 18, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2919), 35, + ACTIONS(2441), 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, @@ -237024,18 +237033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14153] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - STATE(2148), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3031), 18, - anon_sym_EQ, + ACTIONS(2445), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -237053,11 +237051,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3029), 34, - anon_sym_SEMI, + ACTIONS(2448), 19, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -237075,28 +237071,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, - [14223] = 5, + [13945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2149), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 18, + ACTIONS(2873), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237115,7 +237098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2371), 35, + ACTIONS(2871), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237151,15 +237134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14291] = 5, + [14013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2150), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 18, + ACTIONS(2435), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237178,7 +237161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3045), 35, + ACTIONS(2433), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237189,10 +237173,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, @@ -237214,15 +237196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14359] = 5, + anon_sym_COLON_EQ, + [14081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2151), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 18, + ACTIONS(3308), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237241,7 +237224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3041), 35, + ACTIONS(3306), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237277,15 +237260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14427] = 5, + [14149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2152), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 18, + ACTIONS(2397), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237304,7 +237287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3033), 35, + ACTIONS(2395), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237315,10 +237299,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, @@ -237340,15 +237322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14495] = 5, + anon_sym_COLON_EQ, + [14217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2153), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 18, + ACTIONS(2429), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237367,7 +237350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2445), 35, + ACTIONS(2427), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237378,10 +237362,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, @@ -237403,15 +237385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14563] = 5, + anon_sym_COLON_EQ, + [14285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2154), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 18, + ACTIONS(2465), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237430,8 +237413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, - anon_sym_SEMI, + ACTIONS(2463), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237442,8 +237424,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, @@ -237465,16 +237449,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, - [14631] = 5, + [14353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2155), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 18, + ACTIONS(3304), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237493,8 +237476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, - anon_sym_SEMI, + ACTIONS(3302), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237505,8 +237487,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, @@ -237528,16 +237512,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, - [14699] = 5, + [14421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2156), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 18, + ACTIONS(3300), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237556,7 +237539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2945), 35, + ACTIONS(3298), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237592,15 +237575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14767] = 5, + [14489] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2371), 1, + anon_sym_LBRACE, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237619,18 +237606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2991), 35, + ACTIONS(2173), 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, @@ -237655,15 +237640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14835] = 5, + [14561] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2158), 2, + ACTIONS(5135), 1, + anon_sym_BANG, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 18, + ACTIONS(2697), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237673,7 +237660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -237682,7 +237668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3268), 35, + ACTIONS(2695), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237693,10 +237680,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, @@ -237718,15 +237703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14903] = 5, + anon_sym_COLON_EQ, + [14631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2159), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 18, + ACTIONS(2373), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237745,8 +237731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3058), 35, - anon_sym_SEMI, + ACTIONS(2371), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237757,8 +237742,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, @@ -237780,16 +237767,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, - [14971] = 5, + [14699] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2160), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(3064), 18, + ACTIONS(2457), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237808,8 +237794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3062), 35, - anon_sym_SEMI, + ACTIONS(2455), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237820,8 +237805,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, @@ -237843,16 +237830,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, - [15039] = 5, + [14767] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 18, + ACTIONS(2951), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237871,8 +237857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3068), 35, - anon_sym_SEMI, + ACTIONS(2949), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -237883,8 +237868,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, @@ -237906,16 +237893,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, - [15107] = 5, + [14835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2162), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 18, + ACTIONS(2873), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -237934,7 +237920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3264), 35, + ACTIONS(2871), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -237970,21 +237956,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15175] = 7, + [14903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, - anon_sym_EQ, - STATE(2163), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 16, + ACTIONS(3280), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3278), 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, @@ -237997,7 +238019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2439), 17, + [14971] = 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(3084), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -238015,17 +238046,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2442), 19, + ACTIONS(3082), 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, @@ -238035,15 +238070,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [15247] = 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, + [15039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2164), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 18, + ACTIONS(3069), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238062,7 +238109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3003), 35, + ACTIONS(3067), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238098,78 +238145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15315] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5141), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5139), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [15383] = 5, + [15107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 18, + ACTIONS(2885), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238188,7 +238172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2929), 35, + ACTIONS(2883), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -238224,15 +238208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15451] = 5, + [15175] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2167), 2, + ACTIONS(2180), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238251,17 +238238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2431), 35, + ACTIONS(2173), 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, @@ -238287,15 +238272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15519] = 5, + [15245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2168), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 18, + ACTIONS(3286), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238314,8 +238299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2911), 35, - anon_sym_SEMI, + ACTIONS(3284), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238326,8 +238310,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, @@ -238349,16 +238335,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, - [15587] = 5, + [15313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 18, + ACTIONS(2917), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238377,7 +238362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2863), 35, + ACTIONS(2915), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -238413,15 +238398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15655] = 5, + [15381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 18, + ACTIONS(3080), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238440,7 +238425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2843), 35, + ACTIONS(3078), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -238476,15 +238461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15723] = 5, + [15449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 18, + ACTIONS(3041), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238503,8 +238488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2457), 35, - anon_sym_SEMI, + ACTIONS(3039), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238515,8 +238499,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, @@ -238538,16 +238524,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, - [15791] = 5, + [15517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2172), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238566,7 +238551,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(2173), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238577,10 +238563,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, @@ -238602,15 +238586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15859] = 5, + anon_sym_COLON_EQ, + [15585] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + ACTIONS(2180), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238629,18 +238617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3072), 35, + ACTIONS(2173), 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, @@ -238665,15 +238651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15927] = 5, + [15655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2174), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 18, + ACTIONS(2335), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238692,7 +238678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3322), 35, + ACTIONS(2337), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -238728,15 +238714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15995] = 5, + [15723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2175), 2, + ACTIONS(2180), 1, + anon_sym_DOT, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 18, + ACTIONS(2373), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238755,9 +238743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3344), 35, + ACTIONS(2371), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238791,15 +238778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16063] = 5, + [15793] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2176), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(3031), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238818,8 +238805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 35, - anon_sym_SEMI, + ACTIONS(3029), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238830,8 +238816,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, @@ -238853,19 +238841,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, - [16131] = 6, + [15861] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(2177), 2, + ACTIONS(2180), 1, + anon_sym_DOT, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(2373), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238884,18 +238870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 33, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2371), 34, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -238917,16 +238905,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, - [16201] = 5, + [15931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 18, + ACTIONS(2335), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -238945,8 +238932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3330), 35, - anon_sym_SEMI, + ACTIONS(2337), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -238957,8 +238943,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, @@ -238980,16 +238968,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, - [16269] = 5, + [15999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 18, + ACTIONS(3027), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239008,7 +238995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2417), 35, + ACTIONS(3025), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239044,15 +239031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16337] = 5, + [16067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 18, + ACTIONS(2465), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239071,7 +239058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3276), 35, + ACTIONS(2463), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239107,15 +239094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16405] = 5, + [16135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239134,7 +239121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2625), 35, + ACTIONS(2145), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239170,15 +239157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16473] = 5, + [16203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 18, + ACTIONS(2925), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239197,7 +239184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3260), 35, + ACTIONS(2923), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239233,15 +239220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16541] = 5, + [16271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 18, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239260,7 +239247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3252), 35, + ACTIONS(2987), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239296,15 +239283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16609] = 5, + [16339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2335), 18, + ACTIONS(2377), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239323,7 +239310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2337), 35, + ACTIONS(2375), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239359,15 +239346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16677] = 5, + [16407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 18, + ACTIONS(2435), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239386,7 +239373,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2975), 35, + ACTIONS(2433), 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, + [16475] = 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(2993), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2991), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239422,15 +239472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16745] = 5, + [16543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2186), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 18, + ACTIONS(2997), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239449,7 +239499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2955), 35, + ACTIONS(2995), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239485,15 +239535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16813] = 5, + [16611] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 18, + ACTIONS(3061), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239512,7 +239562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2933), 35, + ACTIONS(3059), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239548,15 +239598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16881] = 5, + [16679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 18, + ACTIONS(3065), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239575,7 +239625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3292), 35, + ACTIONS(3063), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239586,10 +239637,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, @@ -239611,15 +239660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16949] = 5, + anon_sym_COLON_EQ, + [16747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 18, + ACTIONS(2471), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239638,7 +239688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, + ACTIONS(2469), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239674,17 +239724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17017] = 6, + [16815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, - anon_sym_DOT, - STATE(2190), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 18, + ACTIONS(2947), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239703,7 +239751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2463), 34, + ACTIONS(2945), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239713,10 +239763,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, @@ -239738,15 +239786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17087] = 5, + anon_sym_COLON_EQ, + [16883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 18, + ACTIONS(2837), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239765,7 +239814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2923), 35, + ACTIONS(2835), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239801,15 +239850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17155] = 5, + [16951] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + ACTIONS(2337), 1, + anon_sym_LBRACE, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2335), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239828,11 +239879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2337), 35, + ACTIONS(2145), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -239864,15 +239914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17223] = 5, + [17021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 18, + ACTIONS(2453), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239891,7 +239941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2879), 35, + ACTIONS(2451), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239927,15 +239977,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17291] = 5, + [17089] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + ACTIONS(2443), 1, + anon_sym_EQ, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 18, + ACTIONS(2441), 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(2445), 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2448), 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, + [17161] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3001), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -239954,7 +240069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2385), 35, + ACTIONS(2999), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -239990,15 +240105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17359] = 5, + [17229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2195), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 18, + ACTIONS(2973), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240017,7 +240132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2635), 35, + ACTIONS(2971), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240028,10 +240144,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, @@ -240053,15 +240167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17427] = 5, + anon_sym_COLON_EQ, + [17297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2196), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 18, + ACTIONS(3340), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240080,7 +240195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2631), 35, + ACTIONS(3338), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240116,15 +240231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17495] = 5, + [17365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2197), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 18, + ACTIONS(3336), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240143,7 +240258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2625), 35, + ACTIONS(3334), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240179,15 +240294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17563] = 5, + [17433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2198), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 18, + ACTIONS(2639), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240206,7 +240321,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(2637), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -240242,15 +240357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17631] = 5, + [17501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2199), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 18, + ACTIONS(3332), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240269,8 +240384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2641), 35, - anon_sym_SEMI, + ACTIONS(3330), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240281,8 +240395,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, @@ -240304,16 +240420,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, - [17699] = 5, + [17569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2200), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 18, + ACTIONS(3274), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240332,7 +240447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2641), 35, + ACTIONS(3272), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240368,7 +240483,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17767] = 5, + [17637] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5139), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(5137), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [17705] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, + anon_sym_DOT, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 18, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3043), 34, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [17775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240376,7 +240618,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 18, + ACTIONS(3256), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240395,7 +240637,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(3254), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240431,7 +240673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17835] = 5, + [17843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240439,7 +240681,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 18, + ACTIONS(2631), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240458,7 +240700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2371), 35, + ACTIONS(2629), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -240494,7 +240736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17903] = 5, + [17911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240502,7 +240744,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 18, + ACTIONS(2627), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240521,7 +240763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2631), 35, + ACTIONS(2625), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -240557,17 +240799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17971] = 6, + [17979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, - anon_sym_DOT, STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 18, + ACTIONS(3073), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240586,8 +240826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2463), 34, + ACTIONS(3071), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240621,7 +240862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18041] = 5, + [18047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240629,7 +240870,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 18, + ACTIONS(2921), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240648,7 +240889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3260), 35, + ACTIONS(2919), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240659,10 +240901,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, @@ -240684,7 +240924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18109] = 5, + anon_sym_COLON_EQ, + [18115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240692,7 +240933,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 18, + ACTIONS(3262), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240711,7 +240952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3276), 35, + ACTIONS(3260), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240722,10 +240964,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, @@ -240747,7 +240987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18177] = 5, + anon_sym_COLON_EQ, + [18183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240755,7 +240996,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 18, + ACTIONS(2647), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240774,7 +241015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3330), 35, + ACTIONS(2645), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240785,10 +241027,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, @@ -240810,7 +241050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18245] = 5, + anon_sym_COLON_EQ, + [18251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240818,7 +241059,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 18, + ACTIONS(2651), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240837,8 +241078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2635), 35, - anon_sym_SEMI, + ACTIONS(2649), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240849,8 +241089,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, @@ -240872,8 +241114,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, - [18313] = 5, + [18319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240881,7 +241122,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 18, + ACTIONS(2845), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240900,7 +241141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3344), 35, + ACTIONS(2843), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240936,7 +241177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18381] = 5, + [18387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -240944,7 +241185,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 18, + ACTIONS(2647), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -240963,7 +241204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3322), 35, + ACTIONS(2645), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -240999,7 +241240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18449] = 5, + [18455] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241007,7 +241248,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 18, + ACTIONS(2401), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241026,7 +241267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2829), 35, + ACTIONS(2399), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241062,19 +241303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18517] = 7, + [18523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_LBRACE, STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(2961), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241093,16 +241330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 33, + ACTIONS(2959), 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, @@ -241127,7 +241366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18589] = 5, + [18591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241135,7 +241374,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 18, + ACTIONS(2889), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241154,7 +241393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2843), 35, + ACTIONS(2887), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241165,10 +241405,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, @@ -241190,7 +241428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18657] = 5, + anon_sym_COLON_EQ, + [18659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241198,7 +241437,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 18, + ACTIONS(3015), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241217,7 +241456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2863), 35, + ACTIONS(3013), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241253,7 +241492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18725] = 5, + [18727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241261,7 +241500,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 18, + ACTIONS(3019), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241280,7 +241519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2867), 35, + ACTIONS(3017), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241316,7 +241555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18793] = 5, + [18795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241324,7 +241563,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 18, + ACTIONS(3023), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241343,8 +241582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2385), 35, - anon_sym_SEMI, + ACTIONS(3021), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241355,8 +241593,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, @@ -241378,8 +241618,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, - [18861] = 5, + [18863] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241387,7 +241626,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 18, + ACTIONS(2651), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241406,7 +241645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2879), 35, + ACTIONS(2649), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -241442,7 +241681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18929] = 5, + [18931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241450,7 +241689,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 18, + ACTIONS(2877), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241469,7 +241708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2923), 35, + ACTIONS(2875), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -241505,7 +241744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18997] = 5, + [18999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241513,7 +241752,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 18, + ACTIONS(2935), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241532,7 +241771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3264), 35, + ACTIONS(2933), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241543,10 +241783,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, @@ -241568,7 +241806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19065] = 5, + anon_sym_COLON_EQ, + [19067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241576,7 +241815,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 18, + ACTIONS(2849), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241595,7 +241834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2945), 35, + ACTIONS(2847), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -241631,7 +241870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19133] = 5, + [19135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241639,7 +241878,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 18, + ACTIONS(2627), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241658,8 +241897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2442), 35, - anon_sym_SEMI, + ACTIONS(2625), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241670,8 +241908,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, @@ -241693,8 +241933,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, - [19201] = 5, + [19203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241702,7 +241941,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(2631), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241721,7 +241960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 35, + ACTIONS(2629), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241757,7 +241996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19269] = 5, + [19271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241765,7 +242004,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 18, + ACTIONS(2639), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241784,8 +242023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3268), 35, - anon_sym_SEMI, + ACTIONS(2637), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241796,8 +242034,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, @@ -241819,8 +242059,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, - [19337] = 5, + [19339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241828,7 +242067,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 18, + ACTIONS(2845), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241847,7 +242086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, + ACTIONS(2843), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -241883,7 +242122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19405] = 5, + [19407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241891,7 +242130,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 18, + ACTIONS(2383), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241910,8 +242149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3292), 35, - anon_sym_SEMI, + ACTIONS(2381), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -241922,8 +242160,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, @@ -241945,19 +242185,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, - [19473] = 6, + [19475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 18, + ACTIONS(2881), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -241976,15 +242212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2171), 33, + ACTIONS(2879), 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, @@ -242018,7 +242256,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 18, + ACTIONS(2929), 18, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -242037,7 +242275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2875), 35, + ACTIONS(2927), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -242081,7 +242319,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 24, + ACTIONS(2669), 24, anon_sym_DOT, anon_sym_as, anon_sym_fn, @@ -242106,7 +242344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3348), 28, + ACTIONS(2667), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -242143,7 +242381,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2997), 24, + ACTIONS(2985), 24, anon_sym_DOT, anon_sym_as, anon_sym_fn, @@ -242168,7 +242406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2995), 28, + ACTIONS(2983), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -242205,7 +242443,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 24, + ACTIONS(3350), 24, anon_sym_DOT, anon_sym_as, anon_sym_fn, @@ -242230,7 +242468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2813), 28, + ACTIONS(3348), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -242267,7 +242505,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3051), 24, + ACTIONS(3049), 24, anon_sym_DOT, anon_sym_as, anon_sym_fn, @@ -242292,7 +242530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3049), 28, + ACTIONS(3047), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -242329,7 +242567,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3080), 24, + ACTIONS(3055), 24, anon_sym_DOT, anon_sym_as, anon_sym_fn, @@ -242354,7 +242592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3078), 28, + ACTIONS(3053), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -242388,30 +242626,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2065), 40, + ACTIONS(2061), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242457,30 +242695,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 40, + ACTIONS(2053), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242526,12 +242764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5155), 1, anon_sym_EQ, STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(5155), 14, + ACTIONS(5153), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -242546,7 +242784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2965), 17, + ACTIONS(3035), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -242564,7 +242802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 19, + ACTIONS(3033), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -242589,30 +242827,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 40, + ACTIONS(2057), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242658,16 +242896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2939), 1, - anon_sym_static, ACTIONS(2941), 1, + anon_sym_static, + ACTIONS(2943), 1, anon_sym_volatile, - ACTIONS(5159), 1, + ACTIONS(5157), 1, anon_sym_COLON, STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 22, + ACTIONS(4961), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -242690,7 +242928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4977), 25, + ACTIONS(4959), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -242723,7 +242961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5159), 1, anon_sym_else, STATE(2274), 1, sym_else_branch, @@ -242785,7 +243023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2081), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5159), 1, anon_sym_else, STATE(2275), 1, sym_else_branch, @@ -242841,73 +243079,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [20471] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2091), 1, - anon_sym_LBRACK, - STATE(2240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [20535] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2241), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2091), 23, + ACTIONS(5163), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -242931,7 +243110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(2093), 26, + ACTIONS(5161), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -242958,19 +243137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [20599] = 6, + [20535] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - STATE(2242), 2, + ACTIONS(5165), 1, + anon_sym_DOLLARelse, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 47, + ACTIONS(2105), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243018,76 +243197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [20665] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2243), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2095), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(2097), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [20729] = 5, + [20601] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - STATE(2244), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 48, + ACTIONS(2169), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243136,76 +243256,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [20793] = 5, - ACTIONS(311), 1, + [20665] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, - anon_sym_LBRACK, - STATE(2245), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5169), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_PIPE, + anon_sym_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_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(5167), 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, - [20857] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [20729] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, + ACTIONS(2185), 1, anon_sym_LBRACK, - STATE(2246), 2, + STATE(2337), 1, + sym_type_parameters, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 48, + ACTIONS(2187), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243247,163 +243369,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [20921] = 6, - ACTIONS(311), 1, + [20795] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(2369), 1, - sym_type_parameters, - STATE(2247), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5173), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_PIPE, + anon_sym_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, - sym_identifier, - anon_sym_AT_LBRACK, - [20987] = 27, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5153), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5177), 1, - anon_sym_LBRACK2, - ACTIONS(5179), 1, - anon_sym_AMP_AMP, - ACTIONS(5181), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5183), 1, - anon_sym_or, - ACTIONS(5189), 1, - anon_sym_AT_LBRACK, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(3506), 1, - sym_attribute, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(5171), 26, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5187), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5167), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5171), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5163), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, + anon_sym_fn, + anon_sym_struct, anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, - ACTIONS(5169), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [21095] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [20859] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2249), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(5193), 23, + ACTIONS(5177), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243427,7 +243466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5191), 26, + ACTIONS(5175), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243454,19 +243493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [21159] = 6, + [20923] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2137), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_DOLLARelse, - STATE(2250), 2, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 47, + ACTIONS(2147), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243508,25 +243545,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_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [21225] = 7, + [20987] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2939), 1, - anon_sym_static, ACTIONS(2941), 1, + anon_sym_static, + ACTIONS(2943), 1, anon_sym_volatile, - STATE(2251), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 22, + ACTIONS(4961), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -243549,7 +243587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4977), 25, + ACTIONS(4959), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243575,15 +243613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [21293] = 5, + [21055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2252), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(5199), 23, + ACTIONS(5181), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243607,7 +243645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5197), 26, + ACTIONS(5179), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243634,15 +243672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [21357] = 5, + [21119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2253), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(5203), 23, + ACTIONS(2145), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243666,7 +243704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5201), 26, + ACTIONS(2147), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243693,74 +243731,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [21421] = 5, - ACTIONS(3), 1, + [21183] = 27, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2254), 2, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, + anon_sym_LBRACK, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + ACTIONS(5151), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5185), 1, + anon_sym_as, + ACTIONS(5193), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, + anon_sym_DASH_DASH, + ACTIONS(5197), 1, + anon_sym_LBRACK2, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_or, + ACTIONS(5209), 1, + anon_sym_AT_LBRACK, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(3503), 1, + sym_attribute, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5207), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(5207), 23, - anon_sym_LBRACE, + ACTIONS(5187), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5191), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5183), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [21291] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2147), 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_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, + anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(5205), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [21355] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2167), 1, + anon_sym_LBRACK, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2169), 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_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_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [21485] = 5, + anon_sym_AT_LBRACK, + [21419] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2255), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 24, + ACTIONS(1802), 24, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -243785,7 +243963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5209), 25, + ACTIONS(5211), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243811,15 +243989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [21549] = 5, + [21483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2256), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(5213), 23, + ACTIONS(2167), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -243843,7 +244021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5211), 26, + ACTIONS(2169), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -243870,19 +244048,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, + [21547] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_LBRACE, + STATE(2256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2175), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, [21613] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2329), 1, + ACTIONS(2091), 1, anon_sym_LBRACK, - ACTIONS(5215), 1, + ACTIONS(5213), 1, anon_sym_DOLLARelse, STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 47, + ACTIONS(2093), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243935,12 +244173,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3338), 1, + ACTIONS(2821), 1, anon_sym_LBRACK, STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 47, + ACTIONS(2823), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [21742] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_LBRACK, + STATE(2259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3346), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [21805] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2371), 1, + anon_sym_LBRACK, + STATE(2260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2373), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [21868] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2455), 1, + anon_sym_LBRACK, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [21931] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, + anon_sym_LBRACK, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3262), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243988,85 +244458,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [21742] = 15, + [21994] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + STATE(2263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3084), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5151), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + anon_sym_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - STATE(2259), 2, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [22057] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(5167), 4, + ACTIONS(2722), 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(5215), 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, + [22120] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2173), 1, + anon_sym_LBRACK, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2175), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(5169), 8, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [22183] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(2266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2889), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 25, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [22246] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2875), 1, + anon_sym_LBRACK, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2877), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [21825] = 5, + [22309] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2463), 1, + ACTIONS(2847), 1, anon_sym_LBRACK, - STATE(2260), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 47, + ACTIONS(2849), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244114,17 +244806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [21888] = 5, + [22372] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2449), 1, + ACTIONS(2843), 1, anon_sym_LBRACK, - STATE(2261), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 47, + ACTIONS(2845), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244172,17 +244864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [21951] = 5, + [22435] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3264), 1, + ACTIONS(3039), 1, anon_sym_LBRACK, - STATE(2262), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 47, + ACTIONS(3041), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244230,17 +244922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22014] = 5, + [22498] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, + ACTIONS(2945), 1, anon_sym_LBRACK, - STATE(2263), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 47, + ACTIONS(2947), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244288,17 +244980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22077] = 5, + [22561] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, + ACTIONS(3029), 1, anon_sym_LBRACK, - STATE(2264), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 47, + ACTIONS(3031), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244346,17 +245038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22140] = 5, + [22624] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - STATE(2265), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 47, + ACTIONS(3080), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244404,17 +245096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22203] = 5, + [22687] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2929), 1, + ACTIONS(3338), 1, anon_sym_LBRACK, - STATE(2266), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 47, + ACTIONS(3340), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244462,17 +245154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22266] = 5, + [22750] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2911), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, - STATE(2267), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 47, + ACTIONS(3336), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244520,14 +245212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22329] = 5, + [22813] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(2863), 1, anon_sym_LBRACK, - STATE(2268), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, ACTIONS(2865), 47, @@ -244578,17 +245270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22392] = 5, + [22876] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2843), 1, + ACTIONS(3330), 1, anon_sym_LBRACK, - STATE(2269), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 47, + ACTIONS(3332), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244636,17 +245328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22455] = 5, + [22939] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3045), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - STATE(2270), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 47, + ACTIONS(3274), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244694,17 +245386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22518] = 5, + [23002] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(3254), 1, anon_sym_LBRACK, - STATE(2271), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 47, + ACTIONS(3256), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244752,17 +245444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22581] = 5, + [23065] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3041), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - STATE(2272), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 47, + ACTIONS(3065), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244810,17 +245502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22644] = 5, + [23128] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3072), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - STATE(2273), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 47, + ACTIONS(3027), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244868,17 +245560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22707] = 5, + [23191] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3322), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(2274), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 47, + ACTIONS(2973), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244926,17 +245618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22770] = 5, + [23254] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, - STATE(2275), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 47, + ACTIONS(2961), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244984,17 +245676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22833] = 5, + [23317] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3330), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2276), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 47, + ACTIONS(2453), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245042,17 +245734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22896] = 5, + [23380] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, + ACTIONS(2933), 1, anon_sym_LBRACK, - STATE(2277), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 47, + ACTIONS(2935), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245100,17 +245792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [22959] = 5, + [23443] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - STATE(2278), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 47, + ACTIONS(3061), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245158,94 +245850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23022] = 24, + [23506] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5179), 1, - anon_sym_AMP_AMP, - ACTIONS(5181), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5183), 1, - anon_sym_or, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5187), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2279), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5167), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5171), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5169), 8, - anon_sym_STAR, - anon_sym_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(2069), 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, - [23123] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_LBRACK, - STATE(2280), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 47, + ACTIONS(2651), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245293,17 +245908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23186] = 5, + [23569] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2975), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - STATE(2281), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 47, + ACTIONS(2647), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245351,17 +245966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23249] = 5, + [23632] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2999), 1, anon_sym_LBRACK, - STATE(2282), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 47, + ACTIONS(3001), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245409,75 +246024,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23312] = 5, - ACTIONS(311), 1, + [23695] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2445), 1, - anon_sym_LBRACK, - STATE(2283), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3053), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_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(3055), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [23375] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [23758] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2933), 1, + ACTIONS(2995), 1, anon_sym_LBRACK, - STATE(2284), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 47, + ACTIONS(2997), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245525,17 +246140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23438] = 5, + [23821] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2867), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - STATE(2285), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 47, + ACTIONS(2465), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245583,17 +246198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23501] = 5, + [23884] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - STATE(2286), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 47, + ACTIONS(2627), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245641,17 +246256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23564] = 5, + [23947] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2641), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(2287), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 47, + ACTIONS(2631), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245699,17 +246314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23627] = 5, + [24010] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3003), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(2288), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 47, + ACTIONS(2639), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245757,94 +246372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23690] = 24, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5179), 1, - anon_sym_AMP_AMP, - ACTIONS(5181), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5183), 1, - anon_sym_or, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5187), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2289), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5167), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5171), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5169), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2059), 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, - [23791] = 5, + [24073] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2391), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(2290), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 47, + ACTIONS(2383), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245892,17 +246430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23854] = 5, + [24136] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2371), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - STATE(2291), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 47, + ACTIONS(2881), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245950,17 +246488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23917] = 5, + [24199] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2625), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - STATE(2292), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 47, + ACTIONS(2929), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246008,17 +246546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [23980] = 5, + [24262] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2631), 1, + ACTIONS(2949), 1, anon_sym_LBRACK, - STATE(2293), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 47, + ACTIONS(2951), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246066,17 +246604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24043] = 5, + [24325] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2635), 1, + ACTIONS(2399), 1, anon_sym_LBRACK, - STATE(2294), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 47, + ACTIONS(2401), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246124,17 +246662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24106] = 5, + [24388] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2385), 1, + ACTIONS(3278), 1, anon_sym_LBRACK, - STATE(2295), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 47, + ACTIONS(3280), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246182,17 +246720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24169] = 5, + [24451] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2879), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - STATE(2296), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 47, + ACTIONS(2377), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246240,17 +246778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24232] = 5, + [24514] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, + ACTIONS(3284), 1, anon_sym_LBRACK, - STATE(2297), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 47, + ACTIONS(3286), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246298,17 +246836,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24295] = 5, + [24577] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 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(3049), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [24640] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(2298), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 47, + ACTIONS(2993), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246356,17 +246952,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24358] = 5, + [24703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2306), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2667), 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(2669), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [24766] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2431), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(2299), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 47, + ACTIONS(2989), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246414,75 +247068,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24421] = 5, - ACTIONS(311), 1, + [24829] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LBRACK, - STATE(2300), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2983), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_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(2985), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, + [24892] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3348), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3350), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [24484] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [24955] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2987), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - STATE(2301), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 47, + ACTIONS(2925), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246530,17 +247242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24547] = 5, + [25018] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3292), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - STATE(2302), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 47, + ACTIONS(2921), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246588,17 +247300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24610] = 5, + [25081] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3352), 1, + ACTIONS(2915), 1, anon_sym_LBRACK, - STATE(2303), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 47, + ACTIONS(2917), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246646,17 +247358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24673] = 5, + [25144] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2417), 1, + ACTIONS(2883), 1, anon_sym_LBRACK, - STATE(2304), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 47, + ACTIONS(2885), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246704,75 +247416,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24736] = 5, - ACTIONS(3), 1, + [25207] = 15, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2305), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2222), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5143), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5145), 1, + anon_sym_LBRACK, + ACTIONS(5147), 1, anon_sym_QMARK, + ACTIONS(5149), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, anon_sym_LBRACK2, - anon_sym_TILDE, + anon_sym_POUND_LBRACK, + STATE(2314), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5187), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(5217), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2049), 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_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [24799] = 5, + anon_sym_AT_LBRACK, + [25290] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3252), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(2306), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 47, + ACTIONS(2873), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246820,99 +247542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [24862] = 29, + [25353] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(2463), 1, + ACTIONS(2695), 1, anon_sym_LBRACK, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3808), 1, - anon_sym_fn, - ACTIONS(3810), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3814), 1, - anon_sym_QMARK, - ACTIONS(3816), 1, + ACTIONS(5217), 1, anon_sym_BANG, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3820), 1, - anon_sym_AMP, - ACTIONS(3822), 1, - anon_sym_shared, - ACTIONS(3824), 1, - anon_sym_map_LBRACK, - ACTIONS(3826), 1, - anon_sym_chan, - ACTIONS(3828), 1, - anon_sym_thread, - ACTIONS(3830), 1, - anon_sym_atomic, - ACTIONS(5219), 1, - anon_sym_LPAREN, - ACTIONS(5221), 1, - anon_sym_LT2, - STATE(3453), 1, - sym_plain_type, - STATE(3465), 1, - sym_signature, - STATE(3784), 1, - sym_generic_parameters, - STATE(4457), 1, - sym_reference_expression, - STATE(2307), 2, - sym_line_comment, - sym_block_comment, - STATE(2508), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2465), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3455), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [24973] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3316), 1, - anon_sym_LBRACK, - STATE(2308), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 47, + ACTIONS(2697), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246940,7 +247582,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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -246960,17 +247601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25036] = 5, + [25418] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - STATE(2309), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(3064), 47, + ACTIONS(3300), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247018,17 +247659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25099] = 5, + [25481] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3302), 1, anon_sym_LBRACK, - STATE(2310), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 47, + ACTIONS(3304), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247076,15 +247717,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25162] = 5, + [25544] = 24, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, + anon_sym_LBRACK, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + ACTIONS(5185), 1, + anon_sym_as, + ACTIONS(5193), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, + anon_sym_DASH_DASH, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_or, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5207), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5187), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5191), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_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(2075), 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, + [25645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2311), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(5225), 23, + ACTIONS(2226), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -247108,7 +247826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5223), 25, + ACTIONS(5219), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -247134,17 +247852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [25225] = 5, + [25708] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(3306), 1, anon_sym_LBRACK, - STATE(2312), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 47, + ACTIONS(3308), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247192,17 +247910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25288] = 5, + [25771] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3306), 1, + ACTIONS(3310), 1, anon_sym_LBRACK, - STATE(2313), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 47, + ACTIONS(3312), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247250,17 +247968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25351] = 5, + [25834] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(2314), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 47, + ACTIONS(3318), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247308,133 +248026,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25414] = 5, + [25897] = 14, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2839), 1, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_LBRACK, - STATE(2315), 2, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 47, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25477] = 5, + [25978] = 15, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2951), 1, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_LBRACK, - STATE(2316), 2, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 47, + ACTIONS(5187), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25540] = 5, + [26061] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2963), 1, + ACTIONS(3322), 1, anon_sym_LBRACK, - STATE(2317), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 47, + ACTIONS(3324), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247482,17 +248219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25603] = 5, + [26124] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, + ACTIONS(3071), 1, anon_sym_LBRACK, - STATE(2318), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 47, + ACTIONS(3073), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247540,17 +248277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25666] = 5, + [26187] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3334), 1, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(2319), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 47, + ACTIONS(3250), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247598,17 +248335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25729] = 5, + [26250] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, + ACTIONS(2427), 1, anon_sym_LBRACK, - STATE(2320), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 47, + ACTIONS(2429), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247656,23 +248393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25792] = 6, + [26313] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, + ACTIONS(3354), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - STATE(2321), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 46, + ACTIONS(3356), 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, @@ -247715,17 +248451,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25857] = 5, + [26376] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5225), 1, + anon_sym_volatile, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5223), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(5221), 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, + [26441] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2883), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, - STATE(2322), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 47, + ACTIONS(2397), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247773,17 +248568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25920] = 5, + [26504] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(2337), 1, anon_sym_LBRACK, - STATE(2323), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 47, + ACTIONS(2335), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247831,35 +248626,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [25983] = 14, + [26567] = 17, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2324), 2, + ACTIONS(5207), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2334), 2, sym_line_comment, sym_block_comment, - ACTIONS(5169), 8, + ACTIONS(5187), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5191), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5189), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -247868,47 +248678,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 29, + ACTIONS(2053), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_as, anon_sym_RBRACE, anon_sym___global, - 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_PIPE, - 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, - [26064] = 5, + [26654] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2433), 1, anon_sym_LBRACK, - STATE(2325), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 47, + ACTIONS(2435), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247956,75 +248754,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26127] = 5, - ACTIONS(3), 1, + [26717] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2326), 2, + ACTIONS(2469), 1, + anon_sym_LBRACK, + STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(3348), 24, - anon_sym_LBRACE, + ACTIONS(2471), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3350), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_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, - [26190] = 5, + anon_sym_AT_LBRACK, + [26780] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2959), 1, + ACTIONS(2839), 1, anon_sym_LBRACK, - STATE(2327), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 47, + ACTIONS(2841), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248072,133 +248870,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26253] = 5, - ACTIONS(3), 1, + [26843] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2328), 2, + ACTIONS(2653), 1, + anon_sym_LBRACK, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(3078), 24, - anon_sym_LBRACE, + ACTIONS(2655), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3080), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [26906] = 18, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, + anon_sym_LBRACK, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_fn, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5207), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5187), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5191), 6, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5189), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, - anon_sym_in, + anon_sym_BANGis, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [26316] = 5, - ACTIONS(3), 1, + anon_sym_AT_LBRACK, + [26995] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2329), 2, + ACTIONS(2657), 1, + anon_sym_LBRACK, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3049), 24, - anon_sym_LBRACE, + ACTIONS(2659), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3051), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [27058] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2817), 1, + anon_sym_LBRACK, + STATE(2341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2819), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_fn, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [26379] = 5, + anon_sym_AT_LBRACK, + [27121] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(2827), 1, anon_sym_LBRACK, - STATE(2330), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 47, + ACTIONS(2829), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248246,17 +249173,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26442] = 5, + [27184] = 29, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3082), 1, + ACTIONS(2175), 1, + anon_sym_DOT, + ACTIONS(2371), 1, anon_sym_LBRACK, - STATE(2331), 2, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_fn, + ACTIONS(3810), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3814), 1, + anon_sym_QMARK, + ACTIONS(3816), 1, + anon_sym_BANG, + ACTIONS(3818), 1, + anon_sym_LBRACK2, + ACTIONS(3820), 1, + anon_sym_AMP, + ACTIONS(3822), 1, + anon_sym_shared, + ACTIONS(3824), 1, + anon_sym_map_LBRACK, + ACTIONS(3826), 1, + anon_sym_chan, + ACTIONS(3828), 1, + anon_sym_thread, + ACTIONS(3830), 1, + anon_sym_atomic, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5229), 1, + anon_sym_LT2, + STATE(3452), 1, + sym_plain_type, + STATE(3454), 1, + sym_signature, + STATE(3772), 1, + sym_generic_parameters, + STATE(4454), 1, + sym_reference_expression, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 47, + STATE(2532), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2373), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3459), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [27295] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(2344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248304,18 +249313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26505] = 6, + [27358] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5231), 1, - anon_sym_volatile, - STATE(2332), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(5229), 22, + ACTIONS(5233), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -248337,7 +249345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5227), 25, + ACTIONS(5231), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -248363,133 +249371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [26570] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2333), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2995), 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(2997), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [26633] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2334), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2813), 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(2815), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [26696] = 5, + [27421] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2991), 1, + ACTIONS(3294), 1, anon_sym_LBRACK, - STATE(2335), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 47, + ACTIONS(3296), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248537,17 +249429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26759] = 5, + [27484] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2983), 1, + ACTIONS(3290), 1, anon_sym_LBRACK, - STATE(2336), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 47, + ACTIONS(3292), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248595,17 +249487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26822] = 5, + [27547] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2979), 1, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(2337), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 47, + ACTIONS(3270), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248653,122 +249545,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [26885] = 17, + [27610] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5187), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2338), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5167), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5171), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5169), 8, - anon_sym_STAR, - anon_sym_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(2055), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(5185), 1, anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + ACTIONS(5193), 1, anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, anon_sym_DASH_DASH, + ACTIONS(5199), 1, anon_sym_AMP_AMP, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [26972] = 18, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5179), 1, - anon_sym_AMP_AMP, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5187), 2, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5207), 2, anon_sym_in, anon_sym_BANGin, - STATE(2339), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(5167), 4, + ACTIONS(5187), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5171), 6, + ACTIONS(5191), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5169), 8, + ACTIONS(5189), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -248777,34 +249612,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 16, + ACTIONS(2065), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, sym_identifier, anon_sym_AT_LBRACK, - [27061] = 5, + [27711] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3298), 1, + ACTIONS(3264), 1, anon_sym_LBRACK, - STATE(2340), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 47, + ACTIONS(3266), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248852,17 +249680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27124] = 5, + [27774] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, - STATE(2341), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2335), 47, + ACTIONS(2977), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248910,17 +249738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27187] = 5, + [27837] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3242), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(2342), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 47, + ACTIONS(2981), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248968,17 +249796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27250] = 5, + [27900] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3025), 1, + ACTIONS(3005), 1, anon_sym_LBRACK, - STATE(2343), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 47, + ACTIONS(3007), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249026,17 +249854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27313] = 5, + [27963] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, + ACTIONS(3013), 1, anon_sym_LBRACK, - STATE(2344), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 47, + ACTIONS(3015), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249084,14 +249912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27376] = 5, + [28026] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(3017), 1, anon_sym_LBRACK, - STATE(2345), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, ACTIONS(3019), 47, @@ -249142,17 +249970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27439] = 5, + [28089] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(3021), 1, anon_sym_LBRACK, - STATE(2346), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 47, + ACTIONS(3023), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249200,17 +250028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27502] = 5, + [28152] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2999), 1, + ACTIONS(3238), 1, anon_sym_LBRACK, - STATE(2347), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 47, + ACTIONS(3240), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249258,75 +250086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27565] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2348), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2718), 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_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(5233), 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, - [27628] = 5, + [28215] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2971), 1, + ACTIONS(2955), 1, anon_sym_LBRACK, - STATE(2349), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 47, + ACTIONS(2957), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249374,17 +250144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27691] = 5, + [28278] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2919), 1, + ACTIONS(3033), 1, anon_sym_LBRACK, - STATE(2350), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 47, + ACTIONS(3035), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249432,85 +250202,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27754] = 5, + [28341] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3246), 1, + ACTIONS(2448), 1, anon_sym_LBRACK, - STATE(2351), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 47, + ACTIONS(2443), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27817] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3256), 1, - anon_sym_LBRACK, - STATE(2352), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3258), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2445), 35, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249522,9 +250240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -249546,19 +250261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [27880] = 5, + [28406] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3244), 1, anon_sym_LBRACK, - STATE(2353), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 47, + ACTIONS(3246), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249606,17 +250319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [27943] = 5, + [28469] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3284), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - STATE(2354), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 47, + ACTIONS(2967), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249664,17 +250377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28006] = 5, + [28532] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, - STATE(2355), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 47, + ACTIONS(3328), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249722,22 +250435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28069] = 5, + [28595] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2825), 1, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2371), 1, anon_sym_LBRACK, - STATE(2356), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 47, + ACTIONS(2373), 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, @@ -249780,17 +250494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28132] = 5, + [28660] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2821), 1, + ACTIONS(2185), 1, anon_sym_LBRACK, - STATE(2357), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 47, + ACTIONS(2187), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249838,17 +250552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28195] = 5, + [28723] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2915), 1, + ACTIONS(2891), 1, anon_sym_LBRACK, - STATE(2358), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 47, + ACTIONS(2893), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249896,22 +250610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28258] = 5, + [28786] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2817), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - STATE(2359), 2, + ACTIONS(3075), 1, + anon_sym_DOT, + STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 47, + ACTIONS(3045), 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, @@ -249954,17 +250669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28321] = 5, + [28851] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2907), 1, + ACTIONS(3067), 1, anon_sym_LBRACK, - STATE(2360), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 47, + ACTIONS(3069), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250012,17 +250727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28384] = 5, + [28914] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - STATE(2361), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 47, + ACTIONS(3045), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250070,40 +250785,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28447] = 15, + [28977] = 15, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2362), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - ACTIONS(5167), 4, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5169), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -250112,21 +250827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2079), 25, + ACTIONS(2053), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -250137,52 +250852,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [28530] = 5, + [29059] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_LBRACK, - STATE(2363), 2, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_BANG, + ACTIONS(5185), 1, + anon_sym_as, + ACTIONS(5193), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, + anon_sym_DASH_DASH, + ACTIONS(5203), 1, + anon_sym_or, + ACTIONS(5241), 1, + anon_sym_AMP_AMP, + ACTIONS(5243), 1, + anon_sym_PIPE_PIPE, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5245), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 47, + ACTIONS(5235), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5239), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [29159] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2169), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2167), 34, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [29221] = 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(2147), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2145), 34, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_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, @@ -250190,148 +251034,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [29283] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5249), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(5247), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, - anon_sym_AT_LBRACK, - [28593] = 6, - ACTIONS(311), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [29345] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2175), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(2463), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - STATE(2364), 2, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 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, + ACTIONS(2061), 9, 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_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2059), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_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, - [28658] = 6, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [29429] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2691), 1, + ACTIONS(5143), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, + ACTIONS(5147), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2365), 2, + ACTIONS(5185), 1, + anon_sym_as, + ACTIONS(5193), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, + anon_sym_DASH_DASH, + ACTIONS(5203), 1, + anon_sym_or, + ACTIONS(5241), 1, + anon_sym_AMP_AMP, + ACTIONS(5243), 1, + anon_sym_PIPE_PIPE, + STATE(2338), 1, + sym_or_block, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, + sym_type_parameters, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5245), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5239), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4132), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, + sym_identifier, + ACTIONS(5237), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [28723] = 5, + [29529] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(2366), 2, + ACTIONS(2335), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 47, + ACTIONS(2147), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -250346,7 +251276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -250372,141 +251301,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28786] = 6, - ACTIONS(311), 1, + [29593] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2442), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - STATE(2367), 2, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2439), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2057), 9, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, 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_COLON, anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [28851] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2653), 1, - anon_sym_LBRACK, - STATE(2368), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2655), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2055), 27, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_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, - [28914] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [29677] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - STATE(2369), 2, + ACTIONS(2335), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 47, + ACTIONS(2837), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -250521,7 +251402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -250547,171 +251427,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [28977] = 16, - ACTIONS(3), 1, + [29741] = 17, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5149), 1, anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - STATE(2480), 1, + STATE(2338), 1, sym_or_block, - STATE(2482), 1, + STATE(2340), 1, sym_argument_list, - STATE(4330), 1, + STATE(4346), 1, sym_type_parameters, - STATE(2370), 2, + ACTIONS(5141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5151), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5245), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 9, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5239), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2047), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_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, - [29061] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - STATE(2371), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2065), 9, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5237), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 27, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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_RBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [29145] = 14, + sym_identifier, + [29827] = 14, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2372), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(5253), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -250720,7 +251533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 28, + ACTIONS(2053), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250749,65 +251562,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [29225] = 24, + [29907] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - ACTIONS(5165), 1, + ACTIONS(5185), 1, anon_sym_as, - ACTIONS(5173), 1, + ACTIONS(5193), 1, anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, + ACTIONS(5195), 1, anon_sym_DASH_DASH, - ACTIONS(5183), 1, + ACTIONS(5203), 1, anon_sym_or, - ACTIONS(5259), 1, + ACTIONS(5241), 1, anon_sym_AMP_AMP, - ACTIONS(5261), 1, + ACTIONS(5243), 1, anon_sym_PIPE_PIPE, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, + ACTIONS(5205), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5263), 2, + ACTIONS(5245), 2, anon_sym_in, anon_sym_BANGin, - STATE(2373), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5257), 6, + ACTIONS(5239), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2069), 8, + ACTIONS(2065), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250816,7 +251629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(5253), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -250825,201 +251638,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [29325] = 15, - ACTIONS(311), 1, + [30007] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5259), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5261), 1, anon_sym_LBRACK2, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - STATE(2374), 2, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(2053), 9, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5253), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2055), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2051), 27, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [29407] = 17, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5255), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5257), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5253), 8, - anon_sym_STAR, - anon_sym_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(2055), 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_is, anon_sym_BANGis, - sym_identifier, - [29493] = 24, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [30091] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - ACTIONS(5165), 1, + ACTIONS(5185), 1, anon_sym_as, - ACTIONS(5173), 1, + ACTIONS(5193), 1, anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, + ACTIONS(5195), 1, anon_sym_DASH_DASH, - ACTIONS(5183), 1, + ACTIONS(5203), 1, anon_sym_or, - ACTIONS(5259), 1, + ACTIONS(5241), 1, anon_sym_AMP_AMP, - ACTIONS(5261), 1, + ACTIONS(5243), 1, anon_sym_PIPE_PIPE, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, + ACTIONS(5205), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5263), 2, + ACTIONS(5245), 2, anon_sym_in, anon_sym_BANGin, - STATE(2376), 2, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5257), 6, + ACTIONS(5239), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2059), 8, + ACTIONS(2075), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -251028,7 +251773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(5253), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -251037,52 +251782,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [29593] = 18, + [30191] = 18, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - ACTIONS(5259), 1, + ACTIONS(5241), 1, anon_sym_AMP_AMP, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5263), 2, + ACTIONS(5245), 2, anon_sym_in, anon_sym_BANGin, - STATE(2377), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5257), 6, + ACTIONS(5239), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5253), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -251091,7 +251836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 15, + ACTIONS(2053), 15, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -251107,15 +251852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, sym_identifier, - [29681] = 5, + [30279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2378), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(5229), 22, + ACTIONS(5223), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -251138,7 +251883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(5227), 25, + ACTIONS(5221), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -251164,74 +251909,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [29743] = 24, + [30341] = 15, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5183), 1, - anon_sym_or, - ACTIONS(5259), 1, - anon_sym_AMP_AMP, - ACTIONS(5261), 1, - anon_sym_PIPE_PIPE, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, + ACTIONS(5151), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2379), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(5235), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5257), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4136), 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(5253), 8, + ACTIONS(5237), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -251240,196 +251951,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [29843] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2097), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2095), 34, + ACTIONS(2049), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [29905] = 15, + sym_identifier, + [30423] = 27, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5147), 1, + ACTIONS(5145), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5147), 1, anon_sym_QMARK, - ACTIONS(5151), 1, + ACTIONS(5149), 1, anon_sym_BANG, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, + ACTIONS(5151), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5185), 1, + anon_sym_as, + ACTIONS(5193), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5195), 1, + anon_sym_DASH_DASH, + ACTIONS(5197), 1, + anon_sym_LBRACK2, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_or, + ACTIONS(5209), 1, + anon_sym_AT_LBRACK, + STATE(2338), 1, sym_or_block, - STATE(4345), 1, + STATE(2340), 1, + sym_argument_list, + STATE(3666), 1, + sym_attribute, + STATE(4346), 1, sym_type_parameters, - ACTIONS(5143), 2, + ACTIONS(5141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2381), 2, + ACTIONS(5205), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5207), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(5255), 4, + ACTIONS(5187), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5253), 8, - anon_sym_STAR, - anon_sym_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(2079), 24, + ACTIONS(5267), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + sym_identifier, + ACTIONS(5191), 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_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, - [29987] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2382), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5267), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5189), 8, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(5265), 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, - [30049] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [30528] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2383), 2, + ACTIONS(5269), 1, + anon_sym_else, + STATE(2450), 1, + sym_else_branch, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 13, + ACTIONS(2083), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -251443,12 +252080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2091), 34, + ACTIONS(2081), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -251470,193 +252106,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30111] = 24, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5183), 1, - anon_sym_or, - ACTIONS(5259), 1, - anon_sym_AMP_AMP, - ACTIONS(5261), 1, - anon_sym_PIPE_PIPE, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5153), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5255), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5257), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4138), 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(5253), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [30211] = 6, - ACTIONS(311), 1, + [30593] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, - anon_sym_LBRACK, - ACTIONS(2335), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2385), 2, + ACTIONS(5269), 1, + anon_sym_else, + STATE(2449), 1, + sym_else_branch, + STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2089), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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, - [30275] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - STATE(2386), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2061), 27, + ACTIONS(2087), 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, @@ -251664,6 +252151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -251674,34 +252162,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30359] = 6, + [30658] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2829), 1, - anon_sym_LBRACK, - ACTIONS(2335), 2, + ACTIONS(2335), 1, anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2387), 2, + ACTIONS(2835), 1, + anon_sym_LBRACK, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 44, + ACTIONS(2837), 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___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -251713,8 +252203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -251737,98 +252226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [30423] = 27, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_LPAREN, - ACTIONS(5147), 1, - anon_sym_LBRACK, - ACTIONS(5149), 1, - anon_sym_QMARK, - ACTIONS(5151), 1, - anon_sym_BANG, - ACTIONS(5153), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5165), 1, - anon_sym_as, - ACTIONS(5173), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5175), 1, - anon_sym_DASH_DASH, - ACTIONS(5177), 1, - anon_sym_LBRACK2, - ACTIONS(5179), 1, - anon_sym_AMP_AMP, - ACTIONS(5181), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5183), 1, - anon_sym_or, - ACTIONS(5189), 1, - anon_sym_AT_LBRACK, - STATE(2366), 1, - sym_argument_list, - STATE(2368), 1, - sym_or_block, - STATE(3675), 1, - sym_attribute, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5143), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5185), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5187), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2388), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5167), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5269), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(5171), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5169), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [30528] = 7, + [30720] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5271), 1, - anon_sym_else, - STATE(2462), 1, - sym_else_branch, - STATE(2389), 2, + anon_sym_DOLLARelse, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 13, + ACTIONS(2093), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -251842,7 +252250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2087), 31, + ACTIONS(2091), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251874,19 +252282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30593] = 7, + [30782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5271), 1, - anon_sym_else, - STATE(2451), 1, - sym_else_branch, - STATE(2390), 2, + ACTIONS(5273), 1, + anon_sym_DOLLARelse, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 13, + ACTIONS(2105), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -251900,7 +252306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2081), 31, + ACTIONS(2103), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251932,17 +252338,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30658] = 6, + [30844] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LBRACE, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2147), 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + [30906] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2453), 1, + STATE(2423), 1, sym_type_parameters, - STATE(2391), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2187), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -251956,7 +252418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2183), 31, + ACTIONS(2185), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251988,73 +252450,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30720] = 6, - ACTIONS(311), 1, + [30968] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(2335), 1, - anon_sym_LBRACE, - STATE(2392), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, + ACTIONS(5277), 1, + anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, + ACTIONS(5295), 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(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + STATE(2001), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [30782] = 6, + STATE(2396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [31081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5273), 1, - anon_sym_DOLLARelse, - STATE(2393), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 13, + ACTIONS(2651), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252068,7 +252553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2329), 31, + ACTIONS(2649), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252100,73 +252585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30844] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2335), 1, - anon_sym_LBRACE, - ACTIONS(2829), 1, - anon_sym_LBRACK, - STATE(2394), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2831), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [30906] = 6, + [31140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5275), 1, - anon_sym_DOLLARelse, - STATE(2395), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 13, + ACTIONS(2457), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252180,7 +252607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2137), 31, + ACTIONS(2455), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252212,15 +252639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [30968] = 5, + [31199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2396), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 13, + ACTIONS(2921), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252234,7 +252661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2879), 31, + ACTIONS(2919), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252266,15 +252693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31027] = 5, + [31258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2397), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 13, + ACTIONS(2917), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252288,7 +252715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2867), 31, + ACTIONS(2915), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252320,15 +252747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31086] = 5, + [31317] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2398), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 13, + ACTIONS(2885), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252342,7 +252769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2825), 31, + ACTIONS(2883), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252374,15 +252801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31145] = 5, + [31376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2399), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 13, + ACTIONS(2429), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252396,7 +252823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3037), 31, + ACTIONS(2427), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252428,15 +252855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31204] = 5, + [31435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2400), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 13, + ACTIONS(2873), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252450,7 +252877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2445), 31, + ACTIONS(2871), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252482,15 +252909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31263] = 5, + [31494] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2401), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 13, + ACTIONS(2397), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252504,7 +252931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2907), 31, + ACTIONS(2395), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252536,17 +252963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31322] = 6, + [31553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, - anon_sym_DOT, - STATE(2402), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 12, + ACTIONS(3356), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -252559,7 +252985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 31, + ACTIONS(3354), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252591,15 +253017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31383] = 5, + [31612] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2403), 2, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 13, + ACTIONS(2335), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252613,7 +253039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2875), 31, + ACTIONS(2337), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252645,15 +253071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31442] = 5, + [31671] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2404), 2, + ACTIONS(5307), 1, + anon_sym_BANG, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 13, + ACTIONS(2697), 12, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252662,12 +253090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2421), 31, + ACTIONS(2695), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252699,150 +253126,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31501] = 32, + [31732] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(3862), 1, anon_sym_COLON_EQ, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, ACTIONS(5279), 1, - anon_sym_LBRACE, - ACTIONS(5281), 1, anon_sym_COMMA, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - STATE(1995), 1, + ACTIONS(5309), 1, + anon_sym_LBRACE, + STATE(1139), 1, sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(3977), 1, + STATE(3980), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2405), 2, + STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [31614] = 5, + [31845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2406), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2913), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2911), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [31673] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2407), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 13, + ACTIONS(2435), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252856,7 +253229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3292), 31, + ACTIONS(2433), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252888,15 +253261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31732] = 5, + [31904] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2408), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 13, + ACTIONS(2373), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252910,7 +253283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2835), 31, + ACTIONS(2371), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252942,69 +253315,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31791] = 5, + [31963] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2409), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2989), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2987), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5311), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(2746), 1, + sym_block, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [31850] = 5, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [32076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2410), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 13, + ACTIONS(2997), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253018,7 +253418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2863), 31, + ACTIONS(2995), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253050,15 +253450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31909] = 5, + [32135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2411), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 13, + ACTIONS(3065), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253072,7 +253472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2171), 31, + ACTIONS(3063), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253104,15 +253504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [31968] = 5, + [32194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2412), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 13, + ACTIONS(2993), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253126,7 +253526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3045), 31, + ACTIONS(2991), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253158,69 +253558,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32027] = 5, + [32253] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2413), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2465), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2463), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5313), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(2556), 1, + sym_block, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [32086] = 5, + STATE(2415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [32366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2414), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 13, + ACTIONS(2893), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253234,7 +253661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2391), 31, + ACTIONS(2891), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253266,15 +253693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32145] = 5, + [32425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2415), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 13, + ACTIONS(2187), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253288,7 +253715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 31, + ACTIONS(2185), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253320,15 +253747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32204] = 5, + [32484] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2416), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 13, + ACTIONS(3001), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253342,7 +253769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3338), 31, + ACTIONS(2999), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253374,15 +253801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32263] = 5, + [32543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2417), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 13, + ACTIONS(2471), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253396,7 +253823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3268), 31, + ACTIONS(2469), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253428,15 +253855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32322] = 5, + [32602] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2418), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 13, + ACTIONS(2989), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253450,7 +253877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3316), 31, + ACTIONS(2987), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253482,96 +253909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32381] = 32, + [32661] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5309), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [32494] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2420), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 13, + ACTIONS(3061), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253585,7 +253931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3352), 31, + ACTIONS(3059), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253617,15 +253963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32553] = 5, + [32720] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2421), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 13, + ACTIONS(3027), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253639,7 +253985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3003), 31, + ACTIONS(3025), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253671,15 +254017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32612] = 5, + [32779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2422), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 13, + ACTIONS(2841), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253693,7 +254039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2843), 31, + ACTIONS(2839), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253725,15 +254071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32671] = 5, + [32838] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2423), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2335), 13, + ACTIONS(2655), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253747,7 +254093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2337), 31, + ACTIONS(2653), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253779,15 +254125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32730] = 5, + [32897] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2424), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 13, + ACTIONS(3324), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253801,7 +254147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2945), 31, + ACTIONS(3322), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253833,168 +254179,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [32789] = 32, + [32956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5311), 1, - anon_sym_LBRACE, - STATE(2238), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2425), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(2659), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(2657), 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(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [32902] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, anon_sym_CARET, - ACTIONS(5299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5301), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, anon_sym_or, - ACTIONS(5313), 1, - anon_sym_LBRACE, - STATE(1557), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, anon_sym_in, anon_sym_BANGin, - STATE(2426), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, [33015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -254003,7 +254241,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 13, + ACTIONS(3262), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254017,7 +254255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3072), 31, + ACTIONS(3260), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254057,7 +254295,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2819), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254071,7 +254309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2183), 31, + ACTIONS(2817), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254103,98 +254341,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33133] = 32, + [33133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2823), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2821), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5281), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5293), 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(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, anon_sym_CARET, - ACTIONS(5299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5301), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, anon_sym_or, - ACTIONS(5315), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, anon_sym_in, anon_sym_BANGin, - STATE(2429), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [33246] = 6, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [33192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5317), 1, - anon_sym_BANG, STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 12, + ACTIONS(3031), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254203,11 +254412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2691), 31, + ACTIONS(3029), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254239,96 +254449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33307] = 32, + [33251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5319), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(2749), 1, - sym_block, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [33420] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2432), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2433), 13, + ACTIONS(2829), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254342,7 +254471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2431), 31, + ACTIONS(2827), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254374,15 +254503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33479] = 5, + [33310] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2433), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 13, + ACTIONS(2833), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254396,7 +254525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3068), 31, + ACTIONS(2831), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254428,15 +254557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33538] = 5, + [33369] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2434), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 13, + ACTIONS(2889), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254450,7 +254579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2951), 31, + ACTIONS(2887), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254482,7 +254611,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33597] = 5, + [33428] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5279), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, + anon_sym_CARET, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5315), 1, + anon_sym_LBRACE, + STATE(1423), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [33541] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254490,7 +254700,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 13, + ACTIONS(2967), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254504,7 +254714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 31, + ACTIONS(2965), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254536,96 +254746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33656] = 32, + [33600] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5321), 1, - anon_sym_LBRACE, - STATE(2009), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [33769] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2437), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2459), 13, + ACTIONS(2877), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254639,7 +254768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2457), 31, + ACTIONS(2875), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254671,15 +254800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33828] = 5, + [33659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2438), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 13, + ACTIONS(2849), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254693,7 +254822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2991), 31, + ACTIONS(2847), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254725,15 +254854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33887] = 5, + [33718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2439), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 13, + ACTIONS(2845), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254747,7 +254876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3033), 31, + ACTIONS(2843), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254779,169 +254908,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [33946] = 32, + [33777] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(3862), 1, anon_sym_COLON_EQ, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5281), 1, + ACTIONS(5279), 1, anon_sym_COMMA, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5323), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(995), 1, + sym_block, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(2566), 1, - sym_block, - STATE(3977), 1, + STATE(3980), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2440), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [34059] = 32, + [33890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, + STATE(2440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3073), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3071), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5281), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5293), 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(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, anon_sym_CARET, - ACTIONS(5299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5301), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, anon_sym_or, - ACTIONS(5325), 1, - anon_sym_LBRACE, - STATE(1419), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [33949] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(3346), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(3344), 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(5285), 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, - [34172] = 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, + [34008] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254949,7 +255105,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 13, + ACTIONS(2947), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254963,7 +255119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3302), 31, + ACTIONS(2945), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -254995,15 +255151,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34231] = 5, + [34067] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5279), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, + anon_sym_CARET, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2238), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 13, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [34180] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255017,7 +255254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3246), 31, + ACTIONS(3284), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255049,15 +255286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34290] = 5, + [34239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2444), 2, + STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 13, + ACTIONS(3246), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255071,7 +255308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2923), 31, + ACTIONS(3244), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255103,15 +255340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34349] = 5, + [34298] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2445), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3064), 13, + ACTIONS(3080), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255125,7 +255362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3062), 31, + ACTIONS(3078), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255157,16 +255394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34408] = 5, + [34357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2446), 2, + ACTIONS(2177), 1, + anon_sym_DOT, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 13, - anon_sym_DOT, + ACTIONS(2373), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255179,7 +255417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2417), 31, + ACTIONS(2371), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255211,17 +255449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34467] = 6, + [34418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2175), 1, - anon_sym_DOT, - STATE(2447), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 12, + ACTIONS(2865), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255234,7 +255471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2463), 31, + ACTIONS(2863), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255266,15 +255503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34528] = 5, + [34477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2448), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 13, + ACTIONS(3340), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255288,7 +255525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2983), 31, + ACTIONS(3338), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255320,15 +255557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34587] = 5, + [34536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2449), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 13, + ACTIONS(3336), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255342,7 +255579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2471), 31, + ACTIONS(3334), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255374,15 +255611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34646] = 5, + [34595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2450), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 13, + ACTIONS(2957), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255396,7 +255633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 31, + ACTIONS(2955), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255428,69 +255665,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34705] = 5, + [34654] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2451), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3346), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3344), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5321), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(2550), 1, + sym_block, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [34764] = 5, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [34767] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 13, + ACTIONS(2401), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255504,7 +255768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2959), 31, + ACTIONS(2399), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255536,69 +255800,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34823] = 5, + [34826] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2855), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2853), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5323), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [34882] = 5, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [34939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2454), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 13, + ACTIONS(3312), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255612,7 +255903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2449), 31, + ACTIONS(3310), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255644,15 +255935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [34941] = 5, + [34998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2455), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 13, + ACTIONS(2383), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255666,7 +255957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3058), 31, + ACTIONS(2381), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255698,15 +255989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35000] = 5, + [35057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2456), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 13, + ACTIONS(3332), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255720,7 +256011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3256), 31, + ACTIONS(3330), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255752,15 +256043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35059] = 5, + [35116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2457), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 13, + ACTIONS(3300), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255774,7 +256065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3326), 31, + ACTIONS(3298), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255806,88 +256097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35118] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5327), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [35231] = 5, + [35175] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255895,7 +256105,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 13, + ACTIONS(3041), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -255909,7 +256119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3272), 31, + ACTIONS(3039), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -255941,61 +256151,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35290] = 5, + [35234] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3332), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3330), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5325), 1, + anon_sym_LBRACE, + STATE(2390), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [35349] = 5, + STATE(2460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [35347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256003,7 +256240,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 13, + ACTIONS(3274), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256017,7 +256254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3312), 31, + ACTIONS(3272), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256049,7 +256286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35408] = 5, + [35406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256057,7 +256294,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 13, + ACTIONS(3035), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256071,7 +256308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3322), 31, + ACTIONS(3033), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256103,7 +256340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35467] = 5, + [35465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256111,7 +256348,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 13, + ACTIONS(3256), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256125,7 +256362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3276), 31, + ACTIONS(3254), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256157,7 +256394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35526] = 5, + [35524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256165,7 +256402,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 13, + ACTIONS(3250), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256179,7 +256416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3334), 31, + ACTIONS(3248), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256211,96 +256448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35585] = 32, + [35583] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5329), 1, - anon_sym_LBRACE, - STATE(995), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [35698] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2466), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2931), 13, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256314,7 +256470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2929), 31, + ACTIONS(2173), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256346,15 +256502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35757] = 5, + [35642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2467), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 13, + ACTIONS(3045), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256368,7 +256524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3260), 31, + ACTIONS(3043), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256400,15 +256556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35816] = 5, + [35701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2468), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 13, + ACTIONS(2977), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256422,7 +256578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3306), 31, + ACTIONS(2975), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256454,15 +256610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35875] = 5, + [35760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2469), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 13, + ACTIONS(2981), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256476,7 +256632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2915), 31, + ACTIONS(2979), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256508,15 +256664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35934] = 5, + [35819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2470), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 13, + ACTIONS(2377), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256530,7 +256686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2883), 31, + ACTIONS(2375), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256562,96 +256718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [35993] = 32, + [35878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5331), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(2553), 1, - sym_block, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5291), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [36106] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2472), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 13, + ACTIONS(3069), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256665,7 +256740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2385), 31, + ACTIONS(3067), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256697,15 +256772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36165] = 5, + [35937] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2473), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 13, + ACTIONS(3007), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256719,7 +256794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3041), 31, + ACTIONS(3005), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256751,15 +256826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36224] = 5, + [35996] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2474), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 13, + ACTIONS(3015), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256773,7 +256848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3264), 31, + ACTIONS(3013), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256805,16 +256880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36283] = 5, + [36055] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2475), 2, + ACTIONS(3075), 1, + anon_sym_DOT, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 13, - anon_sym_DOT, + ACTIONS(3045), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256827,7 +256903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3252), 31, + ACTIONS(3043), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256859,15 +256935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36342] = 5, + [36116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2476), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 13, + ACTIONS(3019), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256881,7 +256957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2971), 31, + ACTIONS(3017), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256913,15 +256989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36401] = 5, + [36175] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2477), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 13, + ACTIONS(3023), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256935,7 +257011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3082), 31, + ACTIONS(3021), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -256967,15 +257043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36460] = 5, + [36234] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2478), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 13, + ACTIONS(2973), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256989,7 +257065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2999), 31, + ACTIONS(2971), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257021,15 +257097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36519] = 5, + [36293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2479), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 13, + ACTIONS(3328), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257043,7 +257119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3284), 31, + ACTIONS(3326), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257075,15 +257151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36578] = 5, + [36352] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2480), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 13, + ACTIONS(3280), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257097,7 +257173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2653), 31, + ACTIONS(3278), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257129,69 +257205,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36637] = 5, + [36411] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3015), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3013), 31, - anon_sym_SEMI, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5279), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + ACTIONS(5327), 1, + anon_sym_LBRACE, + STATE(1996), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [36696] = 5, + STATE(2479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [36524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2482), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 13, + ACTIONS(2951), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257205,7 +257308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2657), 31, + ACTIONS(2949), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257237,15 +257340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36755] = 5, + [36583] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2483), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 13, + ACTIONS(2961), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257259,7 +257362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3298), 31, + ACTIONS(2959), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257291,15 +257394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36814] = 5, + [36642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2484), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 13, + ACTIONS(2929), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257313,7 +257416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3242), 31, + ACTIONS(2927), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257345,15 +257448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36873] = 5, + [36701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 13, + ACTIONS(3304), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257367,7 +257470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3017), 31, + ACTIONS(3302), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257399,15 +257502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36932] = 5, + [36760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2486), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 13, + ACTIONS(3266), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257421,7 +257524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2635), 31, + ACTIONS(3264), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257453,15 +257556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [36991] = 5, + [36819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2487), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 13, + ACTIONS(3270), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257475,7 +257578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2631), 31, + ACTIONS(3268), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257507,15 +257610,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37050] = 5, + [36878] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5279), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, + anon_sym_CARET, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5329), 1, + anon_sym_LBRACE, + STATE(1279), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 13, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [36991] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2935), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257529,7 +257713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2645), 31, + ACTIONS(2933), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257561,15 +257745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37109] = 5, + [37050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2489), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 13, + ACTIONS(2453), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257583,7 +257767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2625), 31, + ACTIONS(2451), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257615,15 +257799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37168] = 5, + [37109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2490), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 13, + ACTIONS(3308), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257637,7 +257821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2371), 31, + ACTIONS(3306), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257657,108 +257841,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [37227] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5333), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, anon_sym_in, anon_sym_BANGin, - STATE(2491), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [37168] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2443), 1, + anon_sym_COLON, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(2441), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2445), 12, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(2448), 26, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 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, - [37340] = 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, + [37231] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2492), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 13, + ACTIONS(2881), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257772,7 +257931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2641), 31, + ACTIONS(2879), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257804,15 +257963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37399] = 5, + [37290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 13, + ACTIONS(2465), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257826,7 +257985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3021), 31, + ACTIONS(2463), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257858,15 +258017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37458] = 5, + [37349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2494), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 13, + ACTIONS(3292), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257880,7 +258039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2919), 31, + ACTIONS(3290), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -257912,39 +258071,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37517] = 7, + [37408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, - anon_sym_COLON, - STATE(2495), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2439), 12, + ACTIONS(2647), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2442), 26, + ACTIONS(2645), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -257952,6 +258107,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, @@ -257968,15 +258124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [37580] = 5, + anon_sym_DOT_DOT, + [37467] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2496), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 13, + ACTIONS(3296), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -257990,7 +258147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2933), 31, + ACTIONS(3294), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258022,15 +258179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37639] = 5, + [37526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 13, + ACTIONS(2639), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258044,7 +258201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 31, + ACTIONS(2637), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258076,15 +258233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37698] = 5, + [37585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2498), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 13, + ACTIONS(2631), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258098,7 +258255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3088), 31, + ACTIONS(2629), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258130,15 +258287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37757] = 5, + [37644] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2499), 2, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 13, + ACTIONS(3084), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258152,7 +258309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 31, + ACTIONS(3082), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258184,15 +258341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37816] = 5, + [37703] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2500), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 13, + ACTIONS(2925), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258206,7 +258363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2955), 31, + ACTIONS(2923), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258238,15 +258395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37875] = 5, + [37762] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2501), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 13, + ACTIONS(3240), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258260,7 +258417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3025), 31, + ACTIONS(3238), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258292,15 +258449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [37934] = 5, + [37821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2502), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 13, + ACTIONS(2627), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258314,7 +258471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2975), 31, + ACTIONS(2625), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258346,6 +258503,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, + [37880] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5279), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, + anon_sym_CARET, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5331), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, [37993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -258354,7 +258592,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 13, + ACTIONS(3318), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258368,7 +258606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2817), 31, + ACTIONS(3316), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -258400,64 +258638,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [38052] = 18, - ACTIONS(3), 1, + [38052] = 14, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5349), 1, - anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - STATE(2730), 1, + STATE(2621), 1, sym_or_block, - STATE(2731), 1, + STATE(2858), 1, sym_argument_list, - STATE(4340), 1, + STATE(4231), 1, sym_type_parameters, + ACTIONS(5333), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5345), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5339), 5, + ACTIONS(5337), 8, anon_sym_STAR, + anon_sym_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(2055), 6, + ACTIONS(2053), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(2061), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -258466,354 +258700,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [38136] = 29, + [38128] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(2065), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5349), 1, + anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5365), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, + anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5375), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + ACTIONS(5381), 1, + anon_sym_or, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5387), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5389), 2, anon_sym_in, anon_sym_BANGin, STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2063), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5353), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5357), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5363), 4, + ACTIONS(5361), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5355), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [38242] = 22, + [38236] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5365), 1, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, anon_sym_CARET, - STATE(2480), 1, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5361), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(2073), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 12, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [38334] = 23, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_fn, - ACTIONS(3810), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3814), 1, - anon_sym_QMARK, - ACTIONS(3816), 1, - anon_sym_BANG, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3820), 1, - anon_sym_AMP, - ACTIONS(3822), 1, - anon_sym_shared, - ACTIONS(3824), 1, - anon_sym_map_LBRACK, - ACTIONS(3826), 1, - anon_sym_chan, - ACTIONS(3828), 1, - anon_sym_thread, - ACTIONS(3830), 1, - anon_sym_atomic, - STATE(3457), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2507), 2, - sym_line_comment, - sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(877), 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(3455), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [38428] = 23, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_fn, - ACTIONS(3810), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3814), 1, - anon_sym_QMARK, - ACTIONS(3816), 1, - anon_sym_BANG, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3820), 1, - anon_sym_AMP, - ACTIONS(3822), 1, - anon_sym_shared, - ACTIONS(3824), 1, - anon_sym_map_LBRACK, - ACTIONS(3826), 1, - anon_sym_chan, - ACTIONS(3828), 1, - anon_sym_thread, - ACTIONS(3830), 1, - anon_sym_atomic, - STATE(3474), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2508), 2, - sym_line_comment, - sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(881), 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(3455), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [38522] = 20, + [38342] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, + ACTIONS(5401), 1, anon_sym_CARET, - STATE(2730), 1, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - STATE(2509), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 3, + ACTIONS(2049), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + STATE(2507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5339), 5, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 17, + ACTIONS(2047), 18, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -258823,343 +258922,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [38610] = 29, + anon_sym_DOT_DOT, + [38430] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2510), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2067), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [38716] = 23, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_fn, - ACTIONS(3810), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3814), 1, - anon_sym_QMARK, - ACTIONS(3816), 1, - anon_sym_BANG, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3820), 1, - anon_sym_AMP, - ACTIONS(3822), 1, - anon_sym_shared, - ACTIONS(3824), 1, - anon_sym_map_LBRACK, - ACTIONS(3826), 1, - anon_sym_chan, - ACTIONS(3828), 1, - anon_sym_thread, - ACTIONS(3830), 1, - anon_sym_atomic, - STATE(3471), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2511), 2, - sym_line_comment, - sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(821), 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(3455), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [38810] = 13, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5379), 1, - anon_sym_LPAREN, - ACTIONS(5381), 1, - anon_sym_LBRACK, - ACTIONS(5383), 1, - anon_sym_QMARK, - ACTIONS(5385), 1, - anon_sym_BANG, - STATE(2621), 1, - sym_or_block, - STATE(2858), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(5377), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5387), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2512), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 32, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2051), 11, anon_sym_SEMI, anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [38884] = 23, + anon_sym_DOT_DOT, + [38524] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2513), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 11, + ACTIONS(2051), 12, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, anon_sym_DOT_DOT, - [38978] = 16, + [38616] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - STATE(2730), 1, + ACTIONS(5401), 1, + anon_sym_CARET, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - STATE(2514), 2, + ACTIONS(2053), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(2065), 9, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, + ACTIONS(5395), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2063), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 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_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -259167,18 +259131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [39058] = 13, + anon_sym_DOT_DOT, + [38704] = 15, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, STATE(2621), 1, sym_or_block, @@ -259186,170 +259151,97 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2515), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 32, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [39132] = 24, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(5379), 1, - anon_sym_LPAREN, - ACTIONS(5381), 1, - anon_sym_LBRACK, - ACTIONS(5383), 1, - anon_sym_QMARK, - ACTIONS(5385), 1, - anon_sym_BANG, - ACTIONS(5389), 1, - anon_sym_as, - ACTIONS(5397), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5399), 1, - anon_sym_DASH_DASH, - ACTIONS(5401), 1, - anon_sym_AMP_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5405), 1, - anon_sym_or, - STATE(2621), 1, - sym_or_block, - STATE(2858), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(5377), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5387), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5407), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5409), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2516), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2069), 4, + ACTIONS(2049), 20, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5391), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5395), 6, + anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5393), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [39228] = 20, + 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, + [38782] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5365), 1, - anon_sym_CARET, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2079), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2517), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5357), 5, + ACTIONS(2053), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 18, + ACTIONS(2051), 19, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -259360,6 +259252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -259368,58 +259261,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [39316] = 13, - ACTIONS(311), 1, + [38866] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5371), 1, anon_sym_BANG, - STATE(2621), 1, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, sym_or_block, - STATE(2858), 1, + STATE(2731), 1, sym_argument_list, - STATE(4231), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5377), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5387), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2518), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(2065), 32, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(2061), 9, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2059), 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_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -259429,351 +259325,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [39390] = 30, + [38946] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2059), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, - ACTIONS(5411), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5417), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5421), 1, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_or, - STATE(2730), 1, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5413), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5429), 2, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2519), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(2057), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5415), 4, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2063), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5339), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [39498] = 30, - ACTIONS(3), 1, + [39052] = 24, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2069), 1, - anon_sym_DOT_DOT, ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5349), 1, - anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, ACTIONS(5411), 1, anon_sym_as, - ACTIONS(5417), 1, + ACTIONS(5415), 1, anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, + ACTIONS(5417), 1, anon_sym_DASH_DASH, - ACTIONS(5421), 1, + ACTIONS(5419), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5421), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5423), 1, anon_sym_or, - STATE(2730), 1, + STATE(2621), 1, sym_or_block, - STATE(2731), 1, + STATE(2858), 1, sym_argument_list, - STATE(4340), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(5413), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5345), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5425), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5429), 2, + ACTIONS(5427), 2, anon_sym_in, anon_sym_BANGin, - STATE(2520), 2, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + ACTIONS(3938), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5415), 4, + anon_sym_CARET, + ACTIONS(5413), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5339), 5, + ACTIONS(5337), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [39606] = 18, + [39148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - STATE(2521), 2, + ACTIONS(2337), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(5359), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2055), 5, + ACTIONS(2837), 12, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5357), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 19, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2835), 29, anon_sym_SEMI, anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [39690] = 20, + [39208] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(2075), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5349), 1, + anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5365), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, + anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5375), 1, + anon_sym_CARET, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, + anon_sym_or, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5365), 1, - anon_sym_CARET, - STATE(2480), 1, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(2055), 2, + ACTIONS(5359), 2, anon_sym_LT, anon_sym_GT, - STATE(2522), 2, + ACTIONS(5387), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5389), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2073), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5353), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5357), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5357), 5, + ACTIONS(5361), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5355), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 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, - [39778] = 16, - ACTIONS(3), 1, + [39316] = 13, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5349), 1, - anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - STATE(2730), 1, + STATE(2621), 1, sym_or_block, - STATE(2731), 1, + STATE(2858), 1, sym_argument_list, - STATE(4340), 1, + STATE(4231), 1, sym_type_parameters, - STATE(2523), 2, + ACTIONS(5333), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5345), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 9, + ACTIONS(2061), 32, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2047), 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_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -259783,237 +259667,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [39858] = 25, - ACTIONS(311), 1, + [39390] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(2463), 1, + ACTIONS(2180), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_fn, - ACTIONS(3810), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3814), 1, - anon_sym_QMARK, - ACTIONS(3816), 1, - anon_sym_BANG, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3820), 1, - anon_sym_AMP, - ACTIONS(3822), 1, - anon_sym_shared, - ACTIONS(3824), 1, - anon_sym_map_LBRACK, - ACTIONS(3826), 1, - anon_sym_chan, - ACTIONS(3828), 1, - anon_sym_thread, - ACTIONS(3830), 1, - anon_sym_atomic, - STATE(3453), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2524), 2, + ACTIONS(2371), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2519), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2465), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3455), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [39956] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, + ACTIONS(2175), 12, anon_sym_DOT, - ACTIONS(5337), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK, - ACTIONS(5345), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5347), 1, anon_sym_BANG, - ACTIONS(5349), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, - STATE(2730), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4340), 1, - sym_type_parameters, - ACTIONS(5413), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5429), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2525), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5341), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5373), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5415), 4, + ACTIONS(2173), 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, - ACTIONS(5339), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [40050] = 24, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [39452] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, STATE(2730), 1, sym_or_block, STATE(2731), 1, sym_argument_list, - STATE(4340), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5413), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5429), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2526), 2, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + ACTIONS(2057), 9, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(5415), 4, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2055), 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(5339), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 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, - [40146] = 7, + anon_sym_in, + anon_sym_BANGin, + [39532] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2463), 2, + ACTIONS(2337), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2527), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 12, + ACTIONS(2147), 12, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260026,16 +259810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2171), 27, + ACTIONS(2145), 29, anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, @@ -260054,20 +259840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [40208] = 18, + [39592] = 18, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5401), 1, + ACTIONS(5419), 1, anon_sym_AMP_AMP, STATE(2621), 1, sym_or_block, @@ -260075,31 +259861,31 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5409), 2, + ACTIONS(5427), 2, anon_sym_in, anon_sym_BANGin, - STATE(2528), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(5391), 4, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5395), 6, + ACTIONS(5413), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5393), 8, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -260108,7 +259894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 11, + ACTIONS(2053), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260120,65 +259906,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [40292] = 20, - ACTIONS(3), 1, + [39676] = 17, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5349), 1, - anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, - STATE(2730), 1, + STATE(2621), 1, sym_or_block, - STATE(2731), 1, + STATE(2858), 1, sym_argument_list, - STATE(4340), 1, + STATE(4231), 1, sym_type_parameters, - STATE(2529), 2, + ACTIONS(5333), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5345), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5427), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5339), 5, + anon_sym_CARET, + ACTIONS(5413), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5337), 8, anon_sym_STAR, + anon_sym_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(2077), 17, + ACTIONS(2053), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_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, @@ -260186,20 +259971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [40380] = 6, + [39758] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 2, + ACTIONS(2180), 2, anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2530), 2, + anon_sym_LBRACK, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 12, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260212,20 +259995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2091), 29, + anon_sym_DOT_DOT, + ACTIONS(2173), 28, anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -260241,37 +260024,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [40440] = 6, + anon_sym_COLON_EQ, + [39818] = 25, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2175), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LBRACK, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_fn, + ACTIONS(3810), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3814), 1, + anon_sym_QMARK, + ACTIONS(3816), 1, + anon_sym_BANG, + ACTIONS(3818), 1, + anon_sym_LBRACK2, + ACTIONS(3820), 1, + anon_sym_AMP, + ACTIONS(3822), 1, + anon_sym_shared, + ACTIONS(3824), 1, + anon_sym_map_LBRACK, + ACTIONS(3826), 1, + anon_sym_chan, + ACTIONS(3828), 1, + anon_sym_thread, + ACTIONS(3830), 1, + anon_sym_atomic, + STATE(3452), 1, + sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(2525), 2, + sym_line_comment, + sym_block_comment, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2373), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3459), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [39916] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, - anon_sym_LBRACE, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, anon_sym_LBRACK, - STATE(2531), 2, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_BANG, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 13, - anon_sym_DOT, + ACTIONS(2053), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2171), 28, - anon_sym_SEMI, + ACTIONS(2051), 23, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -260279,7 +260149,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260289,37 +260158,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [40500] = 24, + [39996] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5389), 1, + ACTIONS(5411), 1, anon_sym_as, - ACTIONS(5397), 1, + ACTIONS(5415), 1, anon_sym_PLUS_PLUS, - ACTIONS(5399), 1, + ACTIONS(5417), 1, anon_sym_DASH_DASH, - ACTIONS(5401), 1, + ACTIONS(5419), 1, anon_sym_AMP_AMP, - ACTIONS(5403), 1, + ACTIONS(5421), 1, anon_sym_PIPE_PIPE, - ACTIONS(5405), 1, + ACTIONS(5423), 1, anon_sym_or, STATE(2621), 1, sym_or_block, @@ -260327,39 +260193,39 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5407), 2, + ACTIONS(5425), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5409), 2, + ACTIONS(5427), 2, anon_sym_in, anon_sym_BANGin, - STATE(2532), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 4, + ACTIONS(3934), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5391), 4, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5395), 6, + ACTIONS(5413), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5393), 8, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -260368,70 +260234,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [40596] = 24, + [40092] = 13, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5389), 1, - anon_sym_as, - ACTIONS(5397), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5399), 1, - anon_sym_DASH_DASH, - ACTIONS(5401), 1, - anon_sym_AMP_AMP, - ACTIONS(5403), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5405), 1, - anon_sym_or, STATE(2621), 1, sym_or_block, STATE(2858), 1, sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5407), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5409), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2533), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 4, + ACTIONS(2057), 32, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5391), 4, + anon_sym_as, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5395), 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(5393), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [40166] = 23, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_fn, + ACTIONS(3810), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3814), 1, + anon_sym_QMARK, + ACTIONS(3816), 1, + anon_sym_BANG, + ACTIONS(3818), 1, + anon_sym_LBRACK2, + ACTIONS(3820), 1, + anon_sym_AMP, + ACTIONS(3822), 1, + anon_sym_shared, + ACTIONS(3824), 1, + anon_sym_map_LBRACK, + ACTIONS(3826), 1, + anon_sym_chan, + ACTIONS(3828), 1, + anon_sym_thread, + ACTIONS(3830), 1, + anon_sym_atomic, + STATE(3461), 1, + sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(2529), 2, + sym_line_comment, + sym_block_comment, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(821), 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(3459), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [40260] = 15, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5339), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_QMARK, + ACTIONS(5343), 1, + anon_sym_BANG, + STATE(2621), 1, + sym_or_block, + STATE(2858), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(5333), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5345), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2530), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5409), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -260440,30 +260408,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [40692] = 24, + ACTIONS(2053), 20, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [40338] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, - ACTIONS(5389), 1, + ACTIONS(5411), 1, anon_sym_as, - ACTIONS(5397), 1, + ACTIONS(5415), 1, anon_sym_PLUS_PLUS, - ACTIONS(5399), 1, + ACTIONS(5417), 1, anon_sym_DASH_DASH, - ACTIONS(5401), 1, + ACTIONS(5419), 1, anon_sym_AMP_AMP, - ACTIONS(5403), 1, + ACTIONS(5421), 1, anon_sym_PIPE_PIPE, - ACTIONS(5405), 1, + ACTIONS(5423), 1, anon_sym_or, STATE(2621), 1, sym_or_block, @@ -260471,39 +260460,39 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5407), 2, + ACTIONS(5425), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5409), 2, + ACTIONS(5427), 2, anon_sym_in, anon_sym_BANGin, - STATE(2534), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 4, + ACTIONS(2065), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5391), 4, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5395), 6, + ACTIONS(5413), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5393), 8, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -260512,60 +260501,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [40788] = 14, + [40434] = 23, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(3808), 1, + anon_sym_fn, + ACTIONS(3810), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3814), 1, + anon_sym_QMARK, + ACTIONS(3816), 1, + anon_sym_BANG, + ACTIONS(3818), 1, + anon_sym_LBRACK2, + ACTIONS(3820), 1, + anon_sym_AMP, + ACTIONS(3822), 1, + anon_sym_shared, + ACTIONS(3824), 1, + anon_sym_map_LBRACK, + ACTIONS(3826), 1, + anon_sym_chan, + ACTIONS(3828), 1, + anon_sym_thread, + ACTIONS(3830), 1, + anon_sym_atomic, + STATE(3478), 1, + sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(2532), 2, + sym_line_comment, + sym_block_comment, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(859), 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(3459), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [40528] = 23, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_fn, + ACTIONS(3810), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3814), 1, + anon_sym_QMARK, + ACTIONS(3816), 1, + anon_sym_BANG, + ACTIONS(3818), 1, + anon_sym_LBRACK2, + ACTIONS(3820), 1, + anon_sym_AMP, + ACTIONS(3822), 1, + anon_sym_shared, + ACTIONS(3824), 1, + anon_sym_map_LBRACK, + ACTIONS(3826), 1, + anon_sym_chan, + ACTIONS(3828), 1, + anon_sym_thread, + ACTIONS(3830), 1, + anon_sym_atomic, + STATE(3456), 1, + sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(2533), 2, + sym_line_comment, + sym_block_comment, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(855), 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(3459), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [40622] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5371), 1, anon_sym_BANG, - STATE(2621), 1, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, sym_or_block, - STATE(2858), 1, + STATE(2731), 1, sym_argument_list, - STATE(4231), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5377), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5387), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2535), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(5393), 8, - anon_sym_STAR, + ACTIONS(5357), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5355), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(2053), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(2051), 18, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -260574,18 +260709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [40864] = 15, + [40706] = 13, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, STATE(2621), 1, sym_or_block, @@ -260593,41 +260728,180 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2536), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(5391), 4, + ACTIONS(2053), 32, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5393), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 20, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [40780] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_BANG, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5375), 1, + anon_sym_CARET, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2053), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5353), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5357), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5355), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 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, + [40868] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2053), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_BANG, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5375), 1, + anon_sym_CARET, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + ACTIONS(5359), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5389), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5353), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5357), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5361), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5355), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 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, @@ -260635,52 +260909,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + [40962] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2053), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_BANG, + ACTIONS(5373), 1, + anon_sym_LBRACK2, + ACTIONS(5375), 1, + anon_sym_CARET, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + ACTIONS(5359), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5389), 2, anon_sym_in, anon_sym_BANGin, - [40942] = 17, + STATE(2538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5353), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5357), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5361), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5355), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [41058] = 24, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5339), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5343), 1, anon_sym_BANG, + ACTIONS(5411), 1, + anon_sym_as, + ACTIONS(5415), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + ACTIONS(5419), 1, + anon_sym_AMP_AMP, + ACTIONS(5421), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5423), 1, + anon_sym_or, STATE(2621), 1, sym_or_block, STATE(2858), 1, sym_argument_list, STATE(4231), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(5333), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, + ACTIONS(5345), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5409), 2, + ACTIONS(5425), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5427), 2, anon_sym_in, anon_sym_BANGin, - STATE(2537), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(5391), 4, + ACTIONS(2075), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5409), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5395), 6, + ACTIONS(5413), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5393), 8, + ACTIONS(5337), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -260689,119 +261053,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - 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, - [41024] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2337), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2831), 12, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2829), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [41084] = 16, + [41154] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5375), 1, + anon_sym_CARET, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, STATE(2730), 1, sym_or_block, STATE(2731), 1, sym_argument_list, - STATE(4340), 1, + STATE(4341), 1, sym_type_parameters, - STATE(2539), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2049), 3, anon_sym_LT, anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5353), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5357), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2061), 23, + ACTIONS(5355), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2047), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -260809,10 +261114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -260820,56 +261121,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [41164] = 15, - ACTIONS(311), 1, + [41242] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5379), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5381), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5383), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5385), 1, + ACTIONS(5259), 1, anon_sym_BANG, - STATE(2621), 1, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5435), 1, + anon_sym_CARET, + STATE(2424), 1, sym_or_block, - STATE(2858), 1, + STATE(2426), 1, sym_argument_list, - STATE(4231), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5377), 2, + ACTIONS(2049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5387), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2540), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(5391), 4, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(5393), 8, - anon_sym_STAR, + ACTIONS(5433), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5431), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2079), 20, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2047), 17, anon_sym_SEMI, anon_sym_as, - anon_sym_LT, - anon_sym_GT, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -260883,66 +261186,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [41242] = 21, + anon_sym_COLON_EQ, + [41327] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5297), 1, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - STATE(2480), 1, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5307), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2541), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(2063), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [41430] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5295), 1, + anon_sym_CARET, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(2049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 11, + ACTIONS(2047), 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, @@ -260950,91 +261325,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_COLON_EQ, - [41331] = 20, + [41515] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5437), 1, + ACTIONS(5295), 1, anon_sym_CARET, - STATE(2730), 1, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - STATE(2542), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2055), 3, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5431), 3, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5433), 5, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 16, + ACTIONS(2051), 10, anon_sym_as, anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [41418] = 7, + anon_sym_COLON_EQ, + [41606] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, - anon_sym_DOT_DOT, - STATE(2543), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2439), 12, + ACTIONS(2147), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -261047,8 +261418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2442), 24, + anon_sym_DOT_DOT, + ACTIONS(2145), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261056,6 +261430,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, @@ -261068,188 +261443,129 @@ 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, - [41479] = 30, + [41663] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2059), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5411), 1, - anon_sym_as, - ACTIONS(5417), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, - anon_sym_DASH_DASH, - ACTIONS(5425), 1, - anon_sym_or, - ACTIONS(5437), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5443), 1, - anon_sym_AMP_AMP, - ACTIONS(5445), 1, - anon_sym_PIPE_PIPE, - STATE(2730), 1, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2057), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5427), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5439), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5447), 2, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2544), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5441), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5433), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [41586] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2091), 1, - anon_sym_LBRACK, - STATE(2545), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2051), 11, anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [41643] = 19, + anon_sym_COLON_EQ, + [41752] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5297), 1, + ACTIONS(5295), 1, anon_sym_CARET, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2079), 2, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2546), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5285), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 17, + ACTIONS(2051), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261267,120 +261583,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [41728] = 28, + [41837] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(2443), 1, + anon_sym_DOT_DOT, + STATE(2548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2441), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2445), 12, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2448), 24, anon_sym_as, - ACTIONS(5293), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, anon_sym_CARET, - ACTIONS(5299), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5301), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, anon_sym_or, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, anon_sym_in, anon_sym_BANGin, - STATE(2547), 2, + [41898] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5437), 1, + anon_sym_else, + STATE(2665), 1, + sym_else_branch, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5283), 3, + ACTIONS(2083), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5287), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + anon_sym_DOT_DOT, + ACTIONS(2081), 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(5285), 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, - [41831] = 5, - ACTIONS(311), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [41959] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, - anon_sym_LBRACK, - STATE(2548), 2, + ACTIONS(5437), 1, + anon_sym_else, + STATE(2664), 1, + sym_else_branch, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2089), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2087), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -261388,101 +261741,167 @@ 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, - [41888] = 28, + [42020] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5349), 1, + anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5365), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, + anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5381), 1, + anon_sym_or, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5439), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5453), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5455), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5457), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - STATE(2480), 1, + ACTIONS(5461), 1, + anon_sym_DOT_DOT, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5387), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5459), 2, anon_sym_in, anon_sym_BANGin, - STATE(2549), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(2057), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5283), 3, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5449), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [41991] = 6, - ACTIONS(311), 1, + [42129] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(2335), 2, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2053), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 18, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2550), 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_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [42210] = 7, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(5463), 1, + anon_sym_else, + STATE(2675), 1, + sym_else_branch, + STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 39, + ACTIONS(2083), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261522,164 +261941,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [42050] = 30, + [42271] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_SEMI, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5449), 1, - anon_sym_COMMA, - ACTIONS(5461), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5463), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - ACTIONS(5465), 1, + ACTIONS(5471), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4067), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5457), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5467), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - STATE(2551), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, + ACTIONS(2073), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [42157] = 22, + [42374] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5297), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5307), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - STATE(2552), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 10, + ACTIONS(2051), 11, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, anon_sym_COLON_EQ, - [42248] = 7, + [42463] = 7, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(5469), 1, + ACTIONS(5463), 1, anon_sym_else, - STATE(2682), 1, + STATE(2676), 1, sym_else_branch, - STATE(2553), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, ACTIONS(2089), 39, @@ -261722,354 +262138,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [42309] = 6, - ACTIONS(311), 1, + [42524] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2829), 1, - anon_sym_LBRACK, - ACTIONS(2335), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2554), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2831), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2075), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, anon_sym_DOT, + ACTIONS(5349), 1, anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5365), 1, anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, + ACTIONS(5371), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5373), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5381), 1, anon_sym_or, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, + ACTIONS(5453), 1, + anon_sym_CARET, + ACTIONS(5455), 1, + anon_sym_AMP_AMP, + ACTIONS(5457), 1, + anon_sym_PIPE_PIPE, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + ACTIONS(2073), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5387), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5459), 2, anon_sym_in, anon_sym_BANGin, - [42368] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2555), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 13, - anon_sym_DOT, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, + ACTIONS(5445), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2095), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5449), 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(5443), 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, - [42425] = 19, + [42631] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(3862), 1, + anon_sym_LBRACE, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5297), 1, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, - STATE(2480), 1, + ACTIONS(5297), 1, + anon_sym_AMP_AMP, + ACTIONS(5299), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5475), 1, + anon_sym_COMMA, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(3907), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2055), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2556), 2, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5285), 5, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [42510] = 30, + [42738] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, - anon_sym_CARET, - ACTIONS(5299), 1, - anon_sym_AMP_AMP, ACTIONS(5301), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, anon_sym_or, + ACTIONS(5435), 1, + anon_sym_CARET, + ACTIONS(5469), 1, + anon_sym_AMP_AMP, ACTIONS(5471), 1, - anon_sym_COMMA, - STATE(2480), 1, + anon_sym_PIPE_PIPE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(3905), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5465), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - STATE(2557), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(3908), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [42617] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2091), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [42674] = 17, + [42841] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - STATE(2480), 1, + ACTIONS(5435), 1, + anon_sym_CARET, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(2053), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2559), 2, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(5287), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2055), 5, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - ACTIONS(5285), 5, + ACTIONS(5433), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 18, + ACTIONS(2051), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -262077,7 +262425,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, @@ -262086,532 +262433,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [42755] = 28, - ACTIONS(3), 1, + [42926] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5461), 1, - anon_sym_CARET, - ACTIONS(5463), 1, - anon_sym_AMP_AMP, - ACTIONS(5465), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5467), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2560), 2, + ACTIONS(2335), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 3, + ACTIONS(2837), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5451), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5455), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5459), 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(5453), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [42858] = 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, + [42985] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2069), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5411), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5417), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5425), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5437), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5443), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - ACTIONS(5445), 1, + ACTIONS(5471), 1, anon_sym_PIPE_PIPE, - STATE(2730), 1, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5427), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5439), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5447), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - STATE(2561), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 3, + ACTIONS(2063), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5441), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5433), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [42965] = 22, + [43088] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5461), 1, - anon_sym_CARET, - ACTIONS(5463), 1, - anon_sym_AMP_AMP, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5467), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2562), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(2053), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 10, + ACTIONS(2051), 18, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_COLON_EQ, - [43056] = 21, - ACTIONS(3), 1, + [43169] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5461), 1, - anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5467), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2563), 2, + ACTIONS(2335), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, + ACTIONS(2147), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5455), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5459), 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(5453), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 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_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [43145] = 31, + anon_sym_in, + anon_sym_BANGin, + [43228] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(3862), 1, + anon_sym_SEMI, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5411), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5417), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5425), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5437), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5443), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - ACTIONS(5445), 1, + ACTIONS(5471), 1, anon_sym_PIPE_PIPE, - ACTIONS(5473), 1, - anon_sym_LBRACE, - ACTIONS(5475), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5477), 1, - anon_sym_DOT_DOT, - STATE(2730), 1, + anon_sym_COMMA, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4066), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5427), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5439), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5447), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - STATE(2564), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 3, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5441), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5433), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [43254] = 7, + [43335] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5479), 1, - anon_sym_else, - STATE(2663), 1, - sym_else_branch, - STATE(2565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2083), 13, + ACTIONS(5347), 1, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5351), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, anon_sym_QMARK, + ACTIONS(5371), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5373), 1, anon_sym_LBRACK2, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + STATE(2730), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4341), 1, + sym_type_parameters, + STATE(2566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5445), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2081), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [43315] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5479), 1, - anon_sym_else, - STATE(2662), 1, - sym_else_branch, - STATE(2566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2089), 13, - anon_sym_DOT, + ACTIONS(2053), 6, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2087), 27, + ACTIONS(2051), 17, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [43376] = 20, + [43418] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5437), 1, + ACTIONS(5453), 1, anon_sym_CARET, STATE(2730), 1, sym_or_block, STATE(2731), 1, sym_argument_list, - STATE(4340), 1, + STATE(4341), 1, sym_type_parameters, STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 3, + ACTIONS(2053), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(5431), 3, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5433), 5, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 16, + ACTIONS(2051), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -262628,367 +262887,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [43463] = 28, + [43505] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(2053), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5461), 1, + ACTIONS(5453), 1, anon_sym_CARET, - ACTIONS(5463), 1, - anon_sym_AMP_AMP, - ACTIONS(5465), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5457), 2, + ACTIONS(5447), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5467), 2, + ACTIONS(5459), 2, anon_sym_in, anon_sym_BANGin, STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5451), 3, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, + ACTIONS(5449), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [43566] = 17, + ACTIONS(2051), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [43598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5455), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2055), 5, + ACTIONS(2169), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5453), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 18, - anon_sym_SEMI, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2167), 29, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [43647] = 24, + [43655] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5437), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5443), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - STATE(2730), 1, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5439), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5447), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 3, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5435), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5441), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5433), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 9, + ACTIONS(2051), 10, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [43742] = 23, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [43746] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT_DOT, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, - anon_sym_QMARK, - ACTIONS(5347), 1, - anon_sym_BANG, - ACTIONS(5349), 1, - anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5437), 1, - anon_sym_CARET, - STATE(2730), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4340), 1, - sym_type_parameters, - ACTIONS(5439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5447), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 3, + ACTIONS(2169), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5435), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5441), 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(5433), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [43835] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5461), 1, anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(2079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5451), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5455), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5453), 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(2077), 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_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [43920] = 7, + [43803] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2081), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(5469), 1, - anon_sym_else, - STATE(2675), 1, - sym_else_branch, - STATE(2573), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 39, + ACTIONS(2147), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -263024,206 +263176,293 @@ 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, - [43981] = 28, + [43860] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(2053), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5461), 1, + ACTIONS(5453), 1, anon_sym_CARET, - ACTIONS(5463), 1, + ACTIONS(5455), 1, anon_sym_AMP_AMP, - ACTIONS(5465), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5457), 2, + ACTIONS(5447), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5467), 2, + ACTIONS(5459), 2, anon_sym_in, anon_sym_BANGin, - STATE(2574), 2, + STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(2057), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5451), 3, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, + ACTIONS(5449), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44084] = 18, + ACTIONS(2051), 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, + [43955] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, + ACTIONS(2065), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5349), 1, + anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5365), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, + anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, + ACTIONS(5381), 1, + anon_sym_or, + ACTIONS(5383), 1, anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, + ACTIONS(5453), 1, + anon_sym_CARET, + ACTIONS(5455), 1, + anon_sym_AMP_AMP, + ACTIONS(5457), 1, + anon_sym_PIPE_PIPE, STATE(2730), 1, sym_or_block, STATE(2731), 1, sym_argument_list, - STATE(4340), 1, + STATE(4341), 1, sym_type_parameters, - STATE(2575), 2, + ACTIONS(2063), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5387), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5459), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(5435), 3, + ACTIONS(5441), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5433), 5, + ACTIONS(5449), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2055), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(2061), 17, + [44062] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, 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, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5295), 1, anon_sym_CARET, + ACTIONS(5297), 1, anon_sym_AMP_AMP, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, anon_sym_or, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - [44167] = 19, + STATE(2575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2073), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5281), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5285), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5289), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5283), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [44165] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, anon_sym_POUND_LBRACK, - ACTIONS(5461), 1, + ACTIONS(5453), 1, anon_sym_CARET, - STATE(2480), 1, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(2055), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, + ACTIONS(2049), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5441), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5445), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5453), 5, + ACTIONS(5443), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 17, - anon_sym_SEMI, + ACTIONS(2047), 16, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -263233,167 +263472,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, [44252] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5491), 1, + ACTIONS(5489), 1, anon_sym_QMARK, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - STATE(2020), 1, + STATE(2014), 1, sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44356] = 28, + [44356] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5349), 1, + anon_sym_as, + ACTIONS(5351), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5365), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5367), 1, + anon_sym_DASH_DASH, + ACTIONS(5369), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5371), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5373), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5375), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5377), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5379), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, + ACTIONS(5381), 1, anon_sym_or, - STATE(2480), 1, + ACTIONS(5383), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5499), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5501), 1, + anon_sym_DOT_DOT, + STATE(2730), 1, sym_or_block, - STATE(2482), 1, + STATE(2731), 1, sym_argument_list, - STATE(4330), 1, + STATE(4341), 1, sym_type_parameters, - ACTIONS(2071), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5307), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5501), 2, + ACTIONS(5387), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5389), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5353), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5357), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5361), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5355), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44458] = 6, + [44462] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2763), 1, - sym_type_parameters, + ACTIONS(5503), 1, + anon_sym_LBRACE, + ACTIONS(5505), 1, + anon_sym_COMMA, + STATE(3920), 1, + aux_sym_match_expression_list_repeat1, STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(3035), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -263407,10 +263651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2183), 27, + ACTIONS(3033), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263435,680 +263677,700 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [44516] = 30, + [44524] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - ACTIONS(5503), 1, - anon_sym_RBRACK, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - STATE(2480), 1, + ACTIONS(5301), 1, + anon_sym_or, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(2067), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, + ACTIONS(5507), 2, + anon_sym_is, + anon_sym_BANGis, STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44622] = 7, + [44626] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_LBRACE, - STATE(2581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2173), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2171), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5493), 1, anon_sym_AMP_AMP, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5509), 1, + anon_sym_LBRACE, + ACTIONS(5511), 1, + anon_sym_QMARK, + STATE(1561), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [44682] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_LBRACE, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(3921), 1, - aux_sym_match_expression_list_repeat1, - STATE(2582), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 13, - anon_sym_DOT, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, + ACTIONS(5483), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2963), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5487), 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(5481), 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, - [44744] = 28, + [44730] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - STATE(2480), 1, + ACTIONS(5513), 1, + anon_sym_RBRACK, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5289), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5511), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2583), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44846] = 30, + [44836] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5335), 1, - anon_sym_DOT, - ACTIONS(5337), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5343), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, - anon_sym_QMARK, - ACTIONS(5347), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5349), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5351), 1, - anon_sym_QMARK_DOT, - ACTIONS(5353), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5375), 1, - anon_sym_CARET, - ACTIONS(5411), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5417), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5419), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5421), 1, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, + anon_sym_CARET, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_or, - ACTIONS(5513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5515), 1, - anon_sym_DOT_DOT, - STATE(2730), 1, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_QMARK, + STATE(1430), 1, + sym_block, + STATE(2424), 1, sym_or_block, - STATE(2731), 1, + STATE(2426), 1, sym_argument_list, - STATE(4340), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5413), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5429), 2, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2584), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(5341), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5373), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5415), 4, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5339), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44952] = 29, + [44940] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5517), 1, - anon_sym_LBRACE, - ACTIONS(5519), 1, - anon_sym_QMARK, - STATE(1433), 1, - sym_block, - STATE(2480), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5521), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2585), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [45046] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2091), 1, + anon_sym_LBRACK, + ACTIONS(5523), 1, + anon_sym_DOLLARelse, + STATE(2585), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2093), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45056] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [45104] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5521), 1, + ACTIONS(5525), 1, anon_sym_LBRACE, - ACTIONS(5523), 1, + ACTIONS(5527), 1, anon_sym_QMARK, STATE(999), 1, sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45160] = 28, + [45208] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5461), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5463), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - ACTIONS(5465), 1, + ACTIONS(5471), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2071), 2, + ACTIONS(2067), 2, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5457), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5467), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5501), 2, + ACTIONS(5507), 2, anon_sym_is, anon_sym_BANGis, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45262] = 30, + [45310] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, + ACTIONS(5515), 1, anon_sym_DOT_DOT, - ACTIONS(5525), 1, + ACTIONS(5529), 1, anon_sym_RBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45368] = 6, - ACTIONS(311), 1, + [45416] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(2857), 1, + STATE(2764), 1, sym_type_parameters, STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2187), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2185), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -264120,92 +264382,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [45426] = 29, + [45474] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5333), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5527), 1, + ACTIONS(5531), 1, anon_sym_QMARK, - STATE(2395), 1, - sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(2591), 1, + sym_block, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2590), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45530] = 6, + [45578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, + ACTIONS(5533), 1, anon_sym_DOLLARelse, STATE(2591), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 13, + ACTIONS(2105), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264219,7 +264481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2137), 27, + ACTIONS(2103), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -264247,456 +264509,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [45588] = 30, + [45636] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, + ACTIONS(5515), 1, anon_sym_DOT_DOT, - ACTIONS(5531), 1, + ACTIONS(5535), 1, anon_sym_RBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45694] = 30, + [45742] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, + ACTIONS(5515), 1, anon_sym_DOT_DOT, - ACTIONS(5533), 1, + ACTIONS(5537), 1, anon_sym_RBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45800] = 30, + [45848] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5313), 1, + anon_sym_LBRACE, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5535), 1, - anon_sym_RBRACK, - STATE(2480), 1, + ACTIONS(5539), 1, + anon_sym_QMARK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(2611), 1, + sym_block, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45906] = 30, + [45952] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5062), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5064), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5066), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5068), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5537), 1, - anon_sym_RBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, + ACTIONS(5070), 1, + anon_sym_or, + ACTIONS(5543), 1, + anon_sym_COLON, + ACTIONS(5545), 1, + anon_sym_CARET, + ACTIONS(5547), 1, + anon_sym_LT_DASH, + STATE(2072), 1, sym_argument_list, - STATE(4330), 1, + STATE(2073), 1, + sym_or_block, + STATE(4173), 1, sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5038), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5058), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5072), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5042), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5056), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5541), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46012] = 29, + [46056] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5323), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - ACTIONS(5497), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5539), 1, - anon_sym_QMARK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(2591), 1, - sym_block, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5126), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(5551), 1, + anon_sym_QMARK, + ACTIONS(5549), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(3045), 10, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(3043), 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(5483), 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, - [46116] = 30, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [46118] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5325), 1, + anon_sym_LBRACE, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5541), 1, - anon_sym_RBRACK, - STATE(2480), 1, + ACTIONS(5553), 1, + anon_sym_QMARK, + STATE(2393), 1, + sym_block, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -264707,613 +264945,565 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5461), 1, + ACTIONS(5435), 1, anon_sym_CARET, - ACTIONS(5463), 1, + ACTIONS(5469), 1, anon_sym_AMP_AMP, - ACTIONS(5465), 1, + ACTIONS(5471), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2071), 2, + ACTIONS(2067), 2, anon_sym_COMMA, anon_sym_COLON_EQ, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5457), 2, + ACTIONS(5465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5467), 2, + ACTIONS(5473), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5543), 2, + ACTIONS(5555), 2, anon_sym_is, anon_sym_BANGis, STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(5451), 3, + ACTIONS(5429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5455), 3, + ACTIONS(5433), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5459), 4, + ACTIONS(5467), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5453), 5, + ACTIONS(5431), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46324] = 29, + [46324] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - ACTIONS(5497), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5545), 1, - anon_sym_LBRACE, - ACTIONS(5547), 1, - anon_sym_QMARK, - STATE(1296), 1, - sym_block, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2599), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(2837), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + anon_sym_DOT_DOT, + ACTIONS(2835), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 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, - [46428] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [46380] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5321), 1, + ACTIONS(5311), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5549), 1, + ACTIONS(5557), 1, anon_sym_QMARK, - STATE(2014), 1, - sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(2918), 1, + sym_block, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46532] = 30, + [46484] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5551), 1, - anon_sym_RBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(5559), 1, + anon_sym_DOLLARelse, STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2093), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + anon_sym_DOT_DOT, + ACTIONS(2091), 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(5357), 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, - [46638] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [46542] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5553), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - ACTIONS(5555), 1, + ACTIONS(5563), 1, anon_sym_QMARK, - STATE(1147), 1, + STATE(1157), 1, sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46742] = 29, + [46646] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5319), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5557), 1, - anon_sym_QMARK, - STATE(2480), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5565), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(2922), 1, - sym_block, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46846] = 29, + [46752] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5331), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5559), 1, - anon_sym_QMARK, - STATE(2480), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5567), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(2620), 1, - sym_block, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46950] = 30, + [46858] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, + ACTIONS(5251), 1, anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, + ACTIONS(5263), 1, anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, + ACTIONS(5515), 1, anon_sym_DOT_DOT, - ACTIONS(5561), 1, + ACTIONS(5569), 1, anon_sym_RBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47056] = 6, + [46964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5563), 1, - anon_sym_DOLLARelse, STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 13, + ACTIONS(2147), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265327,7 +265517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2329), 27, + ACTIONS(2145), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -265355,71 +265545,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47114] = 6, - ACTIONS(311), 1, + anon_sym_COLON_EQ, + [47020] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5571), 1, + anon_sym_RBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5395), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5399), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [47126] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, + anon_sym_CARET, + ACTIONS(5493), 1, anon_sym_AMP_AMP, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5573), 1, + anon_sym_LBRACE, + ACTIONS(5575), 1, + anon_sym_QMARK, + STATE(261), 1, + sym_block, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - [47172] = 6, + STATE(2608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5479), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47230] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2329), 1, + ACTIONS(2185), 1, anon_sym_LBRACK, - ACTIONS(5565), 1, - anon_sym_DOLLARelse, - STATE(2608), 2, + STATE(2857), 1, + sym_type_parameters, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 39, + ACTIONS(2187), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -265459,495 +265749,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47230] = 30, + [47288] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5567), 1, - anon_sym_RBRACK, - STATE(2480), 1, + ACTIONS(5577), 1, + anon_sym_LBRACE, + ACTIONS(5579), 1, + anon_sym_QMARK, + STATE(2241), 1, + sym_block, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2609), 2, + STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47392] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2103), 1, + anon_sym_LBRACK, + ACTIONS(5581), 1, + anon_sym_DOLLARelse, + STATE(2611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2105), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47336] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [47450] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5569), 1, + ACTIONS(5583), 1, anon_sym_LBRACE, - ACTIONS(5571), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - STATE(1578), 1, + STATE(1294), 1, sym_block, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2610), 2, + STATE(2612), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47440] = 29, + [47554] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5573), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_QMARK, - STATE(270), 1, - sym_block, - STATE(2480), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5587), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2611), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47544] = 30, + [47660] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5577), 1, - anon_sym_RBRACK, - STATE(2480), 1, + ACTIONS(5589), 1, + anon_sym_QMARK, + STATE(2012), 1, + sym_block, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2612), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47650] = 28, + [47764] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(3908), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2613), 2, + ACTIONS(5591), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2615), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47752] = 29, + [47866] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5245), 1, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5579), 1, - anon_sym_LBRACE, - ACTIONS(5581), 1, - anon_sym_QMARK, - STATE(2250), 1, - sym_block, - STATE(2480), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2614), 2, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47856] = 8, + [47972] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5585), 1, - anon_sym_QMARK, - ACTIONS(5583), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2615), 2, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2371), 1, + anon_sym_LBRACE, + STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 10, + ACTIONS(2175), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 27, + ACTIONS(2173), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -265964,96 +266305,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [47918] = 5, - ACTIONS(3), 1, + [48032] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2616), 2, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_LBRACE, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 13, + ACTIONS(2175), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2829), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [47974] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2091), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -266065,171 +266357,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [48030] = 29, + [48090] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5050), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5052), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5054), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5056), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5058), 1, + ACTIONS(5263), 1, + anon_sym_QMARK_DOT, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5066), 1, - anon_sym_AMP_AMP, - ACTIONS(5068), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5070), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5072), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5074), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5076), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5589), 1, - anon_sym_COLON, - ACTIONS(5591), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5593), 1, - anon_sym_LT_DASH, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5515), 1, + anon_sym_DOT_DOT, + ACTIONS(5595), 1, + anon_sym_RBRACK, + STATE(2424), 1, sym_or_block, - STATE(4173), 1, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5060), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5064), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5078), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2618), 2, + STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(5046), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5048), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5062), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5587), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48134] = 30, + [48196] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5237), 1, - anon_sym_DOT, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5249), 1, - anon_sym_QMARK_DOT, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - ACTIONS(5505), 1, - anon_sym_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_RBRACK, - STATE(2480), 1, + ACTIONS(5301), 1, + anon_sym_or, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(3908), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5305), 2, anon_sym_in, anon_sym_BANGin, - STATE(2619), 2, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48240] = 6, + [48298] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2137), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(5597), 1, - anon_sym_DOLLARelse, - STATE(2620), 2, + STATE(2621), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 39, + ACTIONS(2655), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266269,17 +266557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48298] = 5, + [48353] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2653), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(2621), 2, + STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 39, + ACTIONS(2833), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266319,15 +266607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48353] = 5, + [48408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2622), 2, + STATE(2623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 13, + ACTIONS(2961), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266341,7 +266629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3284), 27, + ACTIONS(2959), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266369,17 +266657,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48408] = 5, + [48463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2935), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2933), 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, + [48518] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2645), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - STATE(2623), 2, + STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 39, + ACTIONS(2651), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266419,17 +266757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48463] = 5, + [48573] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2641), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - STATE(2624), 2, + STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 39, + ACTIONS(2647), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266469,15 +266807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48518] = 5, + [48628] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2625), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 13, + ACTIONS(2465), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266491,7 +266829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2371), 27, + ACTIONS(2463), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266519,14 +266857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48573] = 5, + [48683] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(2625), 1, anon_sym_LBRACK, - STATE(2626), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, ACTIONS(2627), 39, @@ -266569,17 +266907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48628] = 5, + [48738] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2631), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(2627), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 39, + ACTIONS(2631), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266619,17 +266957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48683] = 5, + [48793] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2635), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(2628), 2, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 39, + ACTIONS(2639), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266669,17 +267007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48738] = 5, + [48848] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2385), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(2629), 2, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 39, + ACTIONS(2383), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266719,14 +267057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48793] = 5, + [48903] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(2879), 1, anon_sym_LBRACK, - STATE(2630), 2, + STATE(2632), 2, sym_line_comment, sym_block_comment, ACTIONS(2881), 39, @@ -266769,17 +267107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48848] = 5, + [48958] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - STATE(2631), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 39, + ACTIONS(2929), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266819,15 +267157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48903] = 5, + [49013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2632), 2, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 13, + ACTIONS(2951), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266841,7 +267179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2945), 27, + ACTIONS(2949), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266869,15 +267207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48958] = 5, + [49068] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2633), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 13, + ACTIONS(3280), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266891,7 +267229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3268), 27, + ACTIONS(3278), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266919,17 +267257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49013] = 5, + [49123] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2987), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - STATE(2634), 2, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 39, + ACTIONS(2377), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -266969,17 +267307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49068] = 5, + [49178] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3292), 1, + ACTIONS(3284), 1, anon_sym_LBRACK, - STATE(2635), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 39, + ACTIONS(3286), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -267019,90 +267357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49123] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - ACTIONS(5497), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5599), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5481), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5489), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5483), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49224] = 6, + [49233] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(2337), 1, anon_sym_COMMA, - STATE(2637), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 13, + ACTIONS(2147), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267116,7 +267381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2091), 26, + ACTIONS(2145), 26, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, @@ -267143,7 +267408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49281] = 28, + [49290] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -267158,52 +267423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5603), 1, + ACTIONS(5599), 1, anon_sym_RPAREN, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(3852), 1, - sym_parameter_declaration, - STATE(3968), 1, + STATE(3849), 1, sym_type_parameter_declaration, + STATE(3853), 1, + sym_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2638), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -267216,15 +267481,88 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [49382] = 5, + [49391] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2639), 2, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, + anon_sym_CARET, + ACTIONS(5493), 1, + anon_sym_AMP_AMP, + ACTIONS(5495), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5479), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49492] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 13, + ACTIONS(3035), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267238,7 +267576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2963), 27, + ACTIONS(3033), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267266,15 +267604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49437] = 5, + [49547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2640), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 13, + ACTIONS(3069), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267288,7 +267626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3037), 27, + ACTIONS(3067), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267316,471 +267654,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49492] = 28, + [49602] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5617), 1, + ACTIONS(5615), 1, anon_sym_RPAREN, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2641), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49593] = 28, + [49703] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5637), 1, - anon_sym_LBRACE, - STATE(2480), 1, + ACTIONS(5635), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2642), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49694] = 28, + [49804] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, - anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5639), 1, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2643), 2, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(4044), 1, + sym_type_parameter_declaration, + STATE(4048), 1, + sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5627), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49795] = 28, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [49905] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5589), 1, - anon_sym_COLON, - STATE(2480), 1, + ACTIONS(5639), 1, + anon_sym_LBRACE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2644), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49896] = 28, + [50006] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5641), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2645), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49997] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2646), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3027), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3025), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - 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, - [50052] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3023), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3021), 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, [50107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -267789,7 +268027,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 13, + ACTIONS(3023), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267803,7 +268041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3017), 27, + ACTIONS(3021), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267839,7 +268077,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 13, + ACTIONS(3019), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267853,7 +268091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2471), 27, + ACTIONS(3017), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267881,88 +268119,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50217] = 28, + [50217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + STATE(2650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3013), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5241), 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(5243), 1, + 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, + [50272] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2471), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2469), 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, - ACTIONS(5277), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [50327] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5643), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2650), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50318] = 5, + [50428] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2651), 2, + STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 13, + ACTIONS(2435), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267976,7 +268314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2417), 27, + ACTIONS(2433), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268004,12 +268342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50373] = 5, + [50483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2652), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, ACTIONS(2335), 13, @@ -268054,153 +268392,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50428] = 28, + [50538] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5645), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(4048), 1, - sym_type_parameter_declaration, - STATE(4051), 1, - sym_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2653), 2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5543), 1, + anon_sym_COLON, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2655), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [50529] = 28, + ACTIONS(5391), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50639] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5645), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2654), 2, + STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50630] = 6, + [50740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -268208,10 +268546,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2337), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2655), 2, + STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 11, + ACTIONS(2837), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268223,7 +268561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2829), 27, + ACTIONS(2835), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268251,15 +268589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50687] = 5, + [50797] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2656), 2, + STATE(2658), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 13, + ACTIONS(2873), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268273,7 +268611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2867), 27, + ACTIONS(2871), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268301,15 +268639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50742] = 5, + [50852] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2657), 2, + STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 13, + ACTIONS(2885), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268323,7 +268661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2875), 27, + ACTIONS(2883), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268351,18 +268689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50797] = 6, + [50907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5649), 2, + ACTIONS(5647), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2658), 2, + STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 13, + ACTIONS(3035), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268376,7 +268714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2963), 25, + ACTIONS(3033), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268402,15 +268740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50854] = 5, + [50964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2659), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 13, + ACTIONS(3262), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268424,7 +268762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3264), 27, + ACTIONS(3260), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268452,15 +268790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50909] = 5, + [51019] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2660), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 13, + ACTIONS(2849), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268474,7 +268812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2863), 27, + ACTIONS(2847), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268502,12 +268840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50964] = 5, + [51074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2661), 2, + STATE(2663), 2, sym_line_comment, sym_block_comment, ACTIONS(2845), 13, @@ -268552,15 +268890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51019] = 5, + [51129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2662), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 13, + ACTIONS(3340), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268574,7 +268912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3322), 27, + ACTIONS(3338), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268602,15 +268940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51074] = 5, + [51184] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2663), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 13, + ACTIONS(3336), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268624,7 +268962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3344), 27, + ACTIONS(3334), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268652,12 +268990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51129] = 5, + [51239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2664), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, ACTIONS(3332), 13, @@ -268702,15 +269040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51184] = 5, + [51294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2665), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 13, + ACTIONS(3274), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268724,7 +269062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3276), 27, + ACTIONS(3272), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268752,15 +269090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51239] = 5, + [51349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2666), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 13, + ACTIONS(3256), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268774,7 +269112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3260), 27, + ACTIONS(3254), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268802,95 +269140,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51294] = 5, - ACTIONS(3), 1, + [51404] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2667), 2, + ACTIONS(3254), 1, + anon_sym_LBRACK, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 13, + ACTIONS(3256), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2975), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - 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, - [51349] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2957), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2955), 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_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -268902,67 +269190,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51404] = 5, + [51459] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2935), 13, - anon_sym_DOT, - 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_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2933), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51459] = 5, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5649), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(3895), 1, + sym_type_parameter_declaration, + STATE(3899), 1, + sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [51560] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, + ACTIONS(3272), 1, anon_sym_LBRACK, - STATE(2670), 2, + STATE(2671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 39, + ACTIONS(3274), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -269002,15 +269313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51514] = 5, + [51615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2671), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 13, + ACTIONS(2651), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269024,7 +269335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2645), 27, + ACTIONS(2649), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269052,15 +269363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51569] = 5, + [51670] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2672), 2, + STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 13, + ACTIONS(2647), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269074,7 +269385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2641), 27, + ACTIONS(2645), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269102,57 +269413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51624] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LBRACK, - STATE(2673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3278), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51679] = 5, + [51725] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -269202,17 +269463,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51734] = 5, + [51780] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 39, + ACTIONS(3336), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [51835] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3338), 1, + anon_sym_LBRACK, + STATE(2676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3340), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -269252,12 +269563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51789] = 5, + [51890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2676), 2, + STATE(2677), 2, sym_line_comment, sym_block_comment, ACTIONS(2627), 13, @@ -269302,15 +269613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51844] = 5, + [51945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2677), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 13, + ACTIONS(2631), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269324,7 +269635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2631), 27, + ACTIONS(2629), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269352,15 +269663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51899] = 5, + [52000] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2678), 2, + STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 13, + ACTIONS(2639), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269374,7 +269685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2635), 27, + ACTIONS(2637), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269402,15 +269713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51954] = 5, + [52055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2679), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 13, + ACTIONS(2383), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269424,7 +269735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2385), 27, + ACTIONS(2381), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269452,12 +269763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52009] = 5, + [52110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2680), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, ACTIONS(2881), 13, @@ -269502,15 +269813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52064] = 5, + [52165] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 13, + ACTIONS(2929), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269524,7 +269835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2923), 27, + ACTIONS(2927), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269552,45 +269863,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52119] = 5, - ACTIONS(311), 1, + [52220] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3322), 1, - anon_sym_LBRACK, - STATE(2682), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3080), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3078), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -269602,15 +269913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52174] = 5, + [52275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2683), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 13, + ACTIONS(2377), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269624,7 +269935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2987), 27, + ACTIONS(2375), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269652,15 +269963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52229] = 5, + [52330] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2684), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 13, + ACTIONS(3286), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269674,7 +269985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3292), 27, + ACTIONS(3284), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269702,15 +270013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52284] = 5, + [52385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2685), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 13, + ACTIONS(2947), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269724,7 +270035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3072), 27, + ACTIONS(2945), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269752,21 +270063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52339] = 7, + [52440] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_DOT, - STATE(2686), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4317), 3, + ACTIONS(4315), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269778,7 +270089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269804,203 +270115,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [52398] = 28, + [52499] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5651), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2687), 2, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52499] = 28, + [52600] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2688), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52600] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2459), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2457), 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, - [52655] = 5, + [52701] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -270050,17 +270311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52710] = 5, + [52756] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2863), 1, + ACTIONS(2847), 1, anon_sym_LBRACK, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 39, + ACTIONS(2849), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -270100,7 +270361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52765] = 5, + [52811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -270108,7 +270369,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 13, + ACTIONS(2877), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270122,7 +270383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2171), 27, + ACTIONS(2875), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270150,66 +270411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52820] = 6, + [52866] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, - anon_sym_LBRACE, STATE(2693), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2091), 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, - [52877] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2694), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2913), 13, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270223,7 +270433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2911), 27, + ACTIONS(2173), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270251,7 +270461,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52932] = 5, + [52921] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2337), 1, + anon_sym_LBRACE, + STATE(2694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2147), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2145), 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, + [52978] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -270259,7 +270520,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 13, + ACTIONS(2889), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270273,7 +270534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2929), 27, + ACTIONS(2887), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270301,17 +270562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52987] = 5, + [53033] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3264), 1, + ACTIONS(3260), 1, anon_sym_LBRACK, STATE(2696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 39, + ACTIONS(3262), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -270351,88 +270612,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53042] = 28, + [53088] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3073), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3071), 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, + [53143] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5655), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2697), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53143] = 5, + [53244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2698), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 13, + ACTIONS(3065), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270446,7 +270757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3068), 27, + ACTIONS(3063), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270474,161 +270785,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53198] = 28, + [53299] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5657), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2699), 2, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53299] = 28, + [53400] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5659), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2700), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53400] = 5, + [53501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2701), 2, + STATE(2702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3064), 13, + ACTIONS(3061), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270642,7 +270953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3062), 27, + ACTIONS(3059), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270670,90 +270981,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53455] = 28, + [53556] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5661), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2702), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53556] = 6, + [53657] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(2703), 2, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, + anon_sym_CARET, + ACTIONS(5493), 1, + anon_sym_AMP_AMP, + ACTIONS(5495), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5663), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2704), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 13, + ACTIONS(5479), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [53758] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2997), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270767,9 +271149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2829), 26, + ACTIONS(2995), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -270794,15 +271177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53613] = 5, + [53813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2704), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 13, + ACTIONS(2993), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270816,7 +271199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3058), 27, + ACTIONS(2991), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270844,15 +271227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53668] = 5, + [53868] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2705), 2, + STATE(2707), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 13, + ACTIONS(2989), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270866,7 +271249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2991), 27, + ACTIONS(2987), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270894,15 +271277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53723] = 5, + [53923] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2706), 2, + ACTIONS(2337), 1, + anon_sym_COMMA, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 13, + ACTIONS(2837), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270916,10 +271301,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2983), 27, + ACTIONS(2835), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -270944,15 +271328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53778] = 5, + [53980] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2707), 2, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 13, + ACTIONS(2925), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270966,7 +271350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2979), 27, + ACTIONS(2923), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270994,161 +271378,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53833] = 28, + [54035] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5663), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(3881), 1, - sym_type_parameter_declaration, - STATE(3886), 1, - sym_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2708), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [53934] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5665), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2709), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54035] = 5, + [54136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2710), 2, + STATE(2711), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 11, + ACTIONS(2169), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271160,7 +271471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2095), 29, + ACTIONS(2167), 29, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271190,12 +271501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54090] = 5, + [54191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2711), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, ACTIONS(2921), 13, @@ -271240,12 +271551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54145] = 5, + [54246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2712), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, ACTIONS(2917), 13, @@ -271290,67 +271601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54200] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2713), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2909), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2907), 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, - [54255] = 5, + [54301] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(2883), 1, anon_sym_LBRACK, STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 39, + ACTIONS(2885), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -271390,17 +271651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54310] = 5, + [54356] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2867), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 39, + ACTIONS(2873), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -271440,7 +271701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54365] = 6, + [54411] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -271450,7 +271711,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 11, + ACTIONS(2837), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271462,7 +271723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2829), 28, + ACTIONS(2835), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -271491,7 +271752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [54422] = 6, + [54468] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -271501,7 +271762,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 12, + ACTIONS(2697), 12, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -271514,7 +271775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2691), 27, + ACTIONS(2695), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271542,7 +271803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54479] = 28, + [54525] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -271557,52 +271818,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, ACTIONS(5669), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(3866), 1, + STATE(3875), 1, + sym_type_parameter_declaration, + STATE(3880), 1, sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2718), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [54626] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5671), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, STATE(3867), 1, + sym_parameter_declaration, + STATE(3868), 1, sym_type_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2718), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271615,161 +271949,138 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [54580] = 28, + [54727] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5671), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2719), 2, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54681] = 28, + [54828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - ACTIONS(5497), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5673), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2720), 2, + STATE(2721), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(2429), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + anon_sym_DOT_DOT, + ACTIONS(2427), 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(5483), 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, - [54782] = 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, + [54883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2721), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 13, + ACTIONS(2397), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -271783,7 +272094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2421), 27, + ACTIONS(2395), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271811,17 +272122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54837] = 5, + [54938] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(2173), 1, anon_sym_LBRACK, - STATE(2722), 2, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 39, + ACTIONS(2175), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -271861,45 +272172,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54892] = 5, - ACTIONS(3), 1, + [54993] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2723), 2, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(2724), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 13, + ACTIONS(2335), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2391), 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_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -271911,15 +272222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54947] = 5, + [55048] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2724), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 11, + ACTIONS(2147), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271931,7 +272242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2091), 29, + ACTIONS(2145), 29, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271961,140 +272272,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55002] = 28, + [55103] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5675), 1, - anon_sym_RPAREN, - STATE(2480), 1, + anon_sym_LBRACE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2725), 2, + STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55103] = 5, + [55204] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 1, - anon_sym_LBRACK, - STATE(2726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2335), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55158] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2417), 1, + ACTIONS(2433), 1, anon_sym_LBRACK, STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 39, + ACTIONS(2435), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -272134,90 +272395,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55213] = 28, + [55259] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5677), 1, - anon_sym_LBRACE, - STATE(2480), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, STATE(2728), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55314] = 5, + [55360] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, STATE(2729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 39, + ACTIONS(2471), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -272257,7 +272518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55369] = 5, + [55415] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272307,7 +272568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55424] = 5, + [55470] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272357,7 +272618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55479] = 5, + [55525] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272407,17 +272668,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55534] = 5, + [55580] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2823), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2821), 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, + [55635] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3252), 1, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(2733), 2, + STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 39, + ACTIONS(3250), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -272457,15 +272768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55589] = 5, + [55690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2734), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 13, + ACTIONS(2829), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272479,7 +272790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2821), 27, + ACTIONS(2827), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272507,15 +272818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55644] = 5, + [55745] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2735), 2, + STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 13, + ACTIONS(2833), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272529,7 +272840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2825), 27, + ACTIONS(2831), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272557,15 +272868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55699] = 5, + [55800] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2736), 2, + STATE(2737), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 13, + ACTIONS(2977), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272579,7 +272890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2835), 27, + ACTIONS(2975), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272607,15 +272918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55754] = 5, + [55855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2737), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 13, + ACTIONS(2981), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272629,7 +272940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2971), 27, + ACTIONS(2979), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272657,15 +272968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55809] = 5, + [55910] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2738), 2, + STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 13, + ACTIONS(3007), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272679,7 +272990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2999), 27, + ACTIONS(3005), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272707,45 +273018,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55864] = 5, - ACTIONS(3), 1, + [55965] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2739), 2, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 13, + ACTIONS(3015), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3013), 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_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -272757,14 +273068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55919] = 5, + [56020] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(3017), 1, anon_sym_LBRACK, - STATE(2740), 2, + STATE(2741), 2, sym_line_comment, sym_block_comment, ACTIONS(3019), 39, @@ -272807,14 +273118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55974] = 5, + [56075] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(3021), 1, anon_sym_LBRACK, - STATE(2741), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, ACTIONS(3023), 39, @@ -272857,285 +273168,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56029] = 28, + [56130] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5679), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2742), 2, + STATE(2743), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56130] = 28, + [56231] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, ACTIONS(5681), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2743), 2, + STATE(2744), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56231] = 28, + [56332] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, ACTIONS(5683), 1, anon_sym_SEMI, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2744), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56332] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3025), 1, - anon_sym_LBRACK, - STATE(2745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3027), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5393), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [56387] = 5, + [56433] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5685), 1, + anon_sym_else, + STATE(2961), 1, + sym_else_branch, STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 13, - anon_sym_DOT, + ACTIONS(2089), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -273147,11 +273411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2883), 27, + ACTIONS(2087), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273159,11 +273421,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, @@ -273176,7 +273439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56442] = 5, + [56492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273184,7 +273447,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2747), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2893), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273198,7 +273461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2183), 27, + ACTIONS(2891), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273226,18 +273489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56497] = 6, + [56547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 2, - anon_sym_LBRACE, - anon_sym_COMMA, STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 11, + ACTIONS(2187), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -273249,9 +273510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2091), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2185), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273259,12 +273522,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, @@ -273277,19 +273539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56554] = 7, + [56602] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5685), 1, - anon_sym_else, - STATE(2955), 1, - sym_else_branch, + ACTIONS(2337), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2749), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 11, + ACTIONS(2147), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -273301,7 +273562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2087), 27, + ACTIONS(2145), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -273329,19 +273590,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56613] = 7, + [56659] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5685), 1, - anon_sym_else, - STATE(2931), 1, - sym_else_branch, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5687), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(3939), 1, + sym_parameter_declaration, + STATE(3940), 1, + sym_type_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(2750), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 11, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [56760] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3240), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -273353,9 +273684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2081), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3238), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273363,12 +273696,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, @@ -273381,15 +273713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56672] = 5, + [56815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2751), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 13, + ACTIONS(2967), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273403,7 +273735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2959), 27, + ACTIONS(2965), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273431,89 +273763,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56727] = 28, + [56870] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5687), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2752), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56828] = 5, + [56971] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2753), 2, + ACTIONS(5685), 1, + anon_sym_else, + STATE(2964), 1, + sym_else_branch, + STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 13, - anon_sym_DOT, + ACTIONS(2083), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -273525,11 +273860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3242), 27, + ACTIONS(2081), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273537,11 +273870,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, @@ -273554,161 +273888,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56883] = 28, + [57030] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5689), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(3935), 1, - sym_parameter_declaration, - STATE(3938), 1, - sym_type_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2754), 2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5691), 1, + anon_sym_RBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2755), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [56984] = 28, + ACTIONS(5391), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57131] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5691), 1, - anon_sym_RBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2755), 2, + ACTIONS(5507), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57085] = 5, + [57232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2756), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 13, + ACTIONS(3246), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273722,7 +274056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3082), 27, + ACTIONS(3244), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273750,161 +274084,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57140] = 28, + [57287] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2071), 1, - anon_sym_LBRACE, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + ACTIONS(5693), 1, + anon_sym_LBRACE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5487), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5501), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2757), 2, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57241] = 28, + [57388] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5693), 1, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, + anon_sym_CARET, + ACTIONS(5629), 1, + anon_sym_AMP_AMP, + ACTIONS(5631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(3893), 1, - sym_type_parameter_declaration, - STATE(3903), 1, - sym_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2758), 2, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2759), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [57342] = 5, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5625), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57489] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2759), 2, + STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 13, + ACTIONS(3266), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273918,7 +274252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3246), 27, + ACTIONS(3264), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273946,15 +274280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57397] = 5, + [57544] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2760), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 13, + ACTIONS(3270), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273968,7 +274302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3256), 27, + ACTIONS(3268), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273996,15 +274330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57452] = 5, + [57599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2761), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 13, + ACTIONS(3292), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -274018,7 +274352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3272), 27, + ACTIONS(3290), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274046,45 +274380,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57507] = 5, - ACTIONS(311), 1, + [57654] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3338), 1, - anon_sym_LBRACK, - STATE(2762), 2, + STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3296), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3294), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -274096,15 +274430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57562] = 5, + [57709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2763), 2, + STATE(2764), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 13, + ACTIONS(2841), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -274118,7 +274452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2853), 27, + ACTIONS(2839), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274146,284 +274480,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57617] = 28, + [57764] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5695), 1, - anon_sym_LBRACE, - STATE(2480), 1, + ACTIONS(5697), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2764), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57718] = 28, + [57865] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5697), 1, - anon_sym_RPAREN, - STATE(2480), 1, + ACTIONS(5699), 1, + anon_sym_LBRACE, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2765), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [57819] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3354), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3352), 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, - [57874] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, - anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5699), 1, - anon_sym_RPAREN, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, + anon_sym_AMP_CARET, + [57966] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(3356), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + anon_sym_DOT_DOT, + ACTIONS(3354), 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(5621), 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, - [57975] = 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, + [58021] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5701), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(3855), 1, + sym_type_parameter_declaration, + STATE(3858), 1, + sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 13, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [58122] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3346), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -274437,7 +274771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3334), 27, + ACTIONS(3344), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274465,15 +274799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58030] = 5, + [58177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2769), 2, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 13, + ACTIONS(3324), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -274487,7 +274821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3326), 27, + ACTIONS(3322), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274515,12 +274849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58085] = 5, + [58232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2770), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, ACTIONS(3318), 13, @@ -274565,15 +274899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58140] = 5, + [58287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2771), 2, + STATE(2772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 13, + ACTIONS(3312), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -274587,7 +274921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3312), 27, + ACTIONS(3310), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274615,12 +274949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58195] = 5, + [58342] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2772), 2, + STATE(2773), 2, sym_line_comment, sym_block_comment, ACTIONS(3308), 13, @@ -274665,85 +274999,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58250] = 28, + [58397] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5701), 1, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, + anon_sym_CARET, + ACTIONS(5629), 1, + anon_sym_AMP_AMP, + ACTIONS(5631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5703), 1, anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(3859), 1, - sym_type_parameter_declaration, - STATE(3864), 1, - sym_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2773), 2, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2774), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58351] = 5, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5625), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [58498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2774), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, ACTIONS(3304), 13, @@ -274788,12 +275122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58406] = 5, + [58553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2775), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, ACTIONS(3300), 13, @@ -274838,153 +275172,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58461] = 28, + [58608] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, - anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5703), 1, - anon_sym_RPAREN, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5627), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58562] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5705), 1, - anon_sym_LBRACE, - STATE(2480), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58663] = 5, + [58709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274992,7 +275253,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3340), 13, + ACTIONS(3328), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275006,7 +275267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3338), 27, + ACTIONS(3326), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275034,88 +275295,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58718] = 28, + [58764] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(3910), 1, + anon_sym_LBRACE, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5707), 1, - anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58819] = 5, + [58865] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5707), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(3910), 1, + sym_parameter_declaration, + STATE(3911), 1, + sym_type_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(2780), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 13, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [58966] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2373), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275129,7 +275463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2463), 27, + ACTIONS(2371), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275157,15 +275491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58874] = 5, + [59021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2781), 2, + STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 13, + ACTIONS(2457), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275179,7 +275513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2449), 27, + ACTIONS(2455), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275207,15 +275541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58929] = 5, + [59076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2782), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 13, + ACTIONS(3084), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275229,7 +275563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3088), 27, + ACTIONS(3082), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275257,83 +275591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58984] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5629), 1, - anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5625), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5627), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 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, - [59071] = 6, + [59131] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_DOT, STATE(2784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 12, + ACTIONS(3045), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -275346,7 +275614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3029), 27, + ACTIONS(3043), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275374,45 +275642,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59128] = 5, - ACTIONS(3), 1, + [59188] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, + ACTIONS(3067), 1, + anon_sym_LBRACK, STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 13, + ACTIONS(3069), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3045), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -275424,7 +275692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59183] = 5, + [59243] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275432,7 +275700,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 13, + ACTIONS(3041), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275446,7 +275714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3041), 27, + ACTIONS(3039), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275474,7 +275742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59238] = 5, + [59298] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275482,7 +275750,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 13, + ACTIONS(3031), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275496,7 +275764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3252), 27, + ACTIONS(3029), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275524,7 +275792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59293] = 5, + [59353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275532,7 +275800,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 13, + ACTIONS(3250), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275546,7 +275814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3033), 27, + ACTIONS(3248), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275574,7 +275842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59348] = 5, + [59408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275582,7 +275850,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 13, + ACTIONS(3027), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275596,7 +275864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2445), 27, + ACTIONS(3025), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275624,45 +275892,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59403] = 5, - ACTIONS(311), 1, + [59463] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, - anon_sym_LBRACK, STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2453), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2451), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -275674,7 +275942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59458] = 5, + [59518] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275682,7 +275950,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 13, + ACTIONS(3045), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275696,7 +275964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3003), 27, + ACTIONS(3043), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275724,7 +275992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59513] = 5, + [59573] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275732,7 +276000,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 13, + ACTIONS(3001), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -275746,7 +276014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3029), 27, + ACTIONS(2999), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275774,17 +276042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59568] = 5, + [59628] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2963), 1, + ACTIONS(3033), 1, anon_sym_LBRACK, STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 39, + ACTIONS(3035), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -275824,95 +276092,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59623] = 5, + [59683] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, + anon_sym_CARET, + ACTIONS(5629), 1, + anon_sym_AMP_AMP, + ACTIONS(5631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5709), 1, + anon_sym_RPAREN, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 13, - anon_sym_DOT, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, + ACTIONS(5621), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2431), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5625), 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(5619), 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, - [59678] = 5, - ACTIONS(311), 1, + [59784] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_LBRACK, STATE(2795), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2401), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2399), 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_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -275924,7 +276215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59733] = 28, + [59839] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275939,52 +276230,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5709), 1, + ACTIONS(5711), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(3909), 1, + STATE(4019), 1, sym_parameter_declaration, - STATE(3910), 1, + STATE(4020), 1, sym_type_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(2796), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275997,292 +276288,302 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [59834] = 28, - ACTIONS(3), 1, + [59940] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(4014), 1, - sym_parameter_declaration, - STATE(4015), 1, - sym_type_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, + ACTIONS(2463), 1, + anon_sym_LBRACK, STATE(2797), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [59935] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(2465), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5050), 1, - anon_sym_LBRACK, - ACTIONS(5052), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5054), 1, anon_sym_BANG, - ACTIONS(5056), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5058), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5066), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5068), 1, - anon_sym_as, - ACTIONS(5070), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5072), 1, - anon_sym_DASH_DASH, - ACTIONS(5074), 1, anon_sym_PIPE_PIPE, - ACTIONS(5076), 1, anon_sym_or, - ACTIONS(5591), 1, - anon_sym_CARET, - ACTIONS(5593), 1, - anon_sym_LT_DASH, - STATE(2071), 1, - sym_argument_list, - STATE(2072), 1, - sym_or_block, - STATE(4173), 1, - sym_type_parameters, - ACTIONS(5042), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5064), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5078), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [59995] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(5046), 3, + ACTIONS(2957), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5048), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5062), 4, + anon_sym_DOT_DOT, + ACTIONS(2955), 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(5587), 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, - [60036] = 19, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5629), 1, - anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(2079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(2799), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(2973), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5621), 5, + anon_sym_DOT_DOT, + ACTIONS(2971), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2077), 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, - [60119] = 22, + [60105] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5046), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5048), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5050), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5052), 1, anon_sym_POUND_LBRACK, - ACTIONS(5629), 1, - anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5062), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5064), 1, + anon_sym_DASH_DASH, + ACTIONS(5066), 1, anon_sym_AMP_AMP, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, + ACTIONS(5068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5070), 1, + anon_sym_or, + ACTIONS(5545), 1, + anon_sym_CARET, + ACTIONS(5547), 1, + anon_sym_LT_DASH, + STATE(2072), 1, sym_argument_list, - STATE(4330), 1, + STATE(2073), 1, + sym_or_block, + STATE(4173), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5038), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5625), 2, + ACTIONS(5058), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5072), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5074), 2, anon_sym_in, anon_sym_BANGin, STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5042), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5056), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5541), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [60206] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5627), 1, + anon_sym_CARET, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(2049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 8, + ACTIONS(2047), 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, - [60208] = 5, + anon_sym_in, + anon_sym_BANGin, + [60289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2801), 2, + STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 13, + ACTIONS(2865), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -276296,7 +276597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2951), 27, + ACTIONS(2863), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -276324,45 +276625,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60263] = 5, - ACTIONS(3), 1, + [60344] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2802), 2, + ACTIONS(3278), 1, + anon_sym_LBRACK, + STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 13, + ACTIONS(3280), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2839), 27, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60399] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2399), 1, + anon_sym_LBRACK, + STATE(2804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2401), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -276374,17 +276725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60318] = 5, + [60454] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, + ACTIONS(2949), 1, anon_sym_LBRACK, - STATE(2803), 2, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3270), 39, + ACTIONS(2951), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276424,241 +276775,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60373] = 5, - ACTIONS(311), 1, + [60509] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2431), 1, - anon_sym_LBRACK, - STATE(2804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2433), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(5253), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5627), 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(5629), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - [60428] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3029), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - STATE(2805), 2, + STATE(2806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 38, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5621), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5625), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(2051), 8, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60485] = 28, + [60598] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5713), 1, - anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2806), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60586] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2371), 1, - anon_sym_LBRACK, - STATE(2807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2373), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2051), 9, anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60641] = 5, + [60685] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3003), 1, + ACTIONS(2999), 1, anon_sym_LBRACK, STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 39, + ACTIONS(3001), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276698,7 +276958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60696] = 5, + [60740] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -276748,17 +277008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60751] = 5, + [60795] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2445), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 39, + ACTIONS(2453), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276798,17 +277058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60806] = 5, + [60850] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 39, + ACTIONS(2961), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276848,17 +277108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60861] = 5, + [60905] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2975), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 39, + ACTIONS(2973), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276898,17 +277158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60916] = 5, + [60960] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, STATE(2813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 39, + ACTIONS(3027), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -276948,7 +277208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60971] = 28, + [61015] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -276963,52 +277223,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5715), 1, + ACTIONS(5713), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(4044), 1, + STATE(4043), 1, sym_type_parameter_declaration, STATE(4045), 1, sym_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(2814), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277021,17 +277281,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [61072] = 5, + [61116] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3072), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 39, + ACTIONS(3080), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277071,17 +277331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61127] = 5, + [61171] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3041), 1, + ACTIONS(3029), 1, anon_sym_LBRACK, STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 39, + ACTIONS(3031), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277121,17 +277381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61182] = 5, + [61226] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(2945), 1, anon_sym_LBRACK, STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 39, + ACTIONS(2947), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277171,17 +277431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61237] = 5, + [61281] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3045), 1, + ACTIONS(3039), 1, anon_sym_LBRACK, STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 39, + ACTIONS(3041), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277221,17 +277481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61292] = 5, + [61336] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2911), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 39, + ACTIONS(2877), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277271,17 +277531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61347] = 5, + [61391] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2929), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 39, + ACTIONS(2889), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277321,17 +277581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61402] = 5, + [61446] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 39, + ACTIONS(3084), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277371,17 +277631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61457] = 5, + [61501] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2449), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, STATE(2822), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 39, + ACTIONS(2457), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277421,17 +277681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61512] = 5, + [61556] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2463), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, STATE(2823), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 39, + ACTIONS(2373), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277471,67 +277731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61567] = 5, + [61611] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3071), 1, anon_sym_LBRACK, STATE(2824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61622] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3062), 1, - anon_sym_LBRACK, - STATE(2825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3064), 39, + ACTIONS(3073), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277571,17 +277781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61677] = 5, + [61666] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - STATE(2826), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3060), 39, + ACTIONS(3065), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277621,17 +277831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61732] = 5, + [61721] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2991), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - STATE(2827), 2, + STATE(2826), 2, sym_line_comment, sym_block_comment, - ACTIONS(2993), 39, + ACTIONS(3061), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277671,22 +277881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61787] = 6, + [61776] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2442), 1, + ACTIONS(2995), 1, anon_sym_LBRACK, - STATE(2828), 2, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 4, + ACTIONS(2997), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(2439), 35, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -277722,17 +277931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61844] = 5, + [61831] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2983), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(2829), 2, + STATE(2828), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 39, + ACTIONS(2993), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277772,46 +277981,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61899] = 6, - ACTIONS(3), 1, + [61886] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2830), 2, + ACTIONS(2448), 1, + anon_sym_LBRACK, + STATE(2829), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2173), 13, + ACTIONS(2443), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(2445), 35, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2171), 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_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -277823,17 +278032,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61956] = 5, + [61943] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2979), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(2831), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 39, + ACTIONS(2989), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -277873,18 +278082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62011] = 6, + [61998] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2832), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 13, + ACTIONS(2180), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -277898,7 +278108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2829), 25, + ACTIONS(2173), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -277908,7 +278118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -277924,80 +278133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62068] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5717), 1, - anon_sym_SEMI, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2833), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5355), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5357), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [62169] = 28, + [62055] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -278012,52 +278148,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5603), 1, + ACTIONS(5599), 1, anon_sym_RPAREN, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5719), 1, + ACTIONS(5715), 1, sym_identifier, STATE(3074), 1, sym_mutability_modifiers, - STATE(3852), 1, - sym_parameter_declaration, - STATE(3968), 1, + STATE(3849), 1, sym_type_parameter_declaration, + STATE(3853), 1, + sym_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2834), 2, + STATE(2832), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278070,45 +278206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [62270] = 5, - ACTIONS(311), 1, + [62156] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2919), 1, - anon_sym_LBRACK, - STATE(2835), 2, + ACTIONS(2337), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2833), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2837), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2835), 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_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -278120,17 +278257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62325] = 5, + [62213] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2915), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - STATE(2836), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 39, + ACTIONS(2925), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278170,17 +278307,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62380] = 5, + [62268] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5717), 1, + anon_sym_SEMI, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5391), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62369] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2907), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - STATE(2837), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 39, + ACTIONS(2921), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278220,19 +278430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62435] = 6, + [62424] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2691), 1, + ACTIONS(2915), 1, anon_sym_LBRACK, - ACTIONS(5721), 1, - anon_sym_BANG, - STATE(2838), 2, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 38, + ACTIONS(2917), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278254,6 +278462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -278271,17 +278480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62492] = 5, + [62479] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2839), 1, + ACTIONS(2695), 1, anon_sym_LBRACK, - STATE(2839), 2, + ACTIONS(5719), 1, + anon_sym_BANG, + STATE(2838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 39, + ACTIONS(2697), 38, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278303,7 +278514,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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, @@ -278321,65 +278531,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62547] = 6, + [62536] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2337), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2840), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2093), 13, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2091), 25, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 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, - anon_sym_LBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5629), 1, anon_sym_AMP_AMP, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5721), 1, + anon_sym_RPAREN, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - [62604] = 5, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5625), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62637] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(3298), 1, anon_sym_LBRACK, - STATE(2841), 2, + STATE(2840), 2, sym_line_comment, sym_block_comment, ACTIONS(3300), 39, @@ -278422,45 +278654,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62659] = 5, - ACTIONS(311), 1, + [62692] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, - anon_sym_LBRACK, - STATE(2842), 2, + ACTIONS(2337), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2147), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2145), 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_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -278472,90 +278705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62714] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, - anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5723), 1, - anon_sym_RPAREN, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5627), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [62815] = 5, + [62749] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3306), 1, + ACTIONS(3302), 1, anon_sym_LBRACK, - STATE(2844), 2, + STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 39, + ACTIONS(3304), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278595,17 +278755,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62870] = 5, + [62804] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, + anon_sym_CARET, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5723), 1, + anon_sym_RBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5391), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5395), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5393), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62905] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(3306), 1, anon_sym_LBRACK, - STATE(2845), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 39, + ACTIONS(3308), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278645,17 +278878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62925] = 5, + [62960] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3316), 1, + ACTIONS(3310), 1, anon_sym_LBRACK, - STATE(2846), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 39, + ACTIONS(3312), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278695,17 +278928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62980] = 5, + [63015] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(2847), 2, + STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 39, + ACTIONS(3318), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278745,17 +278978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63035] = 5, + [63070] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3334), 1, + ACTIONS(3322), 1, anon_sym_LBRACK, - STATE(2848), 2, + STATE(2847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 39, + ACTIONS(3324), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278795,17 +279028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63090] = 5, + [63125] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - STATE(2849), 2, + STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 39, + ACTIONS(3346), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -278845,23 +279078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63145] = 6, + [63180] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2175), 1, - anon_sym_DOT, - ACTIONS(2463), 1, + ACTIONS(2427), 1, anon_sym_LBRACK, - STATE(2850), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 38, + ACTIONS(2429), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_PLUS, @@ -278896,46 +279128,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63202] = 7, - ACTIONS(3), 1, + [63235] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 2, + ACTIONS(3354), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2463), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2851), 2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 12, + ACTIONS(3356), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2171), 24, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [63290] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LBRACK, + STATE(2851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2373), 38, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -278947,18 +279229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [63261] = 6, + [63347] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2175), 1, - anon_sym_DOT, + ACTIONS(2180), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2371), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 12, + ACTIONS(2175), 12, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -278970,11 +279256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2463), 27, + ACTIONS(2173), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -278982,8 +279265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -278999,90 +279280,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63318] = 28, + anon_sym_DOT_DOT, + [63406] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5725), 1, - anon_sym_RBRACK, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(2177), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2853), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2373), 12, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + anon_sym_DOT_DOT, + ACTIONS(2371), 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(5357), 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, - [63419] = 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, + [63463] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3352), 1, + ACTIONS(2863), 1, anon_sym_LBRACK, STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 39, + ACTIONS(2865), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279122,17 +279382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63474] = 5, + [63518] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2391), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 39, + ACTIONS(2397), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279172,17 +279432,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63529] = 5, + [63573] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2053), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 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, + [63652] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2951), 1, + ACTIONS(2839), 1, anon_sym_LBRACK, - STATE(2856), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 39, + ACTIONS(2841), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279222,17 +279544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63584] = 5, + [63707] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(2657), 1, anon_sym_LBRACK, - STATE(2857), 2, + STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 39, + ACTIONS(2659), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279272,17 +279594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63639] = 5, + [63762] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2657), 1, + ACTIONS(2817), 1, anon_sym_LBRACK, - STATE(2858), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 39, + ACTIONS(2819), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279322,17 +279644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63694] = 5, + [63817] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2817), 1, + ACTIONS(2821), 1, anon_sym_LBRACK, - STATE(2859), 2, + STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 39, + ACTIONS(2823), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279372,52 +279694,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63749] = 17, + [63872] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - STATE(2480), 1, + ACTIONS(5491), 1, + anon_sym_CARET, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(2053), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2860), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(5485), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2055), 5, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - ACTIONS(5483), 5, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 16, + ACTIONS(2051), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -279426,7 +279751,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, @@ -279434,17 +279758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63828] = 5, + [63955] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2821), 1, + ACTIONS(2827), 1, anon_sym_LBRACK, - STATE(2861), 2, + STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 39, + ACTIONS(2829), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279484,67 +279808,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63883] = 5, - ACTIONS(311), 1, + [64010] = 21, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2825), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - STATE(2862), 2, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5491), 1, + anon_sym_CARET, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2863), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5483), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5481), 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(2051), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63938] = 5, + [64097] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(3294), 1, anon_sym_LBRACK, - STATE(2863), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 39, + ACTIONS(3296), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -279584,350 +279924,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63993] = 28, + [64152] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - ACTIONS(5511), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2864), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64094] = 19, + [64253] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(2055), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2865), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5481), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5483), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 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, - [64177] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, ACTIONS(5493), 1, - anon_sym_CARET, - STATE(2480), 1, + anon_sym_AMP_AMP, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, STATE(2866), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 9, + ACTIONS(2051), 8, anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [64264] = 22, + [64342] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2867), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5481), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5489), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5483), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2061), 8, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [64353] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5725), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2868), 2, + STATE(2867), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64454] = 28, + [64443] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -279942,52 +280152,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, ACTIONS(5711), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(3970), 1, + STATE(3969), 1, sym_plain_type, - STATE(4014), 1, + STATE(4019), 1, sym_parameter_declaration, - STATE(4015), 1, + STATE(4020), 1, sym_type_parameter_declaration, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2869), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280000,350 +280210,300 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [64555] = 19, + [64544] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, anon_sym_CARET, - STATE(2480), 1, + ACTIONS(5629), 1, + anon_sym_AMP_AMP, + ACTIONS(5631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(2079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2870), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5483), 5, + ACTIONS(5625), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 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, - [64638] = 28, + [64645] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5631), 1, - anon_sym_AMP_AMP, - ACTIONS(5633), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5729), 1, - anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(2049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2871), 2, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64739] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3284), 1, - anon_sym_LBRACK, - STATE(2872), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3286), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2047), 15, anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_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_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64794] = 28, + [64728] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5731), 1, + ACTIONS(5729), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2873), 2, + STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64895] = 28, + [64829] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5733), 1, + ACTIONS(5731), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2874), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64996] = 5, + [64930] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3290), 1, anon_sym_LBRACK, - STATE(2875), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 39, + ACTIONS(3292), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280383,90 +280543,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65051] = 28, + [64985] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5733), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(4029), 1, + sym_type_parameter_declaration, + STATE(4034), 1, + sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2874), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [65086] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, ACTIONS(5735), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2876), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65152] = 5, + [65187] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3256), 1, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(2877), 2, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 39, + ACTIONS(3270), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280506,80 +280739,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65207] = 28, - ACTIONS(3), 1, + [65242] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(2955), 1, + anon_sym_LBRACK, + STATE(2877), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2957), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3972), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, - ACTIONS(5611), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5613), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(4033), 1, - sym_type_parameter_declaration, - STATE(4034), 1, - sym_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [65297] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3264), 1, + anon_sym_LBRACK, STATE(2878), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [65308] = 28, + ACTIONS(3266), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [65352] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -280594,52 +280854,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5739), 1, + ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(4006), 1, - sym_parameter_declaration, STATE(4007), 1, + sym_parameter_declaration, + STATE(4008), 1, sym_type_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(2879), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280652,17 +280912,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [65409] = 5, + [65453] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3246), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 39, + ACTIONS(3045), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280702,17 +280962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65464] = 5, + [65508] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2971), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 39, + ACTIONS(2977), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280752,17 +281012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65519] = 5, + [65563] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2999), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3001), 39, + ACTIONS(2981), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280802,17 +281062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65574] = 5, + [65618] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(3005), 1, anon_sym_LBRACK, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 39, + ACTIONS(3007), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -280852,130 +281112,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65629] = 28, + [65673] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3075), 1, + anon_sym_DOT, + STATE(2884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 38, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [65730] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5741), 1, + ACTIONS(5739), 1, anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2884), 2, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65730] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(3029), 1, - anon_sym_LBRACK, - STATE(2885), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3031), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5619), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65785] = 28, + [65831] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -280990,52 +281251,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5743), 1, + ACTIONS(5741), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(4068), 1, + STATE(4067), 1, sym_type_parameter_declaration, - STATE(4069), 1, + STATE(4068), 1, sym_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(2886), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281048,17 +281309,81 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [65886] = 5, + [65932] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5627), 1, + anon_sym_CARET, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(2053), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2051), 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, + [66015] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2883), 1, + ACTIONS(2891), 1, anon_sym_LBRACK, - STATE(2887), 2, + STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 39, + ACTIONS(2893), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -281098,139 +281423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65941] = 28, - ACTIONS(3), 1, + [66070] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_LBRACE, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(2185), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5493), 1, - anon_sym_CARET, - ACTIONS(5495), 1, - anon_sym_AMP_AMP, - ACTIONS(5497), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5499), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2888), 2, + STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(2187), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5485), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5489), 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(5483), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66042] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5245), 1, anon_sym_BANG, - ACTIONS(5247), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5629), 1, anon_sym_CARET, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(2055), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5619), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5623), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5621), 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(2061), 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_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -281240,47 +281478,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2055), 5, + ACTIONS(2053), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2061), 16, + ACTIONS(2051), 16, anon_sym_as, anon_sym_RPAREN, anon_sym_EQ_EQ, @@ -281302,12 +281540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 39, + ACTIONS(3328), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -281352,85 +281590,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2067), 1, - anon_sym_LBRACE, - ACTIONS(5239), 1, + ACTIONS(2063), 1, + anon_sym_RPAREN, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5617), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5621), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5625), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5619), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66360] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5627), 1, + anon_sym_CARET, + ACTIONS(5629), 1, + anon_sym_AMP_AMP, + ACTIONS(5631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5743), 1, + anon_sym_RPAREN, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5623), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5633), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66360] = 5, + [66461] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5597), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5611), 1, + anon_sym_shared, + ACTIONS(5745), 1, + anon_sym_RPAREN, + STATE(3092), 1, + sym_mutability_modifiers, + STATE(4027), 1, + sym_type_parameter_declaration, + STATE(4030), 1, + sym_parameter_declaration, + STATE(4379), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2894), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [66562] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3242), 1, + ACTIONS(3238), 1, anon_sym_LBRACK, - STATE(2893), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3244), 39, + ACTIONS(3240), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -281470,90 +281854,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66415] = 28, + [66617] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, + ACTIONS(2063), 1, anon_sym_LBRACE, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5493), 1, + ACTIONS(5491), 1, anon_sym_CARET, - ACTIONS(5495), 1, + ACTIONS(5493), 1, anon_sym_AMP_AMP, - ACTIONS(5497), 1, + ACTIONS(5495), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5487), 2, + ACTIONS(5485), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5499), 2, + ACTIONS(5497), 2, anon_sym_in, anon_sym_BANGin, - STATE(2894), 2, + STATE(2896), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 3, + ACTIONS(5479), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5485), 3, + ACTIONS(5483), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5489), 4, + ACTIONS(5487), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5483), 5, + ACTIONS(5481), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66516] = 5, + [66718] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(3082), 1, + ACTIONS(3244), 1, anon_sym_LBRACK, - STATE(2895), 2, + STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 39, + ACTIONS(3246), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -281593,7 +281977,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66571] = 28, + [66773] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2073), 1, + anon_sym_LBRACE, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_QMARK, + ACTIONS(5259), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_LBRACK2, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5491), 1, + anon_sym_CARET, + ACTIONS(5493), 1, + anon_sym_AMP_AMP, + ACTIONS(5495), 1, + anon_sym_PIPE_PIPE, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5479), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5483), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5487), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5481), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66874] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -281608,52 +282065,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5605), 1, + ACTIONS(5601), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, + ACTIONS(5603), 1, anon_sym_mut, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_shared, - ACTIONS(5745), 1, + ACTIONS(5747), 1, anon_sym_RPAREN, - STATE(3085), 1, + STATE(3092), 1, sym_mutability_modifiers, - STATE(4038), 1, - sym_type_parameter_declaration, - STATE(4039), 1, + STATE(4079), 1, sym_parameter_declaration, + STATE(4080), 1, + sym_type_parameter_declaration, STATE(4379), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2896), 2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281666,226 +282123,326 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [66672] = 28, + [66975] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(2073), 1, + anon_sym_RPAREN, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - ACTIONS(5747), 1, - anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2897), 2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66773] = 28, + [67076] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, - anon_sym_RPAREN, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + ACTIONS(5749), 1, + anon_sym_RPAREN, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2898), 2, + STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66874] = 28, + [67177] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2965), 1, + anon_sym_LBRACK, + STATE(2902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2967), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67232] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2067), 1, - anon_sym_RPAREN, - ACTIONS(5239), 1, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(5751), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(2903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2175), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2173), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5241), 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_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, + [67292] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2899), 2, + ACTIONS(5753), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2904), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66975] = 28, + [67390] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -281900,52 +282457,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(877), 1, + anon_sym_LBRACK2, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(2175), 1, + anon_sym_DOT, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5601), 1, - sym_identifier, ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - ACTIONS(5749), 1, - anon_sym_RPAREN, - STATE(3085), 1, - sym_mutability_modifiers, - STATE(4078), 1, - sym_parameter_declaration, - STATE(4079), 1, - sym_type_parameter_declaration, - STATE(4379), 1, + ACTIONS(5755), 1, + anon_sym_DOT_DOT_DOT, + STATE(4247), 1, sym_plain_type, - STATE(4607), 1, + STATE(4249), 1, + sym__plain_type_without_special, + STATE(4609), 1, sym_reference_expression, - STATE(2900), 2, + STATE(2905), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, + ACTIONS(2371), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2416), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281958,212 +282512,160 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [67076] = 28, + [67486] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5751), 1, - anon_sym_RPAREN, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2901), 2, + ACTIONS(5757), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67177] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(2959), 1, - anon_sym_LBRACK, - STATE(2902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2961), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5393), 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_PIPE, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [67232] = 27, + [67584] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5753), 2, + ACTIONS(5759), 2, anon_sym_is, anon_sym_BANGis, - STATE(2903), 2, + STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67330] = 6, + [67682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 2, + ACTIONS(4320), 2, anon_sym_SEMI, anon_sym_RBRACK, - STATE(2904), 2, + STATE(2908), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 12, + ACTIONS(2957), 12, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -282176,7 +282678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2951), 25, + ACTIONS(2955), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282202,433 +282704,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [67386] = 27, + [67738] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(877), 1, + anon_sym_LBRACK2, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(2175), 1, + anon_sym_DOT, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5761), 1, + anon_sym_DOT_DOT_DOT, + STATE(4254), 1, + sym__plain_type_without_special, + STATE(4257), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2909), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2371), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(5243), 1, + STATE(2416), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [67834] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5295), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5297), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5299), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + ACTIONS(5301), 1, + anon_sym_or, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5287), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5755), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - STATE(2905), 2, + ACTIONS(5305), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5281), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5285), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5289), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5283), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67484] = 27, + [67932] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5757), 2, + ACTIONS(5763), 2, anon_sym_is, anon_sym_BANGis, - STATE(2906), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67582] = 27, + [68030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5543), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2907), 2, + ACTIONS(5765), 1, + anon_sym_DOLLARelse, + STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2093), 11, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(2091), 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(5357), 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, - [67680] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [68086] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5297), 1, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5299), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5301), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - ACTIONS(5303), 1, - anon_sym_or, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5289), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5307), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2908), 2, + ACTIONS(5767), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2913), 2, sym_line_comment, sym_block_comment, - ACTIONS(5283), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5287), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5291), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67778] = 27, + [68184] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5759), 2, + ACTIONS(5769), 2, anon_sym_is, anon_sym_BANGis, - STATE(2909), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67876] = 27, + [68282] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5761), 2, + ACTIONS(5771), 2, anon_sym_is, anon_sym_BANGis, - STATE(2910), 2, + STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67974] = 26, + [68380] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -282643,49 +283194,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(869), 1, + ACTIONS(877), 1, anon_sym_LBRACK2, - ACTIONS(873), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(2173), 1, + ACTIONS(2175), 1, anon_sym_DOT, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5761), 1, anon_sym_DOT_DOT_DOT, - STATE(4256), 1, - sym__plain_type_without_special, STATE(4257), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2911), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2463), 3, + ACTIONS(2371), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2470), 3, + STATE(2416), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282698,725 +283248,617 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [68070] = 27, + [68474] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(4996), 1, + anon_sym_as, + ACTIONS(5002), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5012), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5014), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5016), 1, + anon_sym_DASH_DASH, + ACTIONS(5018), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5020), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5022), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5775), 1, + anon_sym_CARET, + STATE(2134), 1, sym_argument_list, - STATE(4330), 1, + STATE(2135), 1, + sym_or_block, + STATE(4203), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(4994), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5008), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5765), 2, + ACTIONS(5032), 2, anon_sym_is, anon_sym_BANGis, - STATE(2912), 2, + ACTIONS(5034), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2917), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5006), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5010), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5773), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68168] = 27, + [68572] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, - anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, - anon_sym_CARET, - ACTIONS(5367), 1, - anon_sym_AMP_AMP, - ACTIONS(5369), 1, - anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5767), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2913), 2, + ACTIONS(5777), 1, + anon_sym_DOLLARelse, + STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(2103), 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(5357), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68266] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5241), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, - anon_sym_QMARK, - ACTIONS(5245), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_LBRACK2, - ACTIONS(5251), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, - anon_sym_as, - ACTIONS(5293), 1, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, - anon_sym_or, - ACTIONS(5365), 1, anon_sym_CARET, - ACTIONS(5367), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, - sym_or_block, - STATE(2482), 1, - sym_argument_list, - STATE(4330), 1, - sym_type_parameters, - ACTIONS(5249), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5769), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(2914), 2, + anon_sym_in, + anon_sym_BANGin, + [68628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(2445), 11, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - ACTIONS(5359), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(2448), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 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, - [68364] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [68682] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5771), 2, + ACTIONS(5779), 2, anon_sym_is, anon_sym_BANGis, - STATE(2915), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68462] = 27, + [68780] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5629), 1, + ACTIONS(5627), 1, anon_sym_CARET, - ACTIONS(5631), 1, + ACTIONS(5629), 1, anon_sym_AMP_AMP, - ACTIONS(5633), 1, + ACTIONS(5631), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, + ACTIONS(5303), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5625), 2, + ACTIONS(5623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5635), 2, + ACTIONS(5633), 2, anon_sym_in, anon_sym_BANGin, - STATE(2916), 2, + STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 3, + ACTIONS(5617), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5623), 3, + ACTIONS(5621), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5627), 4, + ACTIONS(5625), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5621), 5, + ACTIONS(5619), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68560] = 27, + [68878] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5773), 2, + ACTIONS(5555), 2, anon_sym_is, anon_sym_BANGis, - STATE(2917), 2, + STATE(2922), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68658] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(869), 1, - anon_sym_LBRACK2, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5775), 1, - anon_sym_DOT_DOT_DOT, - STATE(4246), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2918), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2463), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [68752] = 27, + [68976] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5305), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2919), 2, + ACTIONS(5781), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68850] = 27, + [69074] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5777), 2, + ACTIONS(5783), 2, anon_sym_is, anon_sym_BANGis, - STATE(2920), 2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68948] = 27, + [69172] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5241), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5243), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5245), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5247), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5251), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5275), 1, anon_sym_as, - ACTIONS(5293), 1, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, - ACTIONS(5295), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - ACTIONS(5303), 1, + ACTIONS(5301), 1, anon_sym_or, - ACTIONS(5365), 1, + ACTIONS(5401), 1, anon_sym_CARET, - ACTIONS(5367), 1, + ACTIONS(5403), 1, anon_sym_AMP_AMP, - ACTIONS(5369), 1, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - STATE(2480), 1, + STATE(2424), 1, sym_or_block, - STATE(2482), 1, + STATE(2426), 1, sym_argument_list, - STATE(4330), 1, + STATE(4331), 1, sym_type_parameters, - ACTIONS(5249), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5361), 2, + ACTIONS(5303), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5371), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5779), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2921), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - ACTIONS(5355), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5359), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5363), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5357), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69046] = 6, + [69270] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5781), 1, - anon_sym_DOLLARelse, - STATE(2922), 2, + ACTIONS(5104), 1, + anon_sym_LBRACE, + ACTIONS(5785), 1, + anon_sym_COMMA, + STATE(3977), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 11, + ACTIONS(3035), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -283428,7 +283870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2137), 27, + ACTIONS(3033), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283439,11 +283881,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, @@ -283456,313 +283896,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69102] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(869), 1, - anon_sym_LBRACK2, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_DOT_DOT_DOT, - STATE(4257), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2923), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2463), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [69196] = 27, + [69330] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5002), 1, + ACTIONS(5253), 1, anon_sym_LPAREN, - ACTIONS(5012), 1, + ACTIONS(5255), 1, anon_sym_LBRACK, - ACTIONS(5014), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5016), 1, - anon_sym_DASH_DASH, - ACTIONS(5018), 1, + ACTIONS(5257), 1, anon_sym_QMARK, - ACTIONS(5020), 1, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5022), 1, + ACTIONS(5261), 1, anon_sym_LBRACK2, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5030), 1, + ACTIONS(5265), 1, anon_sym_POUND_LBRACK, - ACTIONS(5785), 1, + ACTIONS(5275), 1, + anon_sym_as, + ACTIONS(5291), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, anon_sym_CARET, - STATE(2118), 1, - sym_argument_list, - STATE(2120), 1, + ACTIONS(5403), 1, + anon_sym_AMP_AMP, + ACTIONS(5405), 1, + anon_sym_PIPE_PIPE, + STATE(2424), 1, sym_or_block, - STATE(4207), 1, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, sym_type_parameters, - ACTIONS(4994), 2, + ACTIONS(5263), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5397), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5032), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5034), 2, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - STATE(2924), 2, + ACTIONS(5787), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(5004), 3, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5006), 3, + ACTIONS(5395), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5399), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5783), 5, + ACTIONS(5393), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69294] = 5, + [69428] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2925), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2439), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, anon_sym_QMARK, + ACTIONS(5259), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2442), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5265), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5275), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(5291), 1, anon_sym_PLUS_PLUS, + ACTIONS(5293), 1, anon_sym_DASH_DASH, + ACTIONS(5301), 1, + anon_sym_or, + ACTIONS(5401), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5403), 1, anon_sym_AMP_AMP, + ACTIONS(5405), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2424), 1, + sym_or_block, + STATE(2426), 1, + sym_argument_list, + STATE(4331), 1, + sym_type_parameters, + ACTIONS(5263), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5397), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5407), 2, anon_sym_in, anon_sym_BANGin, - [69348] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5787), 1, - anon_sym_DOLLARelse, - STATE(2926), 2, + ACTIONS(5789), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 11, + ACTIONS(5391), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_LBRACK2, + ACTIONS(5395), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2329), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5399), 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(5393), 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, - [69404] = 8, + [69526] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LBRACE, - ACTIONS(5789), 1, - anon_sym_COMMA, - STATE(3978), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(2927), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2965), 11, - 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_PIPE, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(877), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2963), 25, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(2175), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(3968), 1, anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5755), 1, + anon_sym_DOT_DOT_DOT, + STATE(4247), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2929), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2371), 3, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [69464] = 8, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [69620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_LBRACE, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - STATE(2928), 2, + STATE(2912), 1, + sym_block, + STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -283774,9 +284129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2171), 24, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -283784,6 +284140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -283799,7 +284156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69524] = 26, + [69675] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -283814,49 +284171,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(869), 1, - anon_sym_LBRACK2, + anon_sym_fn, ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(3970), 1, + anon_sym_struct, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5601), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 1, + anon_sym_mut, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5775), 1, - anon_sym_DOT_DOT_DOT, - STATE(4246), 1, + ACTIONS(5611), 1, + anon_sym_shared, + STATE(3068), 1, + sym_mutability_modifiers, + STATE(4195), 1, + sym_type_parameter_declaration, + STATE(4379), 1, sym_plain_type, - STATE(4250), 1, - sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2929), 2, + STATE(2931), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2463), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2470), 3, + STATE(2416), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283869,15 +284225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [69620] = 5, + [69770] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2930), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 11, + ACTIONS(3023), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -283889,7 +284245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3037), 27, + ACTIONS(3021), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283917,15 +284273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69673] = 5, + [69823] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2931), 2, + STATE(1432), 1, + sym_block, + STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3346), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -283937,9 +284295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3344), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -283948,11 +284307,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, @@ -283965,14 +284322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69726] = 6, + [69878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2926), 1, + STATE(259), 1, sym_block, - STATE(2932), 2, + STATE(2934), 2, sym_line_comment, sym_block_comment, ACTIONS(2823), 11, @@ -284014,17 +284371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69781] = 6, + [69933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2393), 1, - sym_block, - STATE(2933), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(3069), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284036,10 +284391,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(3067), 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, + [69986] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5153), 2, anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3033), 25, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284063,17 +284468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69836] = 6, + [70041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2608), 1, - sym_block, - STATE(2934), 2, + STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(3019), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284085,10 +284488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(3017), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284097,9 +284499,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, @@ -284112,50 +284516,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69891] = 23, + [70094] = 23, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(945), 1, + ACTIONS(1017), 1, anon_sym_LPAREN, - ACTIONS(951), 1, + ACTIONS(1023), 1, anon_sym_struct, ACTIONS(3804), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(5795), 1, + ACTIONS(5793), 1, anon_sym_STAR, - ACTIONS(5797), 1, + ACTIONS(5795), 1, anon_sym_QMARK, - ACTIONS(5799), 1, + ACTIONS(5797), 1, anon_sym_BANG, - ACTIONS(5801), 1, + ACTIONS(5799), 1, anon_sym_LBRACK2, - ACTIONS(5803), 1, + ACTIONS(5801), 1, anon_sym_AMP, - ACTIONS(5805), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(5807), 1, + ACTIONS(5805), 1, anon_sym_map_LBRACK, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_atomic, - STATE(1109), 1, + STATE(1084), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2935), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(877), 4, + ACTIONS(855), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -284165,7 +284569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284178,15 +284582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [69980] = 5, + [70183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2936), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 11, + ACTIONS(3015), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284198,7 +284602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 27, + ACTIONS(3013), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284226,17 +284630,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70033] = 6, + [70236] = 23, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(1017), 1, + anon_sym_LPAREN, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(5791), 1, + anon_sym_fn, + ACTIONS(5793), 1, + anon_sym_STAR, + ACTIONS(5795), 1, + anon_sym_QMARK, + ACTIONS(5797), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LBRACK2, + ACTIONS(5801), 1, + anon_sym_AMP, + ACTIONS(5803), 1, + anon_sym_shared, + ACTIONS(5805), 1, + anon_sym_map_LBRACK, + ACTIONS(5807), 1, + anon_sym_chan, + ACTIONS(5809), 1, + anon_sym_thread, + ACTIONS(5811), 1, + anon_sym_atomic, + STATE(1088), 1, + sym_plain_type, + STATE(4454), 1, + sym_reference_expression, + STATE(2940), 2, + sym_line_comment, + sym_block_comment, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(859), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1005), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1059), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [70325] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2257), 1, - sym_block, - STATE(2937), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + STATE(2441), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2941), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(857), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [70414] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2335), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284248,10 +284782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(2337), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284260,9 +284793,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, @@ -284275,14 +284810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70088] = 6, + [70467] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1574), 1, + STATE(1573), 1, sym_block, - STATE(2938), 2, + STATE(2943), 2, sym_line_comment, sym_block_comment, ACTIONS(2823), 11, @@ -284324,15 +284859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70143] = 5, + [70522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2939), 2, + STATE(998), 1, + sym_block, + STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284344,9 +284881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3021), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284355,11 +284893,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, @@ -284372,84 +284908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70196] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - STATE(2477), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2940), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(875), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [70285] = 6, + [70577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2941), 2, + STATE(1295), 1, + sym_block, + STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284461,9 +284930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 25, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284487,14 +284957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70340] = 6, + [70632] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(311), 1, + STATE(2601), 1, sym_block, - STATE(2942), 2, + STATE(2946), 2, sym_line_comment, sym_block_comment, ACTIONS(2823), 11, @@ -284536,17 +285006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70395] = 6, + [70687] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1428), 1, - sym_block, - STATE(2943), 2, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(2471), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284558,10 +285026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(2469), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284570,9 +285037,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, @@ -284585,15 +285054,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70450] = 5, + [70740] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2944), 2, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 11, + ACTIONS(2175), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284605,7 +285081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3017), 27, + ACTIONS(2173), 23, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284615,12 +285091,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, @@ -284631,19 +285104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - [70503] = 6, + [70799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2016), 1, - sym_block, - STATE(2945), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(3250), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284655,10 +285125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(3248), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284667,9 +285136,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, @@ -284682,15 +285153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70558] = 5, + [70852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2946), 2, + STATE(1155), 1, + sym_block, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284702,9 +285175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2471), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -284713,11 +285187,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, @@ -284730,146 +285202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70611] = 23, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(945), 1, - anon_sym_LPAREN, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_fn, - ACTIONS(5795), 1, - anon_sym_STAR, - ACTIONS(5797), 1, - anon_sym_QMARK, - ACTIONS(5799), 1, - anon_sym_BANG, - ACTIONS(5801), 1, - anon_sym_LBRACK2, - ACTIONS(5803), 1, - anon_sym_AMP, - ACTIONS(5805), 1, - anon_sym_shared, - ACTIONS(5807), 1, - anon_sym_map_LBRACK, - ACTIONS(5809), 1, - anon_sym_chan, - ACTIONS(5811), 1, - anon_sym_thread, - ACTIONS(5813), 1, - anon_sym_atomic, - STATE(1084), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2947), 2, - sym_line_comment, - sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(821), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1005), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1039), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [70700] = 23, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(945), 1, - anon_sym_LPAREN, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_fn, - ACTIONS(5795), 1, - anon_sym_STAR, - ACTIONS(5797), 1, - anon_sym_QMARK, - ACTIONS(5799), 1, - anon_sym_BANG, - ACTIONS(5801), 1, - anon_sym_LBRACK2, - ACTIONS(5803), 1, - anon_sym_AMP, - ACTIONS(5805), 1, - anon_sym_shared, - ACTIONS(5807), 1, - anon_sym_map_LBRACK, - ACTIONS(5809), 1, - anon_sym_chan, - ACTIONS(5811), 1, - anon_sym_thread, - ACTIONS(5813), 1, - anon_sym_atomic, - STATE(1090), 1, - sym_plain_type, - STATE(4457), 1, - sym_reference_expression, - STATE(2948), 2, - sym_line_comment, - sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(881), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1005), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1039), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [70789] = 6, + [70907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(998), 1, + STATE(2016), 1, sym_block, - STATE(2949), 2, + STATE(2951), 2, sym_line_comment, sym_block_comment, ACTIONS(2823), 11, @@ -284911,15 +285251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70844] = 5, + [70962] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2950), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 11, + ACTIONS(2873), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -284931,7 +285271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2417), 27, + ACTIONS(2871), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284959,165 +285299,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70897] = 6, + [71015] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2606), 1, - sym_block, - STATE(2951), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2823), 11, - 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_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2821), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [70952] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2952), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2335), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5605), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(5607), 1, anon_sym_LBRACK2, + ACTIONS(5609), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2337), 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, - [71005] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2178), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_LBRACE, - ACTIONS(5815), 2, - anon_sym_COMMA, - anon_sym_in, + STATE(2445), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2171), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_BANGin, - [71064] = 6, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(817), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [71104] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1154), 1, - sym_block, STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(3035), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285129,10 +285385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(3033), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -285141,9 +285396,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, @@ -285156,7 +285413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71119] = 5, + [71157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285164,7 +285421,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 11, + ACTIONS(2885), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285176,7 +285433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3322), 27, + ACTIONS(2883), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285204,7 +285461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71172] = 5, + [71210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285212,7 +285469,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 11, + ACTIONS(3286), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285224,7 +285481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2875), 27, + ACTIONS(3284), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285252,7 +285509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71225] = 5, + [71263] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285260,7 +285517,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 11, + ACTIONS(2845), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285272,7 +285529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2867), 27, + ACTIONS(2843), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285300,15 +285557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71278] = 5, + [71316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(2015), 1, + sym_block, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285320,9 +285579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3292), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -285331,11 +285591,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, @@ -285348,60 +285606,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71331] = 23, - ACTIONS(3), 1, + [71371] = 23, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1017), 1, + anon_sym_LPAREN, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5793), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5795), 1, + anon_sym_QMARK, + ACTIONS(5797), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5799), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5801), 1, anon_sym_AMP, - STATE(2464), 1, + ACTIONS(5803), 1, + anon_sym_shared, + ACTIONS(5805), 1, + anon_sym_map_LBRACK, + ACTIONS(5807), 1, + anon_sym_chan, + ACTIONS(5809), 1, + anon_sym_thread, + ACTIONS(5811), 1, + anon_sym_atomic, + STATE(1110), 1, sym_plain_type, - STATE(4607), 1, + STATE(4454), 1, sym_reference_expression, STATE(2959), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(879), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2470), 4, + ACTIONS(821), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285414,15 +285672,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [71420] = 5, + [71460] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(2585), 1, + sym_block, STATE(2960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285434,9 +285694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3252), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -285445,11 +285706,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, @@ -285462,7 +285721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71473] = 5, + [71515] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285470,7 +285729,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2961), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 11, + ACTIONS(3340), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285482,7 +285741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2987), 27, + ACTIONS(3338), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285510,7 +285769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71526] = 5, + [71568] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285518,7 +285777,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2962), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 11, + ACTIONS(2435), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285530,7 +285789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2923), 27, + ACTIONS(2433), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285558,15 +285817,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71579] = 5, + [71621] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + STATE(2489), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 11, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(853), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [71710] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2964), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3336), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285578,7 +285903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2879), 27, + ACTIONS(3334), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285606,15 +285931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71632] = 5, + [71763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2964), 2, + STATE(2965), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 11, + ACTIONS(2849), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285626,7 +285951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2385), 27, + ACTIONS(2847), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285654,17 +285979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71685] = 6, + [71816] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2013), 1, - sym_block, - STATE(2965), 2, + STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(2377), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285676,10 +285999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(2375), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -285688,9 +286010,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, @@ -285703,81 +286027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71740] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - STATE(2468), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, - STATE(2966), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(817), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [71829] = 5, + [71869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(2392), 1, + sym_block, STATE(2967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285789,9 +286049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2635), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -285800,11 +286061,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, @@ -285817,7 +286076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71882] = 5, + [71924] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285825,7 +286084,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 11, + ACTIONS(2929), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285837,7 +286096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2631), 27, + ACTIONS(2927), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285865,7 +286124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71935] = 5, + [71977] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285873,7 +286132,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 11, + ACTIONS(2881), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285885,7 +286144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2625), 27, + ACTIONS(2879), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285913,7 +286172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71988] = 5, + [72030] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285921,7 +286180,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2970), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 11, + ACTIONS(2383), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285933,7 +286192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2641), 27, + ACTIONS(2381), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -285961,7 +286220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72041] = 5, + [72083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285969,7 +286228,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 11, + ACTIONS(2639), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -285981,7 +286240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2645), 27, + ACTIONS(2637), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286009,7 +286268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72094] = 5, + [72136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286017,7 +286276,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 11, + ACTIONS(3262), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286029,7 +286288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3025), 27, + ACTIONS(3260), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286057,17 +286316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72147] = 6, + [72189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1292), 1, - sym_block, STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 11, + ACTIONS(2631), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286079,10 +286336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2821), 26, + ACTIONS(2629), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -286091,9 +286347,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, @@ -286106,15 +286364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72202] = 5, + [72242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(2257), 1, + sym_block, STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3262), 11, + ACTIONS(2823), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286126,9 +286386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3260), 27, + ACTIONS(2821), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -286137,11 +286398,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, @@ -286154,84 +286413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72255] = 26, + [72297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5605), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5607), 1, - anon_sym_mut, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - ACTIONS(5615), 1, - anon_sym_shared, - STATE(3069), 1, - sym_mutability_modifiers, - STATE(4189), 1, - sym_type_parameter_declaration, - STATE(4379), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, STATE(2975), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2428), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [72350] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2976), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3278), 11, + ACTIONS(2627), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286243,7 +286433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3276), 27, + ACTIONS(2625), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286271,15 +286461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72403] = 5, + [72350] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2977), 2, + STATE(2976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 11, + ACTIONS(2647), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286291,7 +286481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3330), 27, + ACTIONS(2645), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286319,15 +286509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72456] = 5, + [72403] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2978), 2, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 11, + ACTIONS(2651), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286339,7 +286529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2843), 27, + ACTIONS(2649), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286367,15 +286557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72509] = 5, + [72456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2979), 2, + STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 11, + ACTIONS(3256), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286387,7 +286577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2863), 27, + ACTIONS(3254), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286415,15 +286605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72562] = 5, + [72509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2980), 2, + STATE(2979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 11, + ACTIONS(3274), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286435,7 +286625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3264), 27, + ACTIONS(3272), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286463,17 +286653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72615] = 6, + [72562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5817), 1, - anon_sym_RBRACK, - STATE(2981), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3332), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286485,7 +286673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3330), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286496,9 +286684,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, @@ -286511,66 +286701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72669] = 7, + [72615] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5819), 1, - anon_sym_RBRACK, - STATE(2982), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3031), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3029), 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, - [72725] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5821), 1, + ACTIONS(5815), 1, anon_sym_RBRACK, - STATE(2983), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286582,8 +286725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -286608,19 +286750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72779] = 7, + [72671] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5823), 1, + ACTIONS(5817), 1, anon_sym_RBRACK, - STATE(2984), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286632,7 +286774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -286657,17 +286799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72835] = 6, + [72727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_RBRACK, - STATE(2985), 2, + ACTIONS(5819), 1, + anon_sym_RPAREN, + STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286679,7 +286821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286705,19 +286847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72889] = 7, + [72781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5825), 1, - anon_sym_RPAREN, - STATE(2986), 2, + ACTIONS(5821), 1, + anon_sym_RBRACK, + STATE(2984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286729,7 +286869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -286754,19 +286895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72945] = 7, + [72835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5827), 1, + ACTIONS(5823), 1, anon_sym_RBRACK, - STATE(2987), 2, + STATE(2985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286778,7 +286917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -286803,17 +286943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73001] = 6, + [72889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5825), 1, - anon_sym_RPAREN, - STATE(2988), 2, + ACTIONS(5823), 1, + anon_sym_RBRACK, + STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286825,7 +286965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286851,17 +286991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73055] = 6, + [72943] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, + ACTIONS(5825), 1, anon_sym_RBRACK, - STATE(2989), 2, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286873,7 +287013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286899,19 +287039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73109] = 7, + [72997] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5829), 1, + ACTIONS(5827), 1, anon_sym_RPAREN, - STATE(2990), 2, + STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3035), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286923,7 +287061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3033), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -286948,17 +287087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73165] = 6, + [73051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, + ACTIONS(5825), 1, anon_sym_RBRACK, - STATE(2991), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -286970,7 +287109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -286996,17 +287135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73219] = 6, + [73105] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5825), 1, anon_sym_RBRACK, - STATE(2992), 2, + STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287018,8 +287159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287044,17 +287184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73273] = 6, + [73161] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5126), 1, + anon_sym_DOT, ACTIONS(5829), 1, anon_sym_RPAREN, - STATE(2993), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287066,8 +287208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287092,17 +287233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73327] = 6, + [73217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5823), 1, - anon_sym_RBRACK, - STATE(2994), 2, + ACTIONS(5829), 1, + anon_sym_RPAREN, + STATE(2992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287114,7 +287255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287140,17 +287281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73381] = 6, + [73271] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5817), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5831), 1, anon_sym_RBRACK, - STATE(2995), 2, + STATE(2993), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287162,8 +287305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287188,19 +287330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73435] = 7, + [73327] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5817), 1, + ACTIONS(5831), 1, anon_sym_RBRACK, - STATE(2996), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287212,56 +287352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 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, - [73491] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(3043), 25, anon_sym_DOT, - ACTIONS(5833), 1, - anon_sym_RPAREN, - STATE(2997), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3031), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3029), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287286,17 +287378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73547] = 6, + [73381] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5833), 1, anon_sym_RPAREN, - STATE(2998), 2, + STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287308,7 +287400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287334,66 +287426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73601] = 7, + [73435] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5835), 1, - anon_sym_RBRACK, - STATE(2999), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3031), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3029), 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, - [73657] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5833), 1, anon_sym_RPAREN, - STATE(3000), 2, + STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287405,8 +287450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287431,17 +287475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73711] = 6, + [73491] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_RPAREN, - STATE(3001), 2, + ACTIONS(5831), 1, + anon_sym_RBRACK, + STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287453,7 +287497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287479,17 +287523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73765] = 6, + [73545] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5819), 1, anon_sym_RPAREN, - STATE(3002), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287501,8 +287547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287527,19 +287572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73819] = 7, + [73601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5841), 1, + ACTIONS(5835), 1, anon_sym_RPAREN, - STATE(3003), 2, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3035), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287551,7 +287594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3033), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287576,17 +287620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73875] = 6, + [73655] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, + ACTIONS(5837), 1, anon_sym_RPAREN, - STATE(3004), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287598,7 +287642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287624,19 +287668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73929] = 7, + [73709] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5837), 1, - anon_sym_RPAREN, - STATE(3005), 2, + ACTIONS(5839), 1, + anon_sym_RBRACK, + STATE(3001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287648,7 +287690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(2863), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287673,17 +287716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73985] = 6, + [73763] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, + ACTIONS(5817), 1, anon_sym_RBRACK, - STATE(3006), 2, + STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287695,7 +287738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287721,19 +287764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74039] = 7, + [73817] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5831), 1, + ACTIONS(5817), 1, anon_sym_RBRACK, - STATE(3007), 2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287745,7 +287786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -287770,17 +287812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74095] = 6, + [73871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5845), 1, + ACTIONS(5841), 1, anon_sym_RBRACK, - STATE(3008), 2, + STATE(3004), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287792,7 +287834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287818,17 +287860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74149] = 6, + [73925] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5845), 1, + ACTIONS(5843), 1, anon_sym_RBRACK, - STATE(3009), 2, + STATE(3005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287840,7 +287882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287866,17 +287908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74203] = 6, + [73979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, + ACTIONS(5845), 1, anon_sym_RBRACK, - STATE(3010), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287888,7 +287930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287914,17 +287956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74257] = 6, + [74033] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, + ACTIONS(5845), 1, anon_sym_RBRACK, - STATE(3011), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287936,7 +287978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -287962,19 +288004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74311] = 7, + [74087] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5847), 1, + ACTIONS(5843), 1, anon_sym_RBRACK, - STATE(3012), 2, + STATE(3008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -287986,7 +288028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288011,17 +288053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74367] = 6, + [74143] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5849), 1, - anon_sym_RBRACK, - STATE(3013), 2, + ACTIONS(5847), 1, + anon_sym_RPAREN, + STATE(3009), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288033,7 +288075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288059,19 +288101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74421] = 7, + [74197] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, ACTIONS(5845), 1, anon_sym_RBRACK, - STATE(3014), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288083,7 +288125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288108,17 +288150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74477] = 6, + [74253] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, - anon_sym_RBRACK, - STATE(3015), 2, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5847), 1, + anon_sym_RPAREN, + STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288130,8 +288174,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 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, + [74309] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_DOT, + ACTIONS(5823), 1, + anon_sym_RBRACK, + STATE(3012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288156,17 +288248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74531] = 6, + [74365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5851), 1, - anon_sym_LBRACE, - STATE(3016), 2, + ACTIONS(5841), 1, + anon_sym_RBRACK, + STATE(3013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288178,7 +288270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288204,17 +288296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74585] = 6, + [74419] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5849), 1, anon_sym_RBRACK, - STATE(3017), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288226,7 +288318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288252,17 +288344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74639] = 6, + [74473] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5819), 1, + ACTIONS(5851), 1, anon_sym_RBRACK, - STATE(3018), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288274,7 +288366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288300,17 +288392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74693] = 6, + [74527] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5853), 1, - anon_sym_RPAREN, - STATE(3019), 2, + ACTIONS(5849), 1, + anon_sym_RBRACK, + STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288322,7 +288414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288348,17 +288440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74747] = 6, + [74581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5819), 1, + ACTIONS(5853), 1, anon_sym_RBRACK, - STATE(3020), 2, + STATE(3017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288370,7 +288462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288396,17 +288488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74801] = 6, + [74635] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5855), 1, + ACTIONS(5853), 1, anon_sym_RBRACK, - STATE(3021), 2, + STATE(3018), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288418,7 +288510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288444,17 +288536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74855] = 6, + [74689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5857), 1, - anon_sym_RBRACK, - STATE(3022), 2, + ACTIONS(5855), 1, + anon_sym_LBRACE, + STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288466,7 +288558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288492,17 +288584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74909] = 6, + [74743] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5857), 1, + ACTIONS(5851), 1, anon_sym_RBRACK, - STATE(3023), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288514,7 +288606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288540,19 +288632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74963] = 7, + [74797] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5857), 1, + ACTIONS(5851), 1, anon_sym_RBRACK, - STATE(3024), 2, + STATE(3021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288564,7 +288656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288589,17 +288681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75019] = 6, + [74853] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5859), 1, - anon_sym_RPAREN, - STATE(3025), 2, + ACTIONS(5857), 1, + anon_sym_RBRACK, + STATE(3022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288611,7 +288703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288637,19 +288729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75073] = 7, + [74907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5861), 1, - anon_sym_RPAREN, - STATE(3026), 2, + ACTIONS(5859), 1, + anon_sym_RBRACK, + STATE(3023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288661,7 +288751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(2863), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288686,19 +288777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75129] = 7, + [74961] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5863), 1, + ACTIONS(5859), 1, anon_sym_RBRACK, - STATE(3027), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288710,7 +288799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288735,19 +288825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75185] = 7, + [75015] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, ACTIONS(5859), 1, - anon_sym_RPAREN, - STATE(3028), 2, + anon_sym_RBRACK, + STATE(3025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288759,7 +288849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288784,17 +288874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75241] = 6, + [75071] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5861), 1, anon_sym_RPAREN, - STATE(3029), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288806,7 +288896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288832,17 +288922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75295] = 6, + [75125] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5855), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5821), 1, anon_sym_RBRACK, - STATE(3030), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288854,8 +288946,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 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, + [75181] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_DOT, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(3028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288880,17 +289020,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75349] = 6, + [75237] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5861), 1, + anon_sym_RPAREN, + STATE(3029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3043), 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, + [75293] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5857), 1, anon_sym_RBRACK, - STATE(3031), 2, + STATE(3030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288902,7 +289091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -288928,19 +289117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75403] = 7, + [75347] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5865), 1, + ACTIONS(5849), 1, anon_sym_RBRACK, - STATE(3032), 2, + STATE(3031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288952,7 +289141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -288977,17 +289166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75459] = 6, + [75403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - anon_sym_RBRACK, - STATE(3033), 2, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(3032), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -288999,7 +289188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289025,17 +289214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75513] = 6, + [75457] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5867), 1, - anon_sym_RBRACK, - STATE(3034), 2, + ACTIONS(5865), 1, + anon_sym_RPAREN, + STATE(3033), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3035), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289047,7 +289236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3033), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289073,17 +289262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75567] = 6, + [75511] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5126), 1, + anon_sym_DOT, ACTIONS(5867), 1, - anon_sym_RBRACK, - STATE(3035), 2, + anon_sym_RPAREN, + STATE(3034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289095,8 +289286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289121,19 +289311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75621] = 7, + [75567] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5867), 1, + ACTIONS(5839), 1, anon_sym_RBRACK, - STATE(3036), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289145,7 +289335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289170,19 +289360,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75677] = 7, + [75623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5815), 1, + anon_sym_RBRACK, + STATE(3036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2865), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2863), 25, anon_sym_DOT, - ACTIONS(5869), 1, - anon_sym_RPAREN, + 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, + [75677] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5815), 1, + anon_sym_RBRACK, STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289194,7 +289430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289219,17 +289456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75733] = 6, + [75731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5869), 1, - anon_sym_RPAREN, + ACTIONS(5843), 1, + anon_sym_RBRACK, STATE(3038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289241,7 +289478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289267,17 +289504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75787] = 6, + [75785] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5853), 1, anon_sym_RBRACK, STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289289,8 +289528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289320,12 +289558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, + ACTIONS(5869), 1, anon_sym_RBRACK, STATE(3040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289337,7 +289575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289363,19 +289601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75895] = 7, + [75895] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5871), 1, + ACTIONS(5869), 1, anon_sym_RBRACK, STATE(3041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289387,7 +289623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289412,19 +289649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75951] = 7, + [75949] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5821), 1, + ACTIONS(5869), 1, anon_sym_RBRACK, STATE(3042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289436,7 +289673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289461,19 +289698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76007] = 7, + [76005] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5873), 1, - anon_sym_RPAREN, + ACTIONS(5841), 1, + anon_sym_RBRACK, STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289485,7 +289722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289510,17 +289747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76063] = 6, + [76061] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5875), 1, + ACTIONS(5867), 1, anon_sym_RPAREN, STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289532,7 +289769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289558,17 +289795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76117] = 6, + [76115] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5863), 1, - anon_sym_RBRACK, + ACTIONS(5871), 1, + anon_sym_RPAREN, STATE(3045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289580,7 +289817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289606,17 +289843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76171] = 6, + [76169] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5863), 1, + ACTIONS(5821), 1, anon_sym_RBRACK, STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289628,7 +289865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289654,17 +289891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76225] = 6, + [76223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 1, + ACTIONS(5873), 1, anon_sym_RPAREN, STATE(3047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289676,7 +289913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289702,19 +289939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76279] = 7, + [76277] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5877), 1, + ACTIONS(5873), 1, anon_sym_RPAREN, STATE(3048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289726,7 +289963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289751,19 +289988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76335] = 7, + [76333] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, ACTIONS(5875), 1, anon_sym_RPAREN, STATE(3049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289775,7 +290012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289800,17 +290037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76391] = 6, + [76389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_RBRACK, + ACTIONS(5875), 1, + anon_sym_RPAREN, STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289822,7 +290059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -289848,19 +290085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76445] = 7, + [76443] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_DOT, - ACTIONS(5849), 1, - anon_sym_RBRACK, + ACTIONS(5877), 1, + anon_sym_RPAREN, STATE(3051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289872,7 +290107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289897,17 +290133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76501] = 6, + [76497] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_RBRACK, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5877), 1, + anon_sym_RPAREN, STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289919,8 +290157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289945,19 +290182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76555] = 7, + [76553] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5855), 1, + ACTIONS(5857), 1, anon_sym_RBRACK, STATE(3053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -289969,7 +290206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -289994,19 +290231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76611] = 7, + [76609] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5879), 1, - anon_sym_RBRACK, + ACTIONS(5871), 1, + anon_sym_RPAREN, STATE(3054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290018,7 +290255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -290043,17 +290280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76667] = 6, + [76665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, + ACTIONS(5879), 1, anon_sym_RBRACK, STATE(3055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(2865), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290065,7 +290302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(2863), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -290091,17 +290328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76721] = 6, + [76719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_RPAREN, + ACTIONS(5879), 1, + anon_sym_RBRACK, STATE(3056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290113,7 +290350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -290139,17 +290376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76775] = 6, + [76773] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5823), 1, - anon_sym_RBRACK, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5837), 1, + anon_sym_RPAREN, STATE(3057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290161,8 +290400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2839), 25, - anon_sym_DOT, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -290192,12 +290430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5873), 1, - anon_sym_RPAREN, + ACTIONS(5839), 1, + anon_sym_RBRACK, STATE(3058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290209,7 +290447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -290240,14 +290478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(5881), 1, - anon_sym_RPAREN, + ACTIONS(5879), 1, + anon_sym_RBRACK, STATE(3059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 11, + ACTIONS(3045), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -290259,7 +290497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3029), 24, + ACTIONS(3043), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -290289,54 +290527,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(4074), 1, - anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5885), 1, + ACTIONS(5883), 1, anon_sym_EQ, - ACTIONS(5887), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(5897), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, - STATE(1804), 1, + STATE(3778), 1, sym__global_var_value, - STATE(1808), 1, + STATE(3786), 1, sym_plain_type, - STATE(4598), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1722), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3060), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290354,54 +290592,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(4074), 1, + anon_sym_struct, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(5901), 1, + ACTIONS(5899), 1, anon_sym_EQ, - ACTIONS(5903), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(3771), 1, + STATE(1835), 1, sym__global_var_value, - STATE(3786), 1, + STATE(1840), 1, sym_plain_type, - STATE(4457), 1, + STATE(4601), 1, sym_reference_expression, + STATE(1730), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3061), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1005), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290429,42 +290667,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5915), 1, + ACTIONS(5913), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3062), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290492,42 +290730,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5917), 1, + ACTIONS(5915), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3063), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290545,52 +290783,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4044), 1, + anon_sym_chan, + ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, + anon_sym_atomic, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5921), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5919), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1707), 1, sym_plain_type, - STATE(4607), 1, + STATE(1877), 1, + sym_sum_type, + STATE(4425), 1, sym_reference_expression, + STATE(1699), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3064), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290618,42 +290856,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5921), 1, + ACTIONS(5931), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3065), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290681,42 +290919,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5923), 1, + ACTIONS(5933), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3066), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290729,44 +290967,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77547] = 10, + [77547] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2443), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, + anon_sym_BANG, + ACTIONS(5607), 1, + anon_sym_LBRACK2, + ACTIONS(5609), 1, + anon_sym_AMP, + ACTIONS(5935), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3067), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4977), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4979), 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(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290779,7 +291030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77607] = 23, + [77633] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -290794,42 +291045,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5925), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5937), 1, + anon_sym_DOT_DOT_DOT, + STATE(4232), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3068), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290842,7 +291093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77693] = 23, + [77719] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -290857,42 +291108,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5927), 1, - anon_sym_DOT_DOT_DOT, - STATE(4232), 1, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3069), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290905,7 +291156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77779] = 23, + [77805] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -290920,42 +291171,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5929), 1, + ACTIONS(5941), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3070), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290968,57 +291219,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77865] = 23, + [77891] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, - sym_identifier, - ACTIONS(4024), 1, + STATE(2484), 1, + sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(3071), 2, + sym_line_comment, + sym_block_comment, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(4959), 7, anon_sym_fn, - ACTIONS(4028), 1, anon_sym_struct, - ACTIONS(4038), 1, + sym_identifier, anon_sym_shared, - ACTIONS(4042), 1, anon_sym_chan, - ACTIONS(4044), 1, anon_sym_thread, - ACTIONS(4046), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(4961), 8, anon_sym_LPAREN, - ACTIONS(5933), 1, anon_sym_STAR, - ACTIONS(5935), 1, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(5937), 1, anon_sym_BANG, - ACTIONS(5939), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, anon_sym_AMP, - ACTIONS(5943), 1, anon_sym_map_LBRACK, - STATE(1702), 1, - sym_plain_type, - STATE(1872), 1, - sym_sum_type, - STATE(4427), 1, - sym_reference_expression, - STATE(1699), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3071), 2, - sym_line_comment, - sym_block_comment, - STATE(1740), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1712), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291046,42 +291284,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5945), 1, + ACTIONS(5943), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3072), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291109,42 +291347,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5947), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5755), 1, + anon_sym_DOT_DOT_DOT, + STATE(4247), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3073), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291172,42 +291410,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5927), 1, + ACTIONS(5937), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5949), 1, + ACTIONS(5945), 1, sym_identifier, STATE(4232), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3074), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291235,42 +291473,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5951), 1, + ACTIONS(5947), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3075), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291288,52 +291526,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, - ACTIONS(4044), 1, - anon_sym_thread, - ACTIONS(4046), 1, - anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5935), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5943), 1, - anon_sym_map_LBRACK, - STATE(1700), 1, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(1837), 1, - sym_sum_type, - STATE(4427), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1699), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3076), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291361,42 +291599,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5953), 1, + ACTIONS(5951), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3077), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291424,42 +291662,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5775), 1, - anon_sym_DOT_DOT_DOT, - STATE(4246), 1, + ACTIONS(5953), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3078), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291487,42 +291725,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5955), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3079), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291550,42 +291788,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_DOT_DOT_DOT, - STATE(4257), 1, + ACTIONS(5957), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3080), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291613,42 +291851,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5957), 1, + ACTIONS(5959), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3081), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291666,52 +291904,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, - ACTIONS(4044), 1, - anon_sym_thread, - ACTIONS(4046), 1, - anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5935), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5943), 1, - anon_sym_map_LBRACK, - STATE(1711), 1, + ACTIONS(5961), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(1857), 1, - sym_sum_type, - STATE(4427), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1699), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3082), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291739,42 +291977,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5959), 1, + ACTIONS(5963), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3083), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291792,52 +292030,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4044), 1, + anon_sym_chan, + ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, + anon_sym_atomic, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5921), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5961), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1703), 1, sym_plain_type, - STATE(4607), 1, + STATE(1854), 1, + sym_sum_type, + STATE(4425), 1, sym_reference_expression, + STATE(1699), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3084), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291865,42 +292103,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(861), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5927), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5963), 1, - sym_identifier, - STATE(4232), 1, + ACTIONS(5965), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3085), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291928,42 +292166,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5965), 1, + ACTIONS(5967), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3086), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291991,42 +292229,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5967), 1, + ACTIONS(5969), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3087), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292054,42 +292292,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5971), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3088), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292117,42 +292355,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5971), 1, + ACTIONS(5973), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3089), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292180,42 +292418,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5973), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5761), 1, + anon_sym_DOT_DOT_DOT, + STATE(4257), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3090), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292243,42 +292481,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5975), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3091), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292306,42 +292544,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, + ACTIONS(5937), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(5977), 1, - anon_sym_RPAREN, - STATE(3963), 1, + sym_identifier, + STATE(4232), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3092), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292369,42 +292607,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5979), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3093), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292432,42 +292670,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5981), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3094), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292495,42 +292733,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5983), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3095), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292548,52 +292786,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4044), 1, + anon_sym_chan, + ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, + anon_sym_atomic, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5921), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5985), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1704), 1, sym_plain_type, - STATE(4607), 1, + STATE(1905), 1, + sym_sum_type, + STATE(4425), 1, sym_reference_expression, + STATE(1699), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3096), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292611,52 +292849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, - ACTIONS(4044), 1, - anon_sym_thread, - ACTIONS(4046), 1, - anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5935), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5943), 1, - anon_sym_map_LBRACK, - STATE(1707), 1, + ACTIONS(5985), 1, + anon_sym_RPAREN, + STATE(3963), 1, sym_plain_type, - STATE(1780), 1, - sym_sum_type, - STATE(4427), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1699), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3097), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292684,42 +292922,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, ACTIONS(5987), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3098), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292737,52 +292975,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4044), 1, + anon_sym_chan, + ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, + anon_sym_atomic, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5921), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5989), 1, - anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1708), 1, sym_plain_type, - STATE(4607), 1, + STATE(1784), 1, + sym_sum_type, + STATE(4425), 1, sym_reference_expression, + STATE(1699), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3099), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292810,42 +293048,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5991), 1, + ACTIONS(5989), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3100), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292873,42 +293111,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5993), 1, + ACTIONS(5991), 1, anon_sym_RPAREN, STATE(3963), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3101), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292936,40 +293174,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2479), 1, + STATE(3844), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3102), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292987,24 +293225,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4951), 1, anon_sym_atomic, + ACTIONS(5993), 1, + anon_sym_LPAREN, ACTIONS(5995), 1, anon_sym_STAR, ACTIONS(5997), 1, @@ -293015,22 +293251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(6003), 1, anon_sym_AMP, - STATE(2050), 1, + ACTIONS(6005), 1, + anon_sym_map_LBRACK, + STATE(2876), 1, sym_plain_type, - STATE(4463), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3103), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293048,50 +293286,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6005), 1, - anon_sym_STAR, ACTIONS(6007), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6009), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6011), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6013), 1, + anon_sym_LBRACK2, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2111), 1, + STATE(2128), 1, sym_plain_type, - STATE(4526), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2019), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3104), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293109,50 +293347,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6015), 1, - anon_sym_LPAREN, ACTIONS(6017), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(6019), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6021), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6023), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6025), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(6027), 1, + anon_sym_AMP, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(496), 1, + STATE(1357), 1, sym_plain_type, - STATE(4524), 1, + STATE(4486), 1, sym_reference_expression, - STATE(292), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3105), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293170,50 +293408,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4210), 1, + anon_sym_map_LBRACK, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(6007), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6015), 1, anon_sym_AMP, - ACTIONS(6041), 1, - anon_sym_map_LBRACK, - STATE(2825), 1, + STATE(2115), 1, sym_plain_type, - STATE(4555), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3106), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293231,50 +293469,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3428), 1, + anon_sym_chan, + ACTIONS(3430), 1, + anon_sym_thread, + ACTIONS(3432), 1, + anon_sym_atomic, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6021), 1, + anon_sym_QMARK, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6027), 1, anon_sym_AMP, - STATE(2456), 1, + ACTIONS(6029), 1, + anon_sym_map_LBRACK, + STATE(1392), 1, sym_plain_type, - STATE(4607), 1, + STATE(4486), 1, sym_reference_expression, + STATE(1298), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3107), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(1327), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1324), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81029] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3940), 1, + sym_identifier, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_fn, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, + anon_sym_struct, + ACTIONS(3958), 1, + anon_sym_shared, + ACTIONS(3960), 1, + anon_sym_map_LBRACK, + ACTIONS(3962), 1, + anon_sym_chan, + ACTIONS(3964), 1, + anon_sym_thread, + ACTIONS(3966), 1, + anon_sym_atomic, + ACTIONS(6031), 1, + anon_sym_QMARK, + ACTIONS(6033), 1, + anon_sym_BANG, + ACTIONS(6035), 1, + anon_sym_LBRACK2, + ACTIONS(6037), 1, + anon_sym_AMP, + STATE(1685), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(3108), 2, + sym_line_comment, + sym_block_comment, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293287,55 +293586,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81029] = 22, + [81112] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6015), 1, - anon_sym_LPAREN, ACTIONS(6017), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(6019), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6021), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6023), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6025), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(6027), 1, + anon_sym_AMP, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(502), 1, + STATE(1316), 1, sym_plain_type, - STATE(4524), 1, + STATE(4486), 1, sym_reference_expression, - STATE(292), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3108), 2, + STATE(3109), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293348,55 +293647,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81112] = 22, + [81195] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6005), 1, - anon_sym_STAR, ACTIONS(6007), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6009), 1, + anon_sym_QMARK, + ACTIONS(6011), 1, anon_sym_BANG, + ACTIONS(6013), 1, + anon_sym_LBRACK2, + ACTIONS(6015), 1, + anon_sym_AMP, + STATE(2130), 1, + sym_plain_type, + STATE(4528), 1, + sym_reference_expression, + STATE(2017), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3110), 2, + sym_line_comment, + sym_block_comment, + STATE(2110), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2111), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81278] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4190), 1, + sym_identifier, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, + anon_sym_fn, + ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, + anon_sym_shared, + ACTIONS(4210), 1, + anon_sym_map_LBRACK, + ACTIONS(4212), 1, + anon_sym_chan, + ACTIONS(4214), 1, + anon_sym_thread, + ACTIONS(4216), 1, + anon_sym_atomic, + ACTIONS(6007), 1, + anon_sym_STAR, + ACTIONS(6009), 1, + anon_sym_QMARK, ACTIONS(6011), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6013), 1, + anon_sym_LBRACK2, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2112), 1, + STATE(2139), 1, sym_plain_type, - STATE(4526), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2019), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3109), 2, + STATE(3111), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293409,55 +293769,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81195] = 22, + [81361] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6005), 1, - anon_sym_STAR, ACTIONS(6007), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6009), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6011), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6013), 1, + anon_sym_LBRACK2, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2114), 1, + STATE(2024), 1, sym_plain_type, - STATE(4526), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2019), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3110), 2, + STATE(3112), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293470,55 +293830,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81278] = 22, + [81444] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(4200), 1, - anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(6017), 1, + anon_sym_LPAREN, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(6027), 1, anon_sym_AMP, - STATE(2125), 1, + ACTIONS(6029), 1, + anon_sym_map_LBRACK, + STATE(1359), 1, sym_plain_type, - STATE(4526), 1, + STATE(4486), 1, sym_reference_expression, - STATE(2019), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3111), 2, + STATE(3113), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293531,55 +293891,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81361] = 22, + [81527] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4200), 1, - anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4044), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4046), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(5917), 1, + anon_sym_LPAREN, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(5927), 1, anon_sym_AMP, - STATE(2132), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1734), 1, sym_plain_type, - STATE(4526), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2019), 2, + STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3112), 2, + STATE(3114), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293592,7 +293952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81444] = 22, + [81610] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -293611,36 +293971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(506), 1, + STATE(515), 1, sym_plain_type, - STATE(4524), 1, + STATE(4523), 1, sym_reference_expression, - STATE(292), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3113), 2, + STATE(3115), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293653,7 +294013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81527] = 22, + [81693] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -293668,40 +294028,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4604), 1, - sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3114), 2, + STATE(4611), 1, + sym_plain_type, + STATE(3116), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293714,55 +294074,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81610] = 22, + [81776] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2448), 1, + STATE(2414), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3115), 2, + STATE(3117), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293775,55 +294135,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81693] = 22, + [81859] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(1682), 1, + STATE(1646), 1, sym_plain_type, - STATE(4421), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3116), 2, + STATE(3118), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293836,55 +294196,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81776] = 22, + [81942] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(1646), 1, + STATE(1648), 1, sym_plain_type, - STATE(4421), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3117), 2, + STATE(3119), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293897,7 +294257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81859] = 22, + [82025] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -293912,40 +294272,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2459), 1, + STATE(4072), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3118), 2, + STATE(3120), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293958,55 +294318,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81942] = 22, + [82108] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2445), 1, + STATE(2413), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3119), 2, + STATE(3121), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294019,55 +294379,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82025] = 22, + [82191] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6005), 1, - anon_sym_STAR, ACTIONS(6007), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6009), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6011), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6013), 1, + anon_sym_LBRACK2, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2024), 1, + STATE(2151), 1, sym_plain_type, - STATE(4526), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2019), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3120), 2, + STATE(3122), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294080,55 +294440,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82108] = 22, + [82274] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(843), 1, + anon_sym_chan, + ACTIONS(845), 1, + anon_sym_thread, + ACTIONS(847), 1, + anon_sym_atomic, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6043), 1, + anon_sym_QMARK, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6049), 1, anon_sym_AMP, - STATE(3942), 1, + ACTIONS(6051), 1, + anon_sym_map_LBRACK, + STATE(513), 1, sym_plain_type, - STATE(4607), 1, + STATE(4523), 1, sym_reference_expression, - STATE(3121), 2, - sym_line_comment, - sym_block_comment, - STATE(3648), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(3123), 2, + sym_line_comment, + sym_block_comment, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294141,55 +294501,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82191] = 22, + [82357] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(1650), 1, + STATE(1677), 1, sym_plain_type, - STATE(4421), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3122), 2, + STATE(3124), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294202,55 +294562,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82274] = 22, + [82440] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6037), 1, anon_sym_AMP, STATE(1678), 1, sym_plain_type, - STATE(4421), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3123), 2, + STATE(3125), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294263,55 +294623,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82357] = 22, + [82523] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6071), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1373), 1, + STATE(501), 1, sym_plain_type, - STATE(4484), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1298), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3124), 2, + STATE(3126), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294324,7 +294684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82440] = 22, + [82606] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -294343,36 +294703,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(6071), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(1311), 1, + STATE(1306), 1, sym_plain_type, - STATE(4484), 1, + STATE(4486), 1, sym_reference_expression, STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3125), 2, + STATE(3127), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294385,55 +294745,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82523] = 22, + [82689] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3428), 1, - anon_sym_chan, - ACTIONS(3430), 1, - anon_sym_thread, - ACTIONS(3432), 1, - anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1335), 1, + STATE(3938), 1, sym_plain_type, - STATE(4484), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3126), 2, + STATE(3128), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294446,55 +294806,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82606] = 22, + [82772] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(5897), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(1783), 1, + STATE(1403), 1, sym_plain_type, - STATE(4598), 1, + STATE(4486), 1, sym_reference_expression, - STATE(1722), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3127), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294507,7 +294867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82689] = 22, + [82855] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -294522,40 +294882,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4498), 1, + STATE(4501), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3128), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294568,116 +294928,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82772] = 22, + [82938] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - sym_identifier, - ACTIONS(3410), 1, - anon_sym_fn, - ACTIONS(3414), 1, - anon_sym_struct, - ACTIONS(3424), 1, - anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6059), 1, - anon_sym_LPAREN, - ACTIONS(6061), 1, - anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, - anon_sym_BANG, - ACTIONS(6067), 1, - anon_sym_LBRACK2, - ACTIONS(6069), 1, - anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1333), 1, - sym_plain_type, - STATE(4484), 1, - sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3129), 2, - sym_line_comment, - sym_block_comment, - STATE(1328), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1326), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82855] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3428), 1, - anon_sym_chan, - ACTIONS(3430), 1, - anon_sym_thread, - ACTIONS(3432), 1, - anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1306), 1, + STATE(3916), 1, sym_plain_type, - STATE(4484), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3130), 2, + STATE(3131), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294690,7 +294989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82938] = 22, + [83021] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -294709,36 +295008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(6071), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(1392), 1, + STATE(1307), 1, sym_plain_type, - STATE(4484), 1, + STATE(4486), 1, sym_reference_expression, STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3131), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294751,55 +295050,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83021] = 22, + [83104] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6007), 1, + anon_sym_STAR, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(1684), 1, + STATE(2126), 1, sym_plain_type, - STATE(4421), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1568), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3132), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294812,55 +295111,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83104] = 22, + [83187] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(3944), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3962), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(1685), 1, + STATE(1679), 1, sym_plain_type, - STATE(4421), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3133), 2, + STATE(3134), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294873,55 +295172,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83187] = 22, + [83270] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1732), 1, + STATE(1742), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3134), 2, + STATE(3135), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294934,55 +295233,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83270] = 22, + [83353] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4042), 1, + ACTIONS(4210), 1, + anon_sym_map_LBRACK, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4044), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4046), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(5931), 1, - anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(6007), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(6015), 1, anon_sym_AMP, - ACTIONS(5943), 1, - anon_sym_map_LBRACK, - STATE(1733), 1, + STATE(2152), 1, sym_plain_type, - STATE(4427), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1699), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3135), 2, + STATE(3136), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294995,55 +295294,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83353] = 22, + [83436] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1736), 1, + STATE(1743), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3136), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295056,55 +295355,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83436] = 22, + [83519] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1737), 1, + STATE(1712), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3137), 2, + STATE(3138), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295117,7 +295416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83519] = 22, + [83602] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -295132,40 +295431,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4073), 1, + STATE(2495), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3138), 2, + STATE(3139), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295178,55 +295477,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83602] = 22, + [83685] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2495), 1, + STATE(2490), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3139), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295239,55 +295538,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83685] = 22, + [83768] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(517), 1, + STATE(1063), 1, sym_plain_type, - STATE(4524), 1, + STATE(4500), 1, sym_reference_expression, - STATE(292), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3140), 2, + STATE(3141), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295300,55 +295599,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83768] = 22, + [83851] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(4170), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(2109), 1, + STATE(2035), 1, sym_plain_type, - STATE(4526), 1, + STATE(4465), 1, sym_reference_expression, STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3141), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295361,55 +295660,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83851] = 22, + [83934] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(843), 1, - anon_sym_chan, - ACTIONS(845), 1, - anon_sym_thread, - ACTIONS(847), 1, - anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6027), 1, - anon_sym_map_LBRACK, - STATE(514), 1, + STATE(2493), 1, sym_plain_type, - STATE(4524), 1, + STATE(4609), 1, sym_reference_expression, - STATE(292), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3142), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295422,7 +295721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83934] = 22, + [84017] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -295437,40 +295736,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4513), 1, + STATE(4514), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3143), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295483,7 +295782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [84017] = 22, + [84100] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -295502,97 +295801,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(493), 1, + STATE(512), 1, sym_plain_type, - STATE(4524), 1, + STATE(4523), 1, sym_reference_expression, - STATE(292), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3144), 2, - sym_line_comment, - sym_block_comment, - STATE(428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(440), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84100] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_BANG, - ACTIONS(5611), 1, - anon_sym_LBRACK2, - ACTIONS(5613), 1, - anon_sym_AMP, - STATE(3939), 1, - sym_plain_type, - STATE(4607), 1, - sym_reference_expression, STATE(3145), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295610,50 +295848,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4210), 1, + anon_sym_map_LBRACK, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(6007), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6015), 1, anon_sym_AMP, - ACTIONS(6041), 1, - anon_sym_map_LBRACK, - STATE(2829), 1, + STATE(2172), 1, sym_plain_type, - STATE(4555), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3146), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295671,50 +295909,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(843), 1, + anon_sym_chan, + ACTIONS(845), 1, + anon_sym_thread, + ACTIONS(847), 1, + anon_sym_atomic, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6043), 1, + anon_sym_QMARK, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6049), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4682), 1, + ACTIONS(6051), 1, + anon_sym_map_LBRACK, + STATE(470), 1, sym_plain_type, + STATE(4523), 1, + sym_reference_expression, + STATE(291), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3147), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295742,40 +295980,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4263), 1, - sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, + STATE(4680), 1, + sym_plain_type, STATE(3148), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295793,50 +296031,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, - anon_sym_chan, - ACTIONS(3966), 1, - anon_sym_thread, ACTIONS(3968), 1, - anon_sym_atomic, - ACTIONS(6051), 1, - anon_sym_QMARK, - ACTIONS(6053), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(1619), 1, + STATE(4261), 1, sym_plain_type, - STATE(4421), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1568), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3149), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295854,50 +296092,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6005), 1, - anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(2135), 1, + STATE(1625), 1, sym_plain_type, - STATE(4526), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2019), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, STATE(3150), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295915,37 +296153,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1724), 1, + STATE(1727), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, @@ -295953,12 +296191,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3151), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295976,37 +296214,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1739), 1, + STATE(1744), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, @@ -296014,12 +296252,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3152), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296037,37 +296275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1744), 1, + STATE(1748), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, @@ -296075,12 +296313,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3153), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296098,50 +296336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1202), 1, + STATE(469), 1, sym_plain_type, - STATE(4442), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1151), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3154), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296159,37 +296397,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1729), 1, + STATE(1735), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, @@ -296197,12 +296435,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3155), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296220,50 +296458,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(4044), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(4046), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(5917), 1, + anon_sym_LPAREN, + ACTIONS(5919), 1, + anon_sym_STAR, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(5927), 1, anon_sym_AMP, - STATE(1623), 1, + ACTIONS(5929), 1, + anon_sym_map_LBRACK, + STATE(1732), 1, sym_plain_type, - STATE(4421), 1, + STATE(4425), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, STATE(3156), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296281,50 +296519,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, - ACTIONS(4044), 1, - anon_sym_thread, - ACTIONS(4046), 1, - anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5935), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5943), 1, - anon_sym_map_LBRACK, - STATE(1726), 1, - sym_plain_type, - STATE(4427), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1699), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4695), 1, + sym_plain_type, STATE(3157), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296342,37 +296580,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4042), 1, - anon_sym_chan, ACTIONS(4044), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4046), 1, + anon_sym_thread, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(1725), 1, + STATE(1728), 1, sym_plain_type, - STATE(4427), 1, + STATE(4425), 1, sym_reference_expression, STATE(1699), 2, sym_type_reference_expression, @@ -296380,12 +296618,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3158), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296403,50 +296641,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(843), 1, + anon_sym_chan, + ACTIONS(845), 1, + anon_sym_thread, + ACTIONS(847), 1, + anon_sym_atomic, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6043), 1, + anon_sym_QMARK, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6049), 1, anon_sym_AMP, - STATE(3918), 1, + ACTIONS(6051), 1, + anon_sym_map_LBRACK, + STATE(511), 1, sym_plain_type, - STATE(4607), 1, + STATE(4523), 1, sym_reference_expression, + STATE(291), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3159), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296464,50 +296702,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(1037), 1, + anon_sym_chan, + ACTIONS(1039), 1, + anon_sym_thread, + ACTIONS(1041), 1, + anon_sym_atomic, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6063), 1, + anon_sym_QMARK, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4694), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1075), 1, sym_plain_type, + STATE(4500), 1, + sym_reference_expression, + STATE(1003), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3160), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296535,40 +296773,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, STATE(4075), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3161), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296586,50 +296824,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, - ACTIONS(4198), 1, - anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6007), 1, - anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2151), 1, + STATE(3951), 1, sym_plain_type, - STATE(4526), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2019), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3162), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296647,50 +296885,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4154), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4172), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6007), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2032), 1, + STATE(2175), 1, sym_plain_type, - STATE(4463), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3163), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296708,50 +296946,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4200), 1, - anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(6083), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(2152), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1535), 1, sym_plain_type, - STATE(4526), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2019), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3164), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296769,50 +297007,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3854), 1, - anon_sym_chan, - ACTIONS(3856), 1, - anon_sym_thread, - ACTIONS(3858), 1, - anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6091), 1, - anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1542), 1, + STATE(2485), 1, sym_plain_type, - STATE(4505), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1429), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3165), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296830,50 +297068,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3428), 1, + anon_sym_chan, + ACTIONS(3430), 1, + anon_sym_thread, + ACTIONS(3432), 1, + anon_sym_atomic, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6021), 1, + anon_sym_QMARK, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6027), 1, anon_sym_AMP, - STATE(4579), 1, + ACTIONS(6029), 1, + anon_sym_map_LBRACK, + STATE(1353), 1, sym_plain_type, - STATE(4607), 1, + STATE(4486), 1, sym_reference_expression, + STATE(1298), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3166), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296891,50 +297129,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4347), 1, + anon_sym_chan, + ACTIONS(4349), 1, + anon_sym_thread, + ACTIONS(4351), 1, + anon_sym_atomic, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6101), 1, + anon_sym_QMARK, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(3987), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2348), 1, sym_plain_type, - STATE(4607), 1, + STATE(4545), 1, sym_reference_expression, + STATE(2244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3167), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296952,50 +297190,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(1062), 1, + STATE(1394), 1, sym_plain_type, - STATE(4499), 1, + STATE(4486), 1, sym_reference_expression, - STATE(1003), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3168), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297013,50 +297251,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6071), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1354), 1, + STATE(510), 1, sym_plain_type, - STATE(4484), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1298), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3169), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297074,50 +297312,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5883), 1, - anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(5897), 1, - anon_sym_map_LBRACK, - STATE(1810), 1, + STATE(2071), 1, sym_plain_type, - STATE(4598), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1722), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3170), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297135,50 +297373,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4088), 1, - anon_sym_chan, - ACTIONS(4090), 1, - anon_sym_thread, - ACTIONS(4092), 1, - anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5897), 1, - anon_sym_map_LBRACK, - STATE(1830), 1, + STATE(4429), 1, sym_plain_type, - STATE(4598), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1722), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3171), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297210,36 +297448,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(513), 1, + STATE(502), 1, sym_plain_type, - STATE(4524), 1, + STATE(4523), 1, sym_reference_expression, - STATE(292), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3172), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297257,50 +297495,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3854), 1, + anon_sym_chan, + ACTIONS(3856), 1, + anon_sym_thread, + ACTIONS(3858), 1, + anon_sym_atomic, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6087), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(3951), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1540), 1, sym_plain_type, - STATE(4607), 1, + STATE(4507), 1, sym_reference_expression, + STATE(1426), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3173), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297318,50 +297556,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(843), 1, - anon_sym_chan, - ACTIONS(845), 1, - anon_sym_thread, - ACTIONS(847), 1, - anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6027), 1, - anon_sym_map_LBRACK, - STATE(473), 1, + STATE(3963), 1, sym_plain_type, - STATE(4524), 1, + STATE(4609), 1, sym_reference_expression, - STATE(292), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3174), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297379,50 +297617,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6027), 1, - anon_sym_map_LBRACK, - STATE(471), 1, + STATE(2090), 1, sym_plain_type, - STATE(4524), 1, + STATE(4465), 1, sym_reference_expression, - STATE(292), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3175), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297440,50 +297678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4347), 1, + anon_sym_chan, + ACTIONS(4349), 1, + anon_sym_thread, + ACTIONS(4351), 1, + anon_sym_atomic, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6101), 1, + anon_sym_QMARK, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(4435), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2347), 1, sym_plain_type, - STATE(4607), 1, + STATE(4545), 1, sym_reference_expression, + STATE(2244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3176), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297501,50 +297739,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5899), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_map_LBRACK, - STATE(1074), 1, + STATE(2084), 1, sym_plain_type, - STATE(4499), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3177), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297562,50 +297800,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4347), 1, + anon_sym_chan, + ACTIONS(4349), 1, + anon_sym_thread, + ACTIONS(4351), 1, + anon_sym_atomic, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6101), 1, + anon_sym_QMARK, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(4017), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2346), 1, sym_plain_type, - STATE(4607), 1, + STATE(4545), 1, sym_reference_expression, + STATE(2244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3178), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297623,50 +297861,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3428), 1, - anon_sym_chan, - ACTIONS(3430), 1, - anon_sym_thread, - ACTIONS(3432), 1, - anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1308), 1, + STATE(3992), 1, sym_plain_type, - STATE(4484), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3179), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297684,50 +297922,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4026), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4030), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4040), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4044), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4046), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4048), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(5917), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(5919), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(5921), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5923), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5925), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5927), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(5929), 1, anon_sym_map_LBRACK, - STATE(2352), 1, + STATE(1736), 1, sym_plain_type, - STATE(4543), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2247), 2, + STATE(1699), 2, sym_type_reference_expression, sym_qualified_type, STATE(3180), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(1719), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(1721), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297745,50 +297983,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1259), 1, + STATE(480), 1, sym_plain_type, - STATE(4442), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1151), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3181), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297806,50 +298044,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(3960), 1, + anon_sym_map_LBRACK, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6037), 1, anon_sym_AMP, - ACTIONS(6085), 1, - anon_sym_map_LBRACK, - STATE(1244), 1, + STATE(1619), 1, sym_plain_type, - STATE(4442), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, STATE(3182), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297867,50 +298105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(6059), 1, - anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1315), 1, + STATE(2060), 1, sym_plain_type, - STATE(4484), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1298), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3183), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297928,50 +298166,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3428), 1, - anon_sym_chan, - ACTIONS(3430), 1, - anon_sym_thread, - ACTIONS(3432), 1, - anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1358), 1, + STATE(3937), 1, sym_plain_type, - STATE(4484), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3184), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297989,50 +298227,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(2053), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2322), 1, sym_plain_type, - STATE(4463), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3185), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298050,50 +298288,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(4335), 1, - anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, - STATE(2353), 1, + STATE(1070), 1, sym_plain_type, - STATE(4543), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2247), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3186), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298111,50 +298349,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_fn, - ACTIONS(5805), 1, - anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5905), 1, - anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5913), 1, - anon_sym_map_LBRACK, - STATE(1068), 1, + STATE(4581), 1, sym_plain_type, - STATE(4457), 1, + STATE(4609), 1, sym_reference_expression, STATE(3187), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1005), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298172,50 +298410,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(1241), 1, + STATE(1235), 1, sym_plain_type, - STATE(4442), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3188), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298233,50 +298471,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(3840), 1, - anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, - STATE(1436), 1, + STATE(1071), 1, sym_plain_type, - STATE(4505), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1429), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3189), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298294,50 +298532,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_fn, - ACTIONS(5805), 1, - anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5905), 1, - anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5913), 1, - anon_sym_map_LBRACK, - STATE(1069), 1, - sym_plain_type, - STATE(4457), 1, + STATE(4609), 1, sym_reference_expression, + STATE(4684), 1, + sym_plain_type, STATE(3190), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1005), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298355,50 +298593,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4947), 1, + anon_sym_chan, + ACTIONS(4949), 1, + anon_sym_thread, + ACTIONS(4951), 1, + anon_sym_atomic, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5997), 1, + anon_sym_QMARK, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6003), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4685), 1, + ACTIONS(6005), 1, + anon_sym_map_LBRACK, + STATE(2825), 1, sym_plain_type, + STATE(4557), 1, + sym_reference_expression, + STATE(2609), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3191), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298416,50 +298654,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(6109), 1, anon_sym_map_LBRACK, - STATE(1538), 1, + STATE(2318), 1, sym_plain_type, - STATE(4505), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3192), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298477,50 +298715,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4349), 1, - anon_sym_chan, - ACTIONS(4351), 1, - anon_sym_thread, - ACTIONS(4353), 1, - anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6125), 1, - anon_sym_map_LBRACK, - STATE(2354), 1, + STATE(3854), 1, sym_plain_type, - STATE(4543), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2247), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3193), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298538,50 +298776,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(4028), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(4038), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(4042), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(4044), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(4046), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(5931), 1, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(5933), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5935), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(5937), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(5939), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(5941), 1, + ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(5943), 1, + ACTIONS(6109), 1, anon_sym_map_LBRACK, - STATE(1735), 1, + STATE(2350), 1, sym_plain_type, - STATE(4427), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1699), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3194), 2, sym_line_comment, sym_block_comment, - STATE(1740), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1712), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298599,50 +298837,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(2312), 1, + STATE(1460), 1, sym_plain_type, - STATE(4543), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2247), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3195), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298660,50 +298898,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(4347), 1, + anon_sym_chan, + ACTIONS(4349), 1, + anon_sym_thread, + ACTIONS(4351), 1, + anon_sym_atomic, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6101), 1, + anon_sym_QMARK, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(3963), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2305), 1, sym_plain_type, - STATE(4607), 1, + STATE(4545), 1, sym_reference_expression, + STATE(2244), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3196), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298721,50 +298959,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(2077), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2280), 1, sym_plain_type, - STATE(4463), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3197), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298782,24 +299020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4951), 1, anon_sym_atomic, + ACTIONS(5993), 1, + anon_sym_LPAREN, ACTIONS(5995), 1, anon_sym_STAR, ACTIONS(5997), 1, @@ -298810,22 +299046,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(6003), 1, anon_sym_AMP, - STATE(2036), 1, + ACTIONS(6005), 1, + anon_sym_map_LBRACK, + STATE(2828), 1, sym_plain_type, - STATE(4463), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3198), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298843,50 +299081,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6113), 1, + anon_sym_STAR, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(1656), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1236), 1, sym_plain_type, - STATE(4421), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3199), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298904,50 +299142,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(4154), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(4172), 1, + ACTIONS(3960), 1, anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(5995), 1, - anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(2048), 1, + STATE(1651), 1, sym_plain_type, - STATE(4463), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2011), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, STATE(3200), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298965,50 +299203,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(1672), 1, - anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6085), 1, - anon_sym_map_LBRACK, - STATE(1227), 1, + STATE(2919), 1, sym_plain_type, - STATE(4442), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1151), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3201), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299026,50 +299264,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, - anon_sym_chan, - ACTIONS(3966), 1, - anon_sym_thread, ACTIONS(3968), 1, - anon_sym_atomic, - ACTIONS(6051), 1, - anon_sym_QMARK, - ACTIONS(6053), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(1647), 1, + STATE(4041), 1, sym_plain_type, - STATE(4421), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1568), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3202), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299087,50 +299325,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(3960), 1, + anon_sym_map_LBRACK, + ACTIONS(3962), 1, + anon_sym_chan, + ACTIONS(3964), 1, + anon_sym_thread, + ACTIONS(3966), 1, + anon_sym_atomic, + ACTIONS(6031), 1, + anon_sym_QMARK, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(4042), 1, + STATE(1641), 1, sym_plain_type, - STATE(4607), 1, + STATE(4423), 1, sym_reference_expression, + STATE(1563), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3203), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299148,50 +299386,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5899), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_map_LBRACK, - STATE(1030), 1, + STATE(2037), 1, sym_plain_type, - STATE(4499), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3204), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299209,50 +299447,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, + anon_sym_chan, + ACTIONS(4174), 1, + anon_sym_thread, + ACTIONS(4176), 1, + anon_sym_atomic, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6075), 1, + anon_sym_QMARK, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(3937), 1, + STATE(2061), 1, sym_plain_type, - STATE(4607), 1, + STATE(4465), 1, sym_reference_expression, + STATE(2019), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3205), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299270,42 +299508,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1023), 1, anon_sym_struct, ACTIONS(3804), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, STATE(1079), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3206), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, STATE(1005), 4, @@ -299313,7 +299551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299331,50 +299569,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(2035), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1203), 1, sym_plain_type, - STATE(4463), 1, + STATE(4444), 1, sym_reference_expression, - STATE(2011), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3207), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299392,50 +299630,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2925), 1, + STATE(2548), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3208), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299453,50 +299691,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(1776), 1, + anon_sym_chan, + ACTIONS(1778), 1, + anon_sym_thread, + ACTIONS(1780), 1, + anon_sym_atomic, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6115), 1, + anon_sym_QMARK, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(3925), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1237), 1, sym_plain_type, - STATE(4607), 1, + STATE(4444), 1, sym_reference_expression, + STATE(1148), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3209), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299524,40 +299762,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4695), 1, + STATE(3928), 1, sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(3210), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299575,50 +299813,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(1097), 1, + STATE(1461), 1, sym_plain_type, - STATE(4499), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1003), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3211), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299636,50 +299874,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4333), 1, + anon_sym_struct, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(4401), 1, - anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6097), 1, + anon_sym_LPAREN, + ACTIONS(6099), 1, + anon_sym_STAR, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6107), 1, anon_sym_AMP, - STATE(2543), 1, + ACTIONS(6109), 1, + anon_sym_map_LBRACK, + STATE(2317), 1, sym_plain_type, - STATE(4607), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3212), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299697,50 +299935,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(1037), 1, + anon_sym_chan, + ACTIONS(1039), 1, + anon_sym_thread, + ACTIONS(1041), 1, + anon_sym_atomic, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6063), 1, + anon_sym_QMARK, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(3855), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1082), 1, sym_plain_type, - STATE(4607), 1, + STATE(4500), 1, sym_reference_expression, + STATE(1003), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3213), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299758,50 +299996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3428), 1, - anon_sym_chan, - ACTIONS(3430), 1, - anon_sym_thread, - ACTIONS(3432), 1, - anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6063), 1, - anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6071), 1, - anon_sym_map_LBRACK, - STATE(1336), 1, - sym_plain_type, - STATE(4484), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1298), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4634), 1, + sym_plain_type, STATE(3214), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299829,40 +300067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4623), 1, + STATE(4286), 1, sym_plain_type, + STATE(4609), 1, + sym_reference_expression, STATE(3215), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299890,40 +300128,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(3885), 1, + STATE(3887), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3216), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299951,40 +300189,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2461), 1, + STATE(2455), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3217), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300012,40 +300250,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2442), 1, + STATE(3989), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3218), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300063,50 +300301,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4198), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4210), 1, + anon_sym_map_LBRACK, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6113), 1, - anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(6007), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6015), 1, anon_sym_AMP, - ACTIONS(6125), 1, - anon_sym_map_LBRACK, - STATE(2330), 1, + STATE(2191), 1, sym_plain_type, - STATE(4543), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2247), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3219), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300124,50 +300362,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_fn, - ACTIONS(4188), 1, - anon_sym_struct, - ACTIONS(4198), 1, - anon_sym_shared, - ACTIONS(4200), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6007), 1, - anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2163), 1, - sym_plain_type, - STATE(4526), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2019), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4696), 1, + sym_plain_type, STATE(3220), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300185,50 +300423,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(449), 1, + STATE(1504), 1, sym_plain_type, - STATE(4524), 1, + STATE(4507), 1, sym_reference_expression, - STATE(292), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3221), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300246,50 +300484,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4349), 1, - anon_sym_chan, - ACTIONS(4351), 1, - anon_sym_thread, - ACTIONS(4353), 1, - anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6125), 1, - anon_sym_map_LBRACK, - STATE(2351), 1, + STATE(2483), 1, sym_plain_type, - STATE(4543), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2247), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3222), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300307,50 +300545,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(1776), 1, + anon_sym_chan, + ACTIONS(1778), 1, + anon_sym_thread, + ACTIONS(1780), 1, + anon_sym_atomic, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6115), 1, + anon_sym_QMARK, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(4285), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1217), 1, sym_plain_type, - STATE(4607), 1, + STATE(4444), 1, sym_reference_expression, + STATE(1148), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3223), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300368,50 +300606,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1445), 1, + STATE(448), 1, sym_plain_type, - STATE(4505), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1429), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3224), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300439,40 +300677,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2443), 1, + STATE(2484), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3225), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300490,50 +300728,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(1553), 1, + STATE(1811), 1, sym_plain_type, - STATE(4505), 1, + STATE(4601), 1, sym_reference_expression, - STATE(1429), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3226), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300551,50 +300789,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, + anon_sym_chan, + ACTIONS(4174), 1, + anon_sym_thread, + ACTIONS(4176), 1, + anon_sym_atomic, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6075), 1, + anon_sym_QMARK, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4628), 1, + STATE(2185), 1, sym_plain_type, + STATE(4465), 1, + sym_reference_expression, + STATE(2019), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3227), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300612,50 +300850,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4349), 1, - anon_sym_chan, - ACTIONS(4351), 1, - anon_sym_thread, - ACTIONS(4353), 1, - anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6117), 1, - anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6125), 1, - anon_sym_map_LBRACK, - STATE(2336), 1, - sym_plain_type, - STATE(4543), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2247), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4636), 1, + sym_plain_type, STATE(3228), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300673,50 +300911,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6083), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(2160), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1551), 1, sym_plain_type, - STATE(4463), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2011), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3229), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300734,50 +300972,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(6063), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6065), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6067), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6069), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(6071), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(1369), 1, + STATE(1830), 1, sym_plain_type, - STATE(4484), 1, + STATE(4601), 1, sym_reference_expression, - STATE(1298), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3230), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300795,50 +301033,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(4154), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(4172), 1, + ACTIONS(4170), 1, anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(2155), 1, + STATE(2182), 1, sym_plain_type, - STATE(4463), 1, + STATE(4465), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3231), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300856,50 +301094,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(2309), 1, + STATE(1858), 1, sym_plain_type, - STATE(4543), 1, + STATE(4601), 1, sym_reference_expression, - STATE(2247), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3232), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300917,50 +301155,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(357), 1, + STATE(1031), 1, sym_plain_type, - STATE(4524), 1, + STATE(4500), 1, sym_reference_expression, - STATE(292), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3233), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300978,50 +301216,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(843), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(845), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, - STATE(1113), 1, + STATE(357), 1, sym_plain_type, - STATE(4499), 1, + STATE(4523), 1, sym_reference_expression, - STATE(1003), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3234), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301039,50 +301277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(6109), 1, anon_sym_map_LBRACK, - STATE(2340), 1, + STATE(2272), 1, sym_plain_type, - STATE(4543), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2247), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3235), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301100,50 +301338,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(3960), 1, + anon_sym_map_LBRACK, + ACTIONS(3962), 1, + anon_sym_chan, + ACTIONS(3964), 1, + anon_sym_thread, + ACTIONS(3966), 1, + anon_sym_atomic, + ACTIONS(6031), 1, + anon_sym_QMARK, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6037), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4680), 1, + STATE(1643), 1, sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(1563), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3236), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301161,21 +301399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(3414), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(3424), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(3428), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(3430), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(3432), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6059), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, ACTIONS(6061), 1, anon_sym_STAR, @@ -301189,22 +301427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(1376), 1, + STATE(1113), 1, sym_plain_type, - STATE(4484), 1, + STATE(4500), 1, sym_reference_expression, - STATE(1298), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3237), 2, sym_line_comment, sym_block_comment, - STATE(1328), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1326), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301232,40 +301470,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4532), 1, + STATE(4530), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3238), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301283,50 +301521,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(5881), 1, + anon_sym_LPAREN, + ACTIONS(6061), 1, + anon_sym_STAR, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(1642), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1107), 1, sym_plain_type, - STATE(4421), 1, + STATE(4500), 1, sym_reference_expression, - STATE(1568), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3239), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301344,50 +301582,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3854), 1, - anon_sym_chan, - ACTIONS(3856), 1, - anon_sym_thread, - ACTIONS(3858), 1, - anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6091), 1, - anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1550), 1, - sym_plain_type, - STATE(4505), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1429), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4681), 1, + sym_plain_type, STATE(3240), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301415,40 +301653,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2473), 1, + STATE(2430), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3241), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301466,50 +301704,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(1107), 1, + STATE(1512), 1, sym_plain_type, - STATE(4499), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1003), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3242), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301527,50 +301765,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(2367), 1, + STATE(1102), 1, sym_plain_type, - STATE(4543), 1, + STATE(4500), 1, sym_reference_expression, - STATE(2247), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3243), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301588,50 +301826,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(1239), 1, + STATE(1099), 1, sym_plain_type, - STATE(4442), 1, + STATE(4500), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3244), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301649,50 +301887,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6109), 1, anon_sym_map_LBRACK, - STATE(1106), 1, + STATE(2360), 1, sym_plain_type, - STATE(4499), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3245), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301720,40 +301958,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(4654), 1, + STATE(4652), 1, sym_plain_type, STATE(3246), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301771,50 +302009,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(1260), 1, + STATE(1158), 1, sym_plain_type, - STATE(4442), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3247), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301832,50 +302070,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(1101), 1, + STATE(1259), 1, sym_plain_type, - STATE(4499), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1003), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3248), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301893,50 +302131,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(1248), 1, + STATE(1234), 1, sym_plain_type, - STATE(4442), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3249), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301964,40 +302202,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(4641), 1, + STATE(4643), 1, sym_plain_type, STATE(3250), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302015,50 +302253,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4955), 1, - anon_sym_chan, - ACTIONS(4957), 1, - anon_sym_thread, - ACTIONS(4959), 1, - anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6033), 1, - anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6041), 1, - anon_sym_map_LBRACK, - STATE(2813), 1, + STATE(3873), 1, sym_plain_type, - STATE(4555), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2589), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3251), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302076,50 +302314,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(1085), 1, + STATE(2813), 1, sym_plain_type, - STATE(4499), 1, + STATE(4557), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3252), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302137,50 +302375,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4329), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4333), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4343), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4347), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4349), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4351), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(6097), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(6099), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6101), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6103), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6105), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(6109), 1, anon_sym_map_LBRACK, - STATE(1446), 1, + STATE(2281), 1, sym_plain_type, - STATE(4505), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2244), 2, sym_type_reference_expression, sym_qualified_type, STATE(3253), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2366), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2365), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302198,50 +302436,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4901), 1, + ACTIONS(4897), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4905), 1, + ACTIONS(4901), 1, anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4919), 1, + ACTIONS(4915), 1, anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(2543), 1, + STATE(2548), 1, sym_plain_type, - STATE(4551), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2579), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3254), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302259,50 +302497,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(2816), 1, + STATE(1336), 1, sym_plain_type, - STATE(4555), 1, + STATE(4486), 1, sym_reference_expression, - STATE(2589), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3255), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302320,50 +302558,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, + anon_sym_chan, + ACTIONS(4174), 1, + anon_sym_thread, + ACTIONS(4176), 1, + anon_sym_atomic, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6075), 1, + anon_sym_QMARK, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(3922), 1, + STATE(2032), 1, sym_plain_type, - STATE(4607), 1, + STATE(4465), 1, sym_reference_expression, + STATE(2019), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3256), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302381,50 +302619,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(1037), 1, + anon_sym_chan, + ACTIONS(1039), 1, + anon_sym_thread, + ACTIONS(1041), 1, + anon_sym_atomic, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6063), 1, + anon_sym_QMARK, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(3871), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1085), 1, sym_plain_type, - STATE(4607), 1, + STATE(4500), 1, sym_reference_expression, + STATE(1003), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3257), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302442,50 +302680,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(5881), 1, + anon_sym_LPAREN, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(2221), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1081), 1, sym_plain_type, - STATE(4463), 1, + STATE(4500), 1, sym_reference_expression, - STATE(2011), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3258), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302503,50 +302741,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(5881), 1, + anon_sym_LPAREN, + ACTIONS(6061), 1, + anon_sym_STAR, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6069), 1, anon_sym_AMP, - STATE(2701), 1, + ACTIONS(6071), 1, + anon_sym_map_LBRACK, + STATE(1108), 1, sym_plain_type, - STATE(4551), 1, + STATE(4500), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3259), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302564,50 +302802,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(2841), 1, + STATE(2816), 1, sym_plain_type, - STATE(4555), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3260), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302625,50 +302863,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(5993), 1, + anon_sym_LPAREN, + ACTIONS(5995), 1, + anon_sym_STAR, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6003), 1, anon_sym_AMP, - STATE(2706), 1, + ACTIONS(6005), 1, + anon_sym_map_LBRACK, + STATE(2840), 1, sym_plain_type, - STATE(4551), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2579), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3261), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302686,50 +302924,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4955), 1, - anon_sym_chan, - ACTIONS(4957), 1, - anon_sym_thread, - ACTIONS(4959), 1, - anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6033), 1, - anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6041), 1, - anon_sym_map_LBRACK, - STATE(2880), 1, + STATE(4587), 1, sym_plain_type, - STATE(4555), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2589), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3262), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302747,50 +302985,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5899), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_map_LBRACK, - STATE(1081), 1, + STATE(2050), 1, sym_plain_type, - STATE(4499), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3263), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302808,42 +303046,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1023), 1, anon_sym_struct, ACTIONS(3804), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, STATE(1108), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3264), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, STATE(1005), 4, @@ -302851,7 +303089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302869,50 +303107,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(5807), 1, + anon_sym_chan, + ACTIONS(5809), 1, + anon_sym_thread, + ACTIONS(5811), 1, + anon_sym_atomic, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5887), 1, + anon_sym_QMARK, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5893), 1, anon_sym_AMP, - STATE(4417), 1, + ACTIONS(5895), 1, + anon_sym_map_LBRACK, + STATE(1081), 1, sym_plain_type, - STATE(4607), 1, + STATE(4454), 1, sym_reference_expression, STATE(3265), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302930,50 +303168,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6017), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6027), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(1108), 1, + STATE(1332), 1, sym_plain_type, - STATE(4499), 1, + STATE(4486), 1, sym_reference_expression, - STATE(1003), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3266), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302991,50 +303229,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(6099), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(1461), 1, + STATE(1862), 1, sym_plain_type, - STATE(4505), 1, + STATE(4601), 1, sym_reference_expression, - STATE(1429), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3267), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303052,50 +303290,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1548), 1, + STATE(2144), 1, sym_plain_type, - STATE(4505), 1, + STATE(4465), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3268), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303113,50 +303351,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5901), 1, + anon_sym_STAR, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(5909), 1, anon_sym_AMP, - STATE(2788), 1, + ACTIONS(5911), 1, + anon_sym_map_LBRACK, + STATE(1883), 1, sym_plain_type, - STATE(4551), 1, + STATE(4601), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3269), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303174,50 +303412,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6085), 1, - anon_sym_map_LBRACK, - STATE(1247), 1, + STATE(2761), 1, sym_plain_type, - STATE(4442), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1151), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3270), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303235,50 +303473,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6113), 1, - anon_sym_LPAREN, - ACTIONS(6115), 1, - anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6125), 1, - anon_sym_map_LBRACK, - STATE(2272), 1, + STATE(2762), 1, sym_plain_type, - STATE(4543), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2247), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3271), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303296,50 +303534,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(2828), 1, + STATE(2878), 1, sym_plain_type, - STATE(4555), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3272), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303357,50 +303595,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(4933), 1, + anon_sym_struct, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(1081), 1, + STATE(2829), 1, sym_plain_type, - STATE(4457), 1, + STATE(4557), 1, sym_reference_expression, + STATE(2609), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3273), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1005), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303418,50 +303656,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, STATE(2842), 1, sym_plain_type, - STATE(4555), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3274), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303479,50 +303717,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4955), 1, - anon_sym_chan, - ACTIONS(4957), 1, - anon_sym_thread, - ACTIONS(4959), 1, - anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6033), 1, - anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6041), 1, - anon_sym_map_LBRACK, - STATE(2845), 1, + STATE(3884), 1, sym_plain_type, - STATE(4555), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2589), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3275), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303540,42 +303778,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1023), 1, anon_sym_struct, ACTIONS(3804), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, STATE(1085), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3276), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, STATE(1005), 4, @@ -303583,7 +303821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303601,50 +303839,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6017), 1, + anon_sym_LPAREN, + ACTIONS(6019), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6021), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6023), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6025), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6027), 1, anon_sym_AMP, - STATE(2030), 1, + ACTIONS(6029), 1, + anon_sym_map_LBRACK, + STATE(1368), 1, sym_plain_type, - STATE(4463), 1, + STATE(4486), 1, sym_reference_expression, - STATE(2011), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3277), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303662,50 +303900,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(2872), 1, + STATE(2845), 1, sym_plain_type, - STATE(4555), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3278), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303723,50 +303961,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(2875), 1, + STATE(1541), 1, sym_plain_type, - STATE(4555), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2589), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3279), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303784,50 +304022,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4331), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4335), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4345), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4349), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4351), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4353), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6113), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6119), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6121), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6123), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6125), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(2280), 1, + STATE(2864), 1, sym_plain_type, - STATE(4543), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2247), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3280), 2, sym_line_comment, sym_block_comment, - STATE(2322), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2323), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303845,50 +304083,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3854), 1, + anon_sym_chan, + ACTIONS(3856), 1, + anon_sym_thread, + ACTIONS(3858), 1, + anon_sym_atomic, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6087), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(3879), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1513), 1, sym_plain_type, - STATE(4607), 1, + STATE(4507), 1, sym_reference_expression, + STATE(1426), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3281), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303916,40 +304154,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(3947), 1, + STATE(2458), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3282), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303977,40 +304215,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2483), 1, + STATE(3948), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3283), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304028,50 +304266,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, + ACTIONS(4925), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4929), 1, anon_sym_fn, - ACTIONS(4941), 1, + ACTIONS(4933), 1, anon_sym_struct, - ACTIONS(4951), 1, + ACTIONS(4943), 1, anon_sym_shared, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_chan, - ACTIONS(4957), 1, + ACTIONS(4949), 1, anon_sym_thread, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_atomic, - ACTIONS(6029), 1, + ACTIONS(5993), 1, anon_sym_LPAREN, - ACTIONS(6031), 1, + ACTIONS(5995), 1, anon_sym_STAR, - ACTIONS(6033), 1, + ACTIONS(5997), 1, anon_sym_QMARK, - ACTIONS(6035), 1, + ACTIONS(5999), 1, anon_sym_BANG, - ACTIONS(6037), 1, + ACTIONS(6001), 1, anon_sym_LBRACK2, - ACTIONS(6039), 1, + ACTIONS(6003), 1, anon_sym_AMP, - ACTIONS(6041), 1, + ACTIONS(6005), 1, anon_sym_map_LBRACK, - STATE(2877), 1, + STATE(2873), 1, sym_plain_type, - STATE(4555), 1, + STATE(4557), 1, sym_reference_expression, - STATE(2589), 2, + STATE(2609), 2, sym_type_reference_expression, sym_qualified_type, STATE(3284), 2, sym_line_comment, sym_block_comment, - STATE(2887), 4, + STATE(2888), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2891), 12, + STATE(2889), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304089,50 +304327,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4170), 1, + anon_sym_map_LBRACK, + ACTIONS(4172), 1, + anon_sym_chan, + ACTIONS(4174), 1, + anon_sym_thread, + ACTIONS(4176), 1, + anon_sym_atomic, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6075), 1, + anon_sym_QMARK, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(4228), 1, + STATE(2033), 1, sym_plain_type, - STATE(4607), 1, + STATE(4465), 1, sym_reference_expression, + STATE(2019), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3285), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304150,50 +304388,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(4088), 1, - anon_sym_chan, - ACTIONS(4090), 1, - anon_sym_thread, - ACTIONS(4092), 1, - anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(5897), 1, - anon_sym_map_LBRACK, - STATE(1853), 1, + STATE(4234), 1, sym_plain_type, - STATE(4598), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1722), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3286), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304211,50 +304449,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(5897), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(1883), 1, + STATE(1079), 1, sym_plain_type, - STATE(4598), 1, + STATE(4500), 1, sym_reference_expression, - STATE(1722), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3287), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304272,50 +304510,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, + anon_sym_chan, + ACTIONS(4919), 1, + anon_sym_thread, + ACTIONS(4921), 1, + anon_sym_atomic, + ACTIONS(6125), 1, + anon_sym_QMARK, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(2439), 1, + STATE(2699), 1, sym_plain_type, - STATE(4607), 1, + STATE(4553), 1, sym_reference_expression, + STATE(2589), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3288), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304333,50 +304571,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(1023), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(5897), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(1900), 1, + STATE(1071), 1, sym_plain_type, - STATE(4598), 1, + STATE(4500), 1, sym_reference_expression, - STATE(1722), 2, + STATE(1003), 2, sym_type_reference_expression, sym_qualified_type, STATE(3289), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304394,50 +304632,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(4160), 1, - anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(4172), 1, - anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(5881), 1, + anon_sym_LPAREN, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(5893), 1, anon_sym_AMP, - STATE(2143), 1, + ACTIONS(5895), 1, + anon_sym_map_LBRACK, + STATE(1099), 1, sym_plain_type, - STATE(4463), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2011), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3290), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304455,50 +304693,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(1015), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(1019), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(1033), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(1037), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(1039), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(1041), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(6061), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(6063), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(6065), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(6067), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(6069), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(6071), 1, anon_sym_map_LBRACK, - STATE(1101), 1, + STATE(1070), 1, sym_plain_type, - STATE(4457), 1, + STATE(4500), 1, sym_reference_expression, + STATE(1003), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3291), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304516,42 +304754,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1023), 1, anon_sym_struct, ACTIONS(3804), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(5805), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(5809), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5905), 1, + ACTIONS(5887), 1, anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, + ACTIONS(5893), 1, anon_sym_AMP, - ACTIONS(5913), 1, + ACTIONS(5895), 1, anon_sym_map_LBRACK, - STATE(1106), 1, + STATE(1102), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3292), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, STATE(1005), 4, @@ -304559,7 +304797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304577,50 +304815,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(1023), 1, + anon_sym_struct, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(5791), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(5803), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(5807), 1, + anon_sym_chan, + ACTIONS(5809), 1, + anon_sym_thread, + ACTIONS(5811), 1, + anon_sym_atomic, + ACTIONS(5881), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(5885), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5887), 1, + anon_sym_QMARK, + ACTIONS(5889), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5891), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5893), 1, anon_sym_AMP, - STATE(3895), 1, + ACTIONS(5895), 1, + anon_sym_map_LBRACK, + STATE(1107), 1, sym_plain_type, - STATE(4607), 1, + STATE(4454), 1, sym_reference_expression, STATE(3293), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(1005), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1059), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304638,50 +304876,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_fn, - ACTIONS(5805), 1, - anon_sym_shared, - ACTIONS(5809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(5811), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(5813), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(5903), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5905), 1, - anon_sym_QMARK, - ACTIONS(5907), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5909), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5911), 1, - anon_sym_AMP, - ACTIONS(5913), 1, - anon_sym_map_LBRACK, - STATE(1107), 1, + ACTIONS(5609), 1, + anon_sym_AMP, + STATE(4524), 1, sym_plain_type, - STATE(4457), 1, + STATE(4609), 1, sym_reference_expression, STATE(3294), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1005), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304699,50 +304937,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, + sym_identifier, + ACTIONS(4359), 1, + anon_sym_fn, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, + anon_sym_shared, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(99), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(101), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(103), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(855), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(873), 1, - anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6053), 1, + anon_sym_QMARK, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(4607), 1, - sym_reference_expression, - STATE(4660), 1, + STATE(2430), 1, sym_plain_type, + STATE(4609), 1, + sym_reference_expression, + STATE(2395), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3295), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304760,50 +304998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, - anon_sym_struct, - ACTIONS(4917), 1, - anon_sym_shared, - ACTIONS(4919), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6127), 1, - anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2760), 1, + STATE(2422), 1, sym_plain_type, - STATE(4551), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2579), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3296), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304821,50 +305059,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(5883), 1, - anon_sym_LPAREN, - ACTIONS(5887), 1, - anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(5897), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, + STATE(2763), 1, sym_plain_type, - STATE(4598), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1722), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3297), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304882,50 +305120,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(5883), 1, - anon_sym_LPAREN, - ACTIONS(5887), 1, - anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(5897), 1, - anon_sym_map_LBRACK, - STATE(1875), 1, + STATE(2772), 1, sym_plain_type, - STATE(4598), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1722), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3298), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304943,50 +305181,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4074), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4084), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4088), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4090), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4092), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(5883), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(5887), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(5889), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(5891), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(5893), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(5895), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(5897), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(1888), 1, + STATE(1534), 1, sym_plain_type, - STATE(4598), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1722), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3299), 2, sym_line_comment, sym_block_comment, - STATE(1905), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1881), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305004,50 +305242,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, + anon_sym_chan, + ACTIONS(4919), 1, + anon_sym_thread, + ACTIONS(4921), 1, + anon_sym_atomic, + ACTIONS(6125), 1, + anon_sym_QMARK, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(4522), 1, + STATE(2775), 1, sym_plain_type, - STATE(4607), 1, + STATE(4553), 1, sym_reference_expression, + STATE(2589), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3300), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305065,50 +305303,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(3406), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(3410), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(3414), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(3424), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(3428), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(3430), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(3432), 1, anon_sym_atomic, - ACTIONS(6015), 1, - anon_sym_LPAREN, ACTIONS(6017), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(6019), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(6021), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(6023), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(6025), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(6027), 1, + anon_sym_AMP, + ACTIONS(6029), 1, anon_sym_map_LBRACK, - STATE(479), 1, + STATE(1383), 1, sym_plain_type, - STATE(4524), 1, + STATE(4486), 1, sym_reference_expression, - STATE(292), 2, + STATE(1298), 2, sym_type_reference_expression, sym_qualified_type, STATE(3301), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1327), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1324), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305126,50 +305364,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3804), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(3812), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(3822), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(3826), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(3828), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(3830), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(3461), 1, + STATE(1224), 1, sym_plain_type, - STATE(4457), 1, + STATE(4444), 1, sym_reference_expression, + STATE(1148), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3302), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305187,50 +305425,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6121), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6123), 1, anon_sym_map_LBRACK, - STATE(1213), 1, + STATE(1260), 1, sym_plain_type, - STATE(4442), 1, + STATE(4444), 1, sym_reference_expression, - STATE(1151), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3303), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305248,50 +305486,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(1762), 1, + anon_sym_struct, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(4401), 1, - anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6113), 1, + anon_sym_STAR, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(2439), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1201), 1, sym_plain_type, - STATE(4607), 1, + STATE(4444), 1, sym_reference_expression, - STATE(2391), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3304), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305309,50 +305547,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(1672), 1, - anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6085), 1, - anon_sym_map_LBRACK, - STATE(1225), 1, + STATE(2422), 1, sym_plain_type, - STATE(4442), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1151), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3305), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305370,50 +305608,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6073), 1, - anon_sym_LPAREN, - ACTIONS(6075), 1, - anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6085), 1, - anon_sym_map_LBRACK, - STATE(1208), 1, + STATE(2760), 1, sym_plain_type, - STATE(4442), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1151), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3306), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305431,50 +305669,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6113), 1, + anon_sym_STAR, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(2761), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1198), 1, sym_plain_type, - STATE(4551), 1, + STATE(4444), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3307), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305492,50 +305730,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(951), 1, - anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(5899), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, - anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_map_LBRACK, - STATE(1079), 1, + STATE(2493), 1, sym_plain_type, - STATE(4499), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3308), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305553,50 +305791,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4190), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4198), 1, + anon_sym_struct, + ACTIONS(4208), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4210), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4212), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4214), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4216), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6007), 1, + anon_sym_STAR, + ACTIONS(6009), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6011), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6013), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6015), 1, anon_sym_AMP, - STATE(2456), 1, + STATE(2127), 1, sym_plain_type, - STATE(4607), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2017), 2, sym_type_reference_expression, sym_qualified_type, STATE(3309), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2111), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305614,50 +305852,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4357), 1, + sym_identifier, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4905), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4907), 1, - anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4919), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2622), 1, + STATE(2485), 1, sym_plain_type, - STATE(4551), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2579), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3310), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305675,50 +305913,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3804), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(3812), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(3822), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(3826), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(3828), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(3830), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6085), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6093), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6095), 1, anon_sym_map_LBRACK, - STATE(3460), 1, + STATE(1519), 1, sym_plain_type, - STATE(4457), 1, + STATE(4507), 1, sym_reference_expression, + STATE(1426), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3311), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305736,50 +305974,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(3808), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(3812), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(3822), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(3826), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(3828), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(5899), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6101), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6111), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(1069), 1, + STATE(3466), 1, sym_plain_type, - STATE(4499), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1003), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3312), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305797,50 +306035,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(3840), 1, - anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1469), 1, + STATE(2495), 1, sym_plain_type, - STATE(4505), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3313), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305858,50 +306096,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(961), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(965), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(967), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(969), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(5899), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, - anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6105), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6107), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6109), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6111), 1, - anon_sym_map_LBRACK, - STATE(1068), 1, + STATE(2776), 1, sym_plain_type, - STATE(4499), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1003), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3314), 2, sym_line_comment, sym_block_comment, - STATE(1005), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305919,50 +306157,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5901), 1, + anon_sym_STAR, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(5909), 1, anon_sym_AMP, - STATE(2771), 1, + ACTIONS(5911), 1, + anon_sym_map_LBRACK, + STATE(1819), 1, sym_plain_type, - STATE(4551), 1, + STATE(4601), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3315), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -305994,36 +306232,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(847), 1, anon_sym_atomic, - ACTIONS(6015), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6043), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6049), 1, anon_sym_AMP, - ACTIONS(6027), 1, + ACTIONS(6051), 1, anon_sym_map_LBRACK, STATE(388), 1, sym_plain_type, - STATE(4524), 1, + STATE(4523), 1, sym_reference_expression, - STATE(292), 2, + STATE(291), 2, sym_type_reference_expression, sym_qualified_type, STATE(3316), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306041,50 +306279,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6083), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, + anon_sym_STAR, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(2774), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1455), 1, sym_plain_type, - STATE(4551), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3317), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306102,50 +306340,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2459), 1, + STATE(2455), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3318), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306163,50 +306401,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, - anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6043), 1, - anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2479), 1, - sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4662), 1, + sym_plain_type, STATE(3319), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306224,50 +306462,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, - anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(6043), 1, - anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_STAR, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2461), 1, + STATE(3917), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2391), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3320), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306285,50 +306523,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4389), 1, + ACTIONS(4901), 1, anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4903), 1, + anon_sym_struct, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4401), 1, + ACTIONS(4915), 1, anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(2442), 1, + STATE(2706), 1, sym_plain_type, - STATE(4607), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2391), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3321), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306346,50 +306584,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(3836), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3850), 1, anon_sym_shared, - ACTIONS(4401), 1, - anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(3854), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(3856), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(3858), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6083), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, + anon_sym_STAR, + ACTIONS(6087), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6089), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6091), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6093), 1, anon_sym_AMP, - STATE(2473), 1, + ACTIONS(6095), 1, + anon_sym_map_LBRACK, + STATE(1451), 1, sym_plain_type, - STATE(4607), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2391), 2, + STATE(1426), 2, sym_type_reference_expression, sym_qualified_type, STATE(3322), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(1528), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1529), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306407,50 +306645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3804), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(3812), 1, - anon_sym_struct, - ACTIONS(3822), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(3826), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(3828), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(3830), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6135), 1, - anon_sym_LPAREN, - ACTIONS(6137), 1, - anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6147), 1, - anon_sym_map_LBRACK, - STATE(3464), 1, + STATE(2458), 1, sym_plain_type, - STATE(4457), 1, + STATE(4609), 1, sym_reference_expression, + STATE(2395), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3323), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306468,50 +306706,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(3808), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(3812), 1, + anon_sym_struct, + ACTIONS(3822), 1, anon_sym_shared, - ACTIONS(4401), 1, - anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(3826), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(3828), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(6133), 1, + anon_sym_LPAREN, + ACTIONS(6135), 1, + anon_sym_STAR, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(6143), 1, anon_sym_AMP, - STATE(2483), 1, + ACTIONS(6145), 1, + anon_sym_map_LBRACK, + STATE(3464), 1, sym_plain_type, - STATE(4607), 1, + STATE(4454), 1, sym_reference_expression, - STATE(2391), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3324), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306529,50 +306767,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4901), 1, + ACTIONS(4897), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(4905), 1, + ACTIONS(4901), 1, anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(4919), 1, + ACTIONS(4915), 1, anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6131), 1, anon_sym_AMP, - STATE(2759), 1, + STATE(2787), 1, sym_plain_type, - STATE(4551), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2579), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3325), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306590,50 +306828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(863), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(873), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3854), 1, - anon_sym_chan, - ACTIONS(3856), 1, - anon_sym_thread, - ACTIONS(3858), 1, - anon_sym_atomic, - ACTIONS(6087), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(6089), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(6091), 1, - anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(5609), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1499), 1, + STATE(3896), 1, sym_plain_type, - STATE(4505), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1429), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3326), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306651,50 +306889,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1664), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(3808), 1, anon_sym_fn, - ACTIONS(1672), 1, + ACTIONS(3812), 1, anon_sym_struct, - ACTIONS(1682), 1, + ACTIONS(3822), 1, anon_sym_shared, - ACTIONS(1686), 1, + ACTIONS(3826), 1, anon_sym_chan, - ACTIONS(1688), 1, + ACTIONS(3828), 1, anon_sym_thread, - ACTIONS(1690), 1, + ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6073), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6075), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6077), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6079), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6081), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6083), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6085), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(1229), 1, + STATE(3469), 1, sym_plain_type, - STATE(4442), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1151), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3327), 2, sym_line_comment, sym_block_comment, - STATE(1231), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1234), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306712,50 +306950,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, + ACTIONS(1754), 1, sym_identifier, - ACTIONS(4182), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(1758), 1, anon_sym_fn, - ACTIONS(4188), 1, + ACTIONS(1762), 1, anon_sym_struct, - ACTIONS(4198), 1, + ACTIONS(1772), 1, anon_sym_shared, - ACTIONS(4200), 1, - anon_sym_map_LBRACK, - ACTIONS(4202), 1, + ACTIONS(1776), 1, anon_sym_chan, - ACTIONS(4204), 1, + ACTIONS(1778), 1, anon_sym_thread, - ACTIONS(4206), 1, + ACTIONS(1780), 1, anon_sym_atomic, - ACTIONS(6005), 1, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6113), 1, anon_sym_STAR, - ACTIONS(6007), 1, + ACTIONS(6115), 1, anon_sym_QMARK, - ACTIONS(6009), 1, + ACTIONS(6117), 1, anon_sym_BANG, - ACTIONS(6011), 1, + ACTIONS(6119), 1, anon_sym_LBRACK2, - ACTIONS(6013), 1, + ACTIONS(6121), 1, anon_sym_AMP, - STATE(2110), 1, + ACTIONS(6123), 1, + anon_sym_map_LBRACK, + STATE(1222), 1, sym_plain_type, - STATE(4526), 1, + STATE(4444), 1, sym_reference_expression, - STATE(2019), 2, + STATE(1148), 2, sym_type_reference_expression, sym_qualified_type, STATE(3328), 2, sym_line_comment, sym_block_comment, - STATE(2090), 4, + STATE(1214), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2091), 12, + STATE(1215), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306773,50 +307011,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4897), 1, + anon_sym_LPAREN, + ACTIONS(4899), 1, anon_sym_fn, - ACTIONS(3840), 1, + ACTIONS(4901), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4913), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4915), 1, + anon_sym_map_LBRACK, + ACTIONS(4917), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4919), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4921), 1, anon_sym_atomic, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6125), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6127), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6129), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6131), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1463), 1, + STATE(2789), 1, sym_plain_type, - STATE(4505), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2589), 2, sym_type_reference_expression, sym_qualified_type, STATE(3329), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2747), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2748), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306834,50 +307072,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3804), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(3812), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(3822), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(3826), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(3828), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(3830), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(5901), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(5909), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(5911), 1, anon_sym_map_LBRACK, - STATE(3466), 1, + STATE(1779), 1, sym_plain_type, - STATE(4457), 1, + STATE(4601), 1, sym_reference_expression, + STATE(1730), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3330), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3468), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306909,36 +307147,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(3454), 1, + STATE(3465), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3331), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 4, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -306956,50 +307194,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(3840), 1, - anon_sym_struct, - ACTIONS(3850), 1, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(3854), 1, + ACTIONS(4373), 1, + anon_sym_map_LBRACK, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(3856), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(3858), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6093), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6095), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6097), 1, + ACTIONS(6059), 1, anon_sym_AMP, - ACTIONS(6099), 1, - anon_sym_map_LBRACK, - STATE(1502), 1, + STATE(2484), 1, sym_plain_type, - STATE(4505), 1, + STATE(4609), 1, sym_reference_expression, - STATE(1429), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3332), 2, sym_line_comment, sym_block_comment, - STATE(1541), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1543), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307017,50 +307255,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4357), 1, + sym_identifier, + ACTIONS(4359), 1, anon_sym_fn, - ACTIONS(4905), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(4907), 1, - anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4371), 1, anon_sym_shared, - ACTIONS(4919), 1, + ACTIONS(4373), 1, anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4375), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4377), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4379), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(6053), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(6055), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(6057), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(6059), 1, anon_sym_AMP, - STATE(2775), 1, + STATE(2483), 1, sym_plain_type, - STATE(4551), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2579), 2, + STATE(2395), 2, sym_type_reference_expression, sym_qualified_type, STATE(3333), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307078,50 +307316,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3942), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(3808), 1, anon_sym_fn, - ACTIONS(3948), 1, - anon_sym_STAR, - ACTIONS(3950), 1, + ACTIONS(3812), 1, anon_sym_struct, - ACTIONS(3960), 1, + ACTIONS(3822), 1, anon_sym_shared, - ACTIONS(3962), 1, - anon_sym_map_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3826), 1, anon_sym_chan, - ACTIONS(3966), 1, + ACTIONS(3828), 1, anon_sym_thread, - ACTIONS(3968), 1, + ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6051), 1, + ACTIONS(6133), 1, + anon_sym_LPAREN, + ACTIONS(6135), 1, + anon_sym_STAR, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6053), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6055), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6057), 1, + ACTIONS(6143), 1, anon_sym_AMP, - STATE(1655), 1, + ACTIONS(6145), 1, + anon_sym_map_LBRACK, + STATE(3463), 1, sym_plain_type, - STATE(4421), 1, + STATE(4454), 1, sym_reference_expression, - STATE(1568), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3334), 2, sym_line_comment, sym_block_comment, - STATE(1643), 4, + STATE(3423), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1645), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307139,50 +307377,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(819), 1, + ACTIONS(3940), 1, sym_identifier, - ACTIONS(825), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(829), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3948), 1, anon_sym_struct, - ACTIONS(839), 1, + ACTIONS(3958), 1, anon_sym_shared, - ACTIONS(843), 1, + ACTIONS(3960), 1, + anon_sym_map_LBRACK, + ACTIONS(3962), 1, anon_sym_chan, - ACTIONS(845), 1, + ACTIONS(3964), 1, anon_sym_thread, - ACTIONS(847), 1, + ACTIONS(3966), 1, anon_sym_atomic, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, + ACTIONS(6031), 1, anon_sym_QMARK, - ACTIONS(6021), 1, + ACTIONS(6033), 1, anon_sym_BANG, - ACTIONS(6023), 1, + ACTIONS(6035), 1, anon_sym_LBRACK2, - ACTIONS(6025), 1, + ACTIONS(6037), 1, anon_sym_AMP, - ACTIONS(6027), 1, - anon_sym_map_LBRACK, - STATE(456), 1, + STATE(1649), 1, sym_plain_type, - STATE(4524), 1, + STATE(4423), 1, sym_reference_expression, - STATE(292), 2, + STATE(1563), 2, sym_type_reference_expression, sym_qualified_type, STATE(3335), 2, sym_line_comment, sym_block_comment, - STATE(428), 4, + STATE(1655), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(440), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307214,36 +307452,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(3476), 1, + STATE(3467), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3336), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 4, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307275,36 +307513,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(3456), 1, + STATE(3474), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3337), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 4, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307336,36 +307574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(3472), 1, + STATE(3473), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3338), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 4, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307397,36 +307635,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3830), 1, anon_sym_atomic, - ACTIONS(6135), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6135), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6137), 1, anon_sym_QMARK, - ACTIONS(6141), 1, + ACTIONS(6139), 1, anon_sym_BANG, - ACTIONS(6143), 1, + ACTIONS(6141), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_AMP, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_map_LBRACK, - STATE(3470), 1, + STATE(3471), 1, sym_plain_type, - STATE(4457), 1, + STATE(4454), 1, sym_reference_expression, STATE(3339), 2, sym_line_comment, sym_block_comment, - STATE(3434), 2, + STATE(3423), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 4, + STATE(3458), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3455), 12, + STATE(3459), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307444,50 +307682,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(4905), 1, - anon_sym_STAR, - ACTIONS(4907), 1, + ACTIONS(4074), 1, anon_sym_struct, - ACTIONS(4917), 1, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(4919), 1, - anon_sym_map_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(4923), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(4925), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6127), 1, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5901), 1, + anon_sym_STAR, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6129), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6131), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6133), 1, + ACTIONS(5909), 1, anon_sym_AMP, - STATE(2786), 1, + ACTIONS(5911), 1, + anon_sym_map_LBRACK, + STATE(1903), 1, sym_plain_type, - STATE(4551), 1, + STATE(4601), 1, sym_reference_expression, - STATE(2579), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3340), 2, sym_line_comment, sym_block_comment, - STATE(2746), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2747), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307505,50 +307743,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4150), 1, sym_identifier, - ACTIONS(4154), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4156), 1, + ACTIONS(4154), 1, anon_sym_fn, - ACTIONS(4160), 1, + ACTIONS(4158), 1, anon_sym_struct, - ACTIONS(4170), 1, + ACTIONS(4168), 1, anon_sym_shared, - ACTIONS(4172), 1, + ACTIONS(4170), 1, anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4172), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(4174), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(4176), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(6073), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6075), 1, anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(6077), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(6079), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(6081), 1, anon_sym_AMP, - STATE(2034), 1, + STATE(2036), 1, sym_plain_type, - STATE(4463), 1, + STATE(4465), 1, sym_reference_expression, - STATE(2011), 2, + STATE(2019), 2, sym_type_reference_expression, sym_qualified_type, STATE(3341), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(2052), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2051), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307566,50 +307804,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - sym_identifier, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(4156), 1, - anon_sym_fn, - ACTIONS(4160), 1, - anon_sym_struct, - ACTIONS(4170), 1, - anon_sym_shared, - ACTIONS(4172), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4174), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4176), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4178), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5995), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(869), 1, + anon_sym_fn, + ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, + anon_sym_shared, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5997), 1, - anon_sym_QMARK, - ACTIONS(5999), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(6001), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(6003), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(2031), 1, + STATE(4001), 1, sym_plain_type, - STATE(4463), 1, + STATE(4609), 1, sym_reference_expression, - STATE(2011), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3342), 2, sym_line_comment, sym_block_comment, - STATE(2045), 4, + STATE(3649), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2044), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307637,40 +307875,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4149), 1, + STATE(4150), 1, sym_plain_type, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3343), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2470), 4, + STATE(2416), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307688,50 +307926,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(819), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(825), 1, anon_sym_fn, - ACTIONS(865), 1, + ACTIONS(829), 1, anon_sym_struct, - ACTIONS(873), 1, + ACTIONS(839), 1, anon_sym_shared, - ACTIONS(3970), 1, + ACTIONS(843), 1, + anon_sym_chan, + ACTIONS(845), 1, + anon_sym_thread, + ACTIONS(847), 1, + anon_sym_atomic, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(6041), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(6043), 1, + anon_sym_QMARK, + ACTIONS(6045), 1, anon_sym_BANG, - ACTIONS(5611), 1, + ACTIONS(6047), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(6049), 1, anon_sym_AMP, - STATE(4003), 1, + ACTIONS(6051), 1, + anon_sym_map_LBRACK, + STATE(457), 1, sym_plain_type, - STATE(4607), 1, + STATE(4523), 1, sym_reference_expression, + STATE(291), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3344), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2470), 4, + STATE(429), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(442), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307749,50 +307987,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(865), 1, - anon_sym_struct, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4066), 1, sym_identifier, - ACTIONS(4387), 1, + ACTIONS(4070), 1, anon_sym_fn, - ACTIONS(4389), 1, - anon_sym_STAR, - ACTIONS(4399), 1, + ACTIONS(4074), 1, + anon_sym_struct, + ACTIONS(4084), 1, anon_sym_shared, - ACTIONS(4401), 1, - anon_sym_map_LBRACK, - ACTIONS(4403), 1, + ACTIONS(4088), 1, anon_sym_chan, - ACTIONS(4405), 1, + ACTIONS(4090), 1, anon_sym_thread, - ACTIONS(4407), 1, + ACTIONS(4092), 1, anon_sym_atomic, - ACTIONS(6043), 1, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5901), 1, + anon_sym_STAR, + ACTIONS(5903), 1, anon_sym_QMARK, - ACTIONS(6045), 1, + ACTIONS(5905), 1, anon_sym_BANG, - ACTIONS(6047), 1, + ACTIONS(5907), 1, anon_sym_LBRACK2, - ACTIONS(6049), 1, + ACTIONS(5909), 1, anon_sym_AMP, - STATE(2443), 1, + ACTIONS(5911), 1, + anon_sym_map_LBRACK, + STATE(1807), 1, sym_plain_type, - STATE(4607), 1, + STATE(4601), 1, sym_reference_expression, - STATE(2391), 2, + STATE(1730), 2, sym_type_reference_expression, sym_qualified_type, STATE(3345), 2, sym_line_comment, sym_block_comment, - STATE(2470), 4, + STATE(1875), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2428), 12, + STATE(1881), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307818,31 +308056,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(4703), 1, + STATE(4705), 1, sym__plain_type_without_special, STATE(3346), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307855,7 +308093,60 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100851] = 18, + [100851] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1965), 1, + anon_sym_SQUOTE, + ACTIONS(1967), 1, + anon_sym_DQUOTE, + ACTIONS(1969), 1, + anon_sym_c_SQUOTE, + ACTIONS(1971), 1, + anon_sym_c_DQUOTE, + ACTIONS(1973), 1, + anon_sym_r_SQUOTE, + ACTIONS(1975), 1, + anon_sym_r_DQUOTE, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_if, + ACTIONS(6151), 1, + anon_sym_unsafe, + STATE(3944), 1, + sym_reference_expression, + STATE(3975), 1, + sym_value_attribute, + STATE(3976), 1, + sym_attribute_expression, + STATE(4285), 1, + sym_literal, + ACTIONS(1963), 2, + sym_float_literal, + sym_rune_literal, + STATE(3347), 2, + sym_line_comment, + sym_block_comment, + STATE(4242), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4244), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2448), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1947), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [100925] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307868,31 +308159,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4192), 1, + STATE(4321), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3347), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307905,7 +308196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100919] = 18, + [100993] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307918,31 +308209,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4202), 1, + STATE(4367), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3348), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -307955,7 +308246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100987] = 18, + [101061] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307968,31 +308259,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4290), 1, + STATE(4202), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3349), 2, + STATE(3350), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308005,7 +308296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101055] = 18, + [101129] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308018,31 +308309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4179), 1, + STATE(4393), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3350), 2, + STATE(3351), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308055,7 +308346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101123] = 18, + [101197] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308068,31 +308359,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4433), 1, + STATE(4438), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3351), 2, + STATE(3352), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308105,7 +308396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101191] = 18, + [101265] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308118,31 +308409,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4197), 1, + STATE(4209), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3352), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308155,59 +308446,6 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101259] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1820), 1, - anon_sym_SQUOTE, - ACTIONS(1822), 1, - anon_sym_DQUOTE, - ACTIONS(1824), 1, - anon_sym_c_SQUOTE, - ACTIONS(1826), 1, - anon_sym_c_DQUOTE, - ACTIONS(1828), 1, - anon_sym_r_SQUOTE, - ACTIONS(1830), 1, - anon_sym_r_DQUOTE, - ACTIONS(6149), 1, - sym_identifier, - ACTIONS(6151), 1, - anon_sym_if, - ACTIONS(6153), 1, - anon_sym_unsafe, - STATE(3941), 1, - sym_reference_expression, - STATE(3972), 1, - sym_value_attribute, - STATE(3976), 1, - sym_attribute_expression, - STATE(4288), 1, - sym_literal, - ACTIONS(1818), 2, - sym_float_literal, - sym_rune_literal, - STATE(3353), 2, - sym_line_comment, - sym_block_comment, - STATE(4240), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4243), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2415), 3, - sym_interpreted_string_literal, - sym_c_string_literal, - sym_raw_string_literal, - ACTIONS(1802), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, [101333] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -308221,31 +308459,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4365), 1, + STATE(4192), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3354), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308258,7 +308496,60 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101401] = 18, + [101401] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1965), 1, + anon_sym_SQUOTE, + ACTIONS(1967), 1, + anon_sym_DQUOTE, + ACTIONS(1969), 1, + anon_sym_c_SQUOTE, + ACTIONS(1971), 1, + anon_sym_c_DQUOTE, + ACTIONS(1973), 1, + anon_sym_r_SQUOTE, + ACTIONS(1975), 1, + anon_sym_r_DQUOTE, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_if, + ACTIONS(6151), 1, + anon_sym_unsafe, + STATE(3944), 1, + sym_reference_expression, + STATE(3975), 1, + sym_value_attribute, + STATE(4198), 1, + sym_attribute_expression, + STATE(4285), 1, + sym_literal, + ACTIONS(1963), 2, + sym_float_literal, + sym_rune_literal, + STATE(3355), 2, + sym_line_comment, + sym_block_comment, + STATE(4242), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4244), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2448), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1947), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [101475] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308271,31 +308562,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4348), 1, + STATE(4290), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3355), 2, + STATE(3356), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308308,7 +308599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101469] = 18, + [101543] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308321,31 +308612,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4201), 1, + STATE(4347), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, - STATE(3356), 2, + STATE(3357), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308358,59 +308649,6 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101537] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1820), 1, - anon_sym_SQUOTE, - ACTIONS(1822), 1, - anon_sym_DQUOTE, - ACTIONS(1824), 1, - anon_sym_c_SQUOTE, - ACTIONS(1826), 1, - anon_sym_c_DQUOTE, - ACTIONS(1828), 1, - anon_sym_r_SQUOTE, - ACTIONS(1830), 1, - anon_sym_r_DQUOTE, - ACTIONS(6149), 1, - sym_identifier, - ACTIONS(6151), 1, - anon_sym_if, - ACTIONS(6153), 1, - anon_sym_unsafe, - STATE(3941), 1, - sym_reference_expression, - STATE(3972), 1, - sym_value_attribute, - STATE(4198), 1, - sym_attribute_expression, - STATE(4288), 1, - sym_literal, - ACTIONS(1818), 2, - sym_float_literal, - sym_rune_literal, - STATE(3357), 2, - sym_line_comment, - sym_block_comment, - STATE(4240), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4243), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2415), 3, - sym_interpreted_string_literal, - sym_c_string_literal, - sym_raw_string_literal, - ACTIONS(1802), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, [101611] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -308424,31 +308662,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4393), 1, + STATE(4364), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3358), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308474,31 +308712,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4318), 1, + STATE(4369), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3359), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308524,31 +308762,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4368), 1, + STATE(4211), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3360), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308574,31 +308812,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(855), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_fn, - ACTIONS(865), 1, - anon_sym_struct, ACTIONS(873), 1, + anon_sym_struct, + ACTIONS(881), 1, anon_sym_shared, - ACTIONS(3972), 1, + ACTIONS(3970), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5607), 1, anon_sym_LBRACK2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_AMP, - STATE(4367), 1, + STATE(4175), 1, sym__plain_type_without_special, - STATE(4607), 1, + STATE(4609), 1, sym_reference_expression, STATE(3361), 2, sym_line_comment, sym_block_comment, - STATE(3648), 2, + STATE(3649), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -308616,43 +308854,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5221), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(6155), 1, + ACTIONS(6153), 1, sym_identifier, - ACTIONS(6157), 1, + ACTIONS(6155), 1, anon_sym_LPAREN, - ACTIONS(6163), 1, + ACTIONS(6161), 1, anon_sym_LT2, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - STATE(3436), 1, + STATE(3416), 1, sym_receiver, - STATE(3574), 1, - sym_capture_list, - STATE(3623), 1, + STATE(3540), 1, sym__function_name, - STATE(3737), 1, + STATE(3543), 1, + sym_capture_list, + STATE(3736), 1, sym_generic_parameters, - STATE(4021), 1, + STATE(4016), 1, sym_overridable_operator, - STATE(4210), 1, + STATE(4220), 1, sym_signature, - STATE(4619), 1, + STATE(4621), 1, sym_reference_expression, - STATE(4627), 1, + STATE(4629), 1, sym_static_receiver, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3362), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, + ACTIONS(6159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6159), 8, + ACTIONS(6157), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -308669,7 +308907,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2997), 24, + ACTIONS(3055), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -308702,7 +308940,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3051), 24, + ACTIONS(3049), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -308735,7 +308973,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 24, + ACTIONS(3350), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -308768,7 +309006,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 24, + ACTIONS(2669), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -308801,7 +309039,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3367), 2, sym_line_comment, sym_block_comment, - ACTIONS(3080), 24, + ACTIONS(2985), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -308826,50 +309064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [102137] = 12, + [102137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6155), 1, - sym_identifier, - ACTIONS(6167), 1, - anon_sym_LPAREN, - STATE(3409), 1, - sym_receiver, - STATE(3534), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(4619), 1, - sym_reference_expression, - STATE(4692), 1, - sym_static_receiver, STATE(3368), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [102184] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3369), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3051), 7, + ACTIONS(3049), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -308877,7 +309080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3049), 11, + ACTIONS(3047), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -308889,87 +309092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102217] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1820), 1, - anon_sym_SQUOTE, - ACTIONS(1822), 1, - anon_sym_DQUOTE, - ACTIONS(1824), 1, - anon_sym_c_SQUOTE, - ACTIONS(1826), 1, - anon_sym_c_DQUOTE, - ACTIONS(1828), 1, - anon_sym_r_SQUOTE, - ACTIONS(1830), 1, - anon_sym_r_DQUOTE, - ACTIONS(6169), 1, - sym_identifier, - STATE(4195), 1, - sym_literal, - ACTIONS(1818), 2, - sym_float_literal, - sym_rune_literal, - STATE(3370), 2, - sym_line_comment, - sym_block_comment, - STATE(2415), 3, - sym_interpreted_string_literal, - sym_c_string_literal, - sym_raw_string_literal, - ACTIONS(1802), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [102268] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6155), 1, - sym_identifier, - ACTIONS(6167), 1, - anon_sym_LPAREN, - STATE(3403), 1, - sym_receiver, - STATE(3622), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(4549), 1, - sym_static_receiver, - STATE(4619), 1, - sym_reference_expression, - STATE(3371), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [102315] = 5, + [102170] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3372), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2997), 7, + ACTIONS(2985), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -308977,7 +309108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2995), 11, + ACTIONS(2983), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -308989,15 +309120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102348] = 5, + [102203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3373), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2669), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -309005,7 +309136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2813), 11, + ACTIONS(2667), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -309017,33 +309148,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102381] = 12, + [102236] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6155), 1, + ACTIONS(6153), 1, sym_identifier, - ACTIONS(6167), 1, + ACTIONS(6165), 1, anon_sym_LPAREN, - STATE(3431), 1, + STATE(3443), 1, sym_receiver, - STATE(3619), 1, + STATE(3556), 1, sym__function_name, - STATE(4021), 1, + STATE(4016), 1, + sym_overridable_operator, + STATE(4621), 1, + sym_reference_expression, + STATE(4694), 1, + sym_static_receiver, + STATE(3371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [102283] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6153), 1, + sym_identifier, + ACTIONS(6165), 1, + anon_sym_LPAREN, + STATE(3442), 1, + sym_receiver, + STATE(3611), 1, + sym__function_name, + STATE(4016), 1, sym_overridable_operator, - STATE(4562), 1, + STATE(4561), 1, sym_static_receiver, - STATE(4619), 1, + STATE(4621), 1, sym_reference_expression, - STATE(3374), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, + ACTIONS(6159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6159), 8, + ACTIONS(6157), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -309052,15 +309218,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [102428] = 5, + [102330] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3375), 2, + ACTIONS(1965), 1, + anon_sym_SQUOTE, + ACTIONS(1967), 1, + anon_sym_DQUOTE, + ACTIONS(1969), 1, + anon_sym_c_SQUOTE, + ACTIONS(1971), 1, + anon_sym_c_DQUOTE, + ACTIONS(1973), 1, + anon_sym_r_SQUOTE, + ACTIONS(1975), 1, + anon_sym_r_DQUOTE, + ACTIONS(6167), 1, + sym_identifier, + STATE(4193), 1, + sym_literal, + ACTIONS(1963), 2, + sym_float_literal, + sym_rune_literal, + STATE(3373), 2, + sym_line_comment, + sym_block_comment, + STATE(2448), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1947), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [102381] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3374), 2, sym_line_comment, sym_block_comment, - ACTIONS(3080), 7, + ACTIONS(3350), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -309068,7 +309271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3078), 11, + ACTIONS(3348), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -309080,15 +309283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102461] = 5, + [102414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3376), 2, + STATE(3375), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 7, + ACTIONS(3055), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -309096,7 +309299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3348), 11, + ACTIONS(3053), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -309108,19 +309311,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102494] = 6, + [102447] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6153), 1, + sym_identifier, + ACTIONS(6165), 1, + anon_sym_LPAREN, + STATE(3441), 1, + sym_receiver, + STATE(3615), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(4546), 1, + sym_static_receiver, + STATE(4621), 1, + sym_reference_expression, + STATE(3376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [102494] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2041), 1, - anon_sym_SEMI, - STATE(4012), 1, - aux_sym_strictly_expression_list_repeat1, STATE(3377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3908), 17, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -309136,46 +309372,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102528] = 7, - ACTIONS(3), 1, + [102524] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6171), 1, - anon_sym_static, - ACTIONS(6173), 1, - anon_sym_volatile, STATE(3378), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 7, + ACTIONS(6169), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_module, + anon_sym_RBRACE, + anon_sym_const, + anon_sym___global, anon_sym_fn, anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4979), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_union, + anon_sym_pub, + anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [102564] = 4, + sym_identifier, + anon_sym_AT_LBRACK, + [102554] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1993), 1, + anon_sym_SEMI, + STATE(4013), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 17, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3908), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -309191,14 +309426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102594] = 6, + [102588] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2041), 1, + ACTIONS(1993), 1, anon_sym_LBRACE, - STATE(3940), 1, + STATE(3941), 1, aux_sym_strictly_expression_list_repeat1, STATE(3380), 2, sym_line_comment, @@ -309219,7 +309454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102628] = 4, + [102622] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -309227,7 +309462,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3381), 2, sym_line_comment, sym_block_comment, - ACTIONS(6175), 17, + ACTIONS(6171), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -309245,40 +309480,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [102658] = 4, - ACTIONS(311), 1, + [102652] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6173), 1, + anon_sym_static, + ACTIONS(6175), 1, + anon_sym_volatile, STATE(3382), 2, sym_line_comment, sym_block_comment, - ACTIONS(6177), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, + ACTIONS(4959), 7, anon_sym_fn, anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_mut, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4961), 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, [102688] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5000), 1, + ACTIONS(6177), 1, anon_sym_COMMA, - STATE(3390), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, STATE(3383), 2, sym_line_comment, @@ -309308,7 +309546,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3384), 2, sym_line_comment, sym_block_comment, - ACTIONS(5227), 7, + ACTIONS(5221), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -309316,7 +309554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(5229), 8, + ACTIONS(5223), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -309325,20 +309563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [102754] = 6, + [102754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(6181), 1, anon_sym_COMMA, - STATE(3388), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(3385), 2, + STATE(3385), 3, sym_line_comment, sym_block_comment, - ACTIONS(6181), 14, - anon_sym_LBRACE, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3908), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309352,14 +309588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [102787] = 6, + anon_sym_COLON_EQ, + [102785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5076), 1, anon_sym_COMMA, - STATE(3390), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, STATE(3386), 2, sym_line_comment, @@ -309379,14 +309616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102820] = 6, + [102818] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6183), 1, + ACTIONS(5000), 1, anon_sym_COMMA, - STATE(3390), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, STATE(3387), 2, sym_line_comment, @@ -309406,18 +309643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102853] = 5, + [102851] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6185), 1, + ACTIONS(5106), 1, anon_sym_COMMA, - STATE(3388), 3, + STATE(3391), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3388), 2, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5155), 14, + ACTIONS(6184), 14, anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, @@ -309432,18 +309670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [102884] = 5, + [102884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6188), 1, + ACTIONS(6186), 1, anon_sym_COMMA, - STATE(3389), 3, + STATE(3385), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3389), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3908), 14, + ACTIONS(4424), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309458,19 +309697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102915] = 6, + [102917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6191), 1, + ACTIONS(6188), 1, anon_sym_COMMA, STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, STATE(3390), 2, sym_line_comment, sym_block_comment, - ACTIONS(4426), 14, + ACTIONS(3862), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309485,19 +309724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [102948] = 6, + [102950] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6193), 1, + ACTIONS(6190), 1, anon_sym_COMMA, - STATE(3390), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3391), 2, + STATE(3391), 3, sym_line_comment, sym_block_comment, - ACTIONS(3862), 14, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(5153), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309511,20 +309750,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, [102981] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6195), 1, + ACTIONS(6193), 1, anon_sym_LBRACE, - STATE(4661), 1, + STATE(4663), 1, sym__select_arm_assignment_statement, STATE(3392), 2, sym_line_comment, sym_block_comment, - ACTIONS(6197), 13, + ACTIONS(6195), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309546,133 +309784,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3393), 2, sym_line_comment, sym_block_comment, - ACTIONS(5265), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(5267), 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, - [103043] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_RBRACE, - ACTIONS(6207), 1, - anon_sym_pub, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(6204), 2, - anon_sym___global, - anon_sym_mut, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3394), 3, - sym_line_comment, - sym_block_comment, - aux_sym__interface_body_repeat1, - STATE(3505), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [103089] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_pub, - ACTIONS(6210), 1, - sym_identifier, - ACTIONS(6212), 1, - anon_sym_RBRACE, - STATE(3394), 1, - aux_sym__interface_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(983), 2, - anon_sym___global, - anon_sym_mut, - STATE(3395), 2, - sym_line_comment, - sym_block_comment, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3505), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [103137] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_pub, - ACTIONS(6210), 1, - sym_identifier, - ACTIONS(6214), 1, - anon_sym_RBRACE, - STATE(3395), 1, - aux_sym__interface_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(983), 2, - anon_sym___global, - anon_sym_mut, - STATE(3396), 2, - sym_line_comment, - sym_block_comment, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3505), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [103185] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3397), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5227), 7, + ACTIONS(5221), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -309680,7 +309792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(5229), 8, + ACTIONS(5223), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -309689,266 +309801,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [103215] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_RBRACE, - ACTIONS(995), 1, - anon_sym_pub, - ACTIONS(6216), 1, - sym_identifier, - STATE(3420), 1, - aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(983), 2, - anon_sym___global, - anon_sym_mut, - STATE(3398), 2, - sym_line_comment, - sym_block_comment, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3508), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [103262] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_pub, - ACTIONS(6216), 1, - sym_identifier, - ACTIONS(6218), 1, - anon_sym_RBRACE, - STATE(3410), 1, - aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(983), 2, - anon_sym___global, - anon_sym_mut, - STATE(3399), 2, - sym_line_comment, - sym_block_comment, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3508), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [103309] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - sym_identifier, - STATE(3565), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3400), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [103344] = 5, + [103043] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6224), 1, - anon_sym_COLON_EQ, - STATE(3401), 2, + STATE(3394), 2, sym_line_comment, sym_block_comment, - ACTIONS(6222), 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, - [103373] = 14, + ACTIONS(5247), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(5249), 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, + [103073] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6197), 1, sym_identifier, - ACTIONS(6226), 1, + ACTIONS(6199), 1, anon_sym_RBRACE, - STATE(3408), 1, - aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3397), 1, + aux_sym__interface_body_repeat1, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3402), 2, + STATE(3395), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3517), 3, sym_struct_field_scope, sym_struct_field_declaration, - [103420] = 8, + sym_interface_method_definition, + [103121] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(6201), 1, sym_identifier, - STATE(3532), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3403), 2, + ACTIONS(6204), 1, + anon_sym_RBRACE, + ACTIONS(6209), 1, + anon_sym_pub, + STATE(3500), 1, + sym_generic_type, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(6206), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3396), 3, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [103455] = 14, + aux_sym__interface_body_repeat1, + STATE(3517), 3, + sym_struct_field_scope, + sym_struct_field_declaration, + sym_interface_method_definition, + [103167] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6197), 1, sym_identifier, - ACTIONS(6228), 1, + ACTIONS(6212), 1, anon_sym_RBRACE, - STATE(3410), 1, - aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3396), 1, + aux_sym__interface_body_repeat1, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3404), 2, + STATE(3397), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3517), 3, sym_struct_field_scope, sym_struct_field_declaration, - [103502] = 14, + sym_interface_method_definition, + [103215] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6230), 1, + ACTIONS(6216), 1, anon_sym_RBRACE, - STATE(3404), 1, + STATE(3444), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3405), 2, + STATE(3398), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103549] = 6, + [103262] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(2463), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - STATE(3406), 2, + STATE(3399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 12, + ACTIONS(2373), 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, @@ -309957,175 +309984,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [103580] = 14, + [103291] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6232), 1, + ACTIONS(6218), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3427), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3407), 2, + STATE(3400), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103627] = 14, + [103338] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6234), 1, + ACTIONS(6220), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3438), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3408), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103674] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - sym_identifier, - STATE(3641), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3409), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [103709] = 13, + [103385] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, + ACTIONS(6222), 1, sym_identifier, - ACTIONS(6239), 1, + ACTIONS(6225), 1, anon_sym_RBRACE, - ACTIONS(6244), 1, + ACTIONS(6230), 1, anon_sym_pub, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(6241), 2, + ACTIONS(6227), 2, anon_sym___global, anon_sym_mut, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - STATE(3410), 3, + STATE(3402), 3, sym_line_comment, sym_block_comment, aux_sym__struct_body_repeat1, - [103754] = 14, + [103430] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(949), 1, + anon_sym_RBRACE, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6247), 1, - anon_sym_RBRACE, - STATE(3417), 1, + STATE(3420), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3411), 2, + STATE(3403), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103801] = 5, + [103477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6251), 1, + ACTIONS(6235), 1, anon_sym_COLON_EQ, - STATE(3412), 2, + STATE(3404), 2, sym_line_comment, sym_block_comment, - ACTIONS(6249), 13, + ACTIONS(6233), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -310139,469 +310139,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [103830] = 14, + [103506] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6253), 1, + ACTIONS(6237), 1, anon_sym_RBRACE, - STATE(3438), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3413), 2, + STATE(3405), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103877] = 14, + [103553] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2175), 1, + anon_sym_DOT, + ACTIONS(2371), 1, + anon_sym_LBRACK, + STATE(3406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2373), 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, + [103584] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + STATE(3407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6239), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6241), 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, + [103613] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6255), 1, + ACTIONS(6243), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3414), 2, + STATE(3408), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [103924] = 5, + [103660] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6259), 1, - anon_sym_COLON_EQ, - STATE(3415), 2, + ACTIONS(965), 1, + anon_sym_pub, + ACTIONS(6214), 1, + sym_identifier, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3419), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_generic_type, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(953), 2, + anon_sym___global, + anon_sym_mut, + STATE(3409), 2, sym_line_comment, sym_block_comment, - ACTIONS(6257), 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, - [103953] = 14, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3506), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [103707] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6261), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(3445), 1, + STATE(3425), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3416), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104000] = 14, + [103754] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6263), 1, + ACTIONS(6249), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3417), 2, + STATE(3411), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104047] = 14, + [103801] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6265), 1, + ACTIONS(6251), 1, anon_sym_RBRACE, - STATE(3422), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3418), 2, + STATE(3412), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104094] = 14, + [103848] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6267), 1, + ACTIONS(6253), 1, anon_sym_RBRACE, - STATE(3433), 1, + STATE(3414), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3419), 2, + STATE(3413), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104141] = 14, + [103895] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6269), 1, + ACTIONS(6255), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3420), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104188] = 14, + [103942] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6271), 1, + ACTIONS(6257), 1, anon_sym_RBRACE, - STATE(3407), 1, + STATE(3435), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3421), 2, + STATE(3415), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104235] = 14, + [103989] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6259), 1, + sym_identifier, + STATE(3610), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [104024] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6273), 1, + ACTIONS(6261), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3412), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3422), 2, + STATE(3417), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104282] = 14, + [104071] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6275), 1, + ACTIONS(6263), 1, anon_sym_RBRACE, - STATE(3414), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3423), 2, + STATE(3418), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104329] = 14, + [104118] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6277), 1, + ACTIONS(6265), 1, anon_sym_RBRACE, - STATE(3426), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3424), 2, + STATE(3419), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104376] = 8, + [104165] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(965), 1, + anon_sym_pub, + ACTIONS(6214), 1, sym_identifier, - STATE(3584), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3425), 2, + ACTIONS(6267), 1, + anon_sym_RBRACE, + STATE(3402), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_generic_type, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(953), 2, + anon_sym___global, + anon_sym_mut, + STATE(3420), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [104411] = 14, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3506), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [104212] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6279), 1, + ACTIONS(6269), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(953), 2, + anon_sym___global, + anon_sym_mut, + STATE(3421), 2, + sym_line_comment, + sym_block_comment, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3506), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [104259] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(965), 1, + anon_sym_pub, + ACTIONS(6214), 1, + sym_identifier, + ACTIONS(6271), 1, + anon_sym_RBRACE, + STATE(3411), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, sym_generic_type, - STATE(4457), 1, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3426), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104458] = 5, + [104306] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2449), 1, + ACTIONS(6273), 1, anon_sym_LBRACK, - STATE(3427), 2, + STATE(3448), 1, + sym_type_parameters, + STATE(3423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2451), 13, + ACTIONS(2187), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym___global, @@ -310610,17 +310735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [104487] = 5, + [104337] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2463), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(3428), 2, + STATE(3424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 13, + ACTIONS(2457), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -310634,192 +310759,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [104516] = 14, + [104366] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6281), 1, + ACTIONS(6275), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3429), 2, + STATE(3425), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104563] = 5, - ACTIONS(311), 1, + [104413] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3430), 2, + ACTIONS(965), 1, + anon_sym_pub, + ACTIONS(6214), 1, + sym_identifier, + ACTIONS(6277), 1, + anon_sym_RBRACE, + STATE(3418), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_generic_type, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(953), 2, + anon_sym___global, + anon_sym_mut, + STATE(3426), 2, sym_line_comment, sym_block_comment, - ACTIONS(6283), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6285), 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, - [104592] = 8, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3506), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [104460] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(965), 1, + anon_sym_pub, + ACTIONS(6214), 1, sym_identifier, - STATE(3549), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3431), 2, + ACTIONS(6279), 1, + anon_sym_RBRACE, + STATE(3402), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_generic_type, + STATE(3507), 1, + sym__struct_field_definition, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, + sym_reference_expression, + ACTIONS(953), 2, + anon_sym___global, + anon_sym_mut, + STATE(3427), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [104627] = 14, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3506), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [104507] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6287), 1, + ACTIONS(6281), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3432), 2, + STATE(3428), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104674] = 14, + [104554] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6289), 1, + ACTIONS(6283), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3433), 2, + STATE(3429), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104721] = 6, - ACTIONS(311), 1, + [104601] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_parameters, - STATE(3434), 2, + ACTIONS(6259), 1, + sym_identifier, + STATE(3561), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 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, - [104752] = 5, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [104636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6295), 1, + ACTIONS(6287), 1, anon_sym_COLON_EQ, - STATE(3435), 2, + STATE(3431), 2, sym_line_comment, sym_block_comment, - ACTIONS(6293), 13, + ACTIONS(6285), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -310833,25 +310975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [104781] = 8, + [104665] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(6259), 1, sym_identifier, - STATE(3588), 1, + STATE(3605), 1, sym__function_name, - STATE(4021), 1, + STATE(4016), 1, sym_overridable_operator, - STATE(3436), 2, + STATE(3432), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, + ACTIONS(6159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6159), 8, + ACTIONS(6157), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -310860,25 +311002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104816] = 8, + [104700] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(6259), 1, sym_identifier, - STATE(3632), 1, + STATE(3630), 1, sym__function_name, - STATE(4021), 1, + STATE(4016), 1, sym_overridable_operator, - STATE(3437), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, + ACTIONS(6159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6159), 8, + ACTIONS(6157), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -310887,220 +311029,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104851] = 14, + [104735] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6297), 1, + ACTIONS(6289), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3429), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3438), 2, + STATE(3434), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104898] = 14, + [104782] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6299), 1, + ACTIONS(6291), 1, anon_sym_RBRACE, - STATE(3432), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3439), 2, + STATE(3435), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [104945] = 8, + [104829] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - sym_identifier, - STATE(3625), 1, - sym__function_name, - STATE(4021), 1, - sym_overridable_operator, - STATE(3440), 2, + ACTIONS(6295), 1, + anon_sym_COLON_EQ, + STATE(3436), 2, sym_line_comment, sym_block_comment, - ACTIONS(6161), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6159), 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, - [104980] = 14, + ACTIONS(6293), 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, + [104858] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6301), 1, + ACTIONS(6297), 1, anon_sym_RBRACE, - STATE(3429), 1, + STATE(3428), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3441), 2, + STATE(3437), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [105027] = 14, + [104905] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6303), 1, + ACTIONS(6299), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3442), 2, + STATE(3438), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [105074] = 14, + [104952] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6301), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3421), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, - STATE(3443), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [105121] = 14, + [104999] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6259), 1, + sym_identifier, + STATE(3629), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [105034] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6259), 1, + sym_identifier, + STATE(3532), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [105069] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6259), 1, + sym_identifier, + STATE(3526), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [105104] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6259), 1, + sym_identifier, + STATE(3646), 1, + sym__function_name, + STATE(4016), 1, + sym_overridable_operator, + STATE(3443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6157), 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, + [105139] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, + ACTIONS(965), 1, anon_sym_pub, - ACTIONS(6216), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(6307), 1, + ACTIONS(6303), 1, anon_sym_RBRACE, - STATE(3442), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, + STATE(3500), 1, + sym_generic_type, STATE(3507), 1, sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, + STATE(3508), 1, + sym_embedded_definition, + STATE(4454), 1, sym_reference_expression, - ACTIONS(983), 2, + ACTIONS(953), 2, anon_sym___global, anon_sym_mut, STATE(3444), 2, @@ -311109,51 +311356,66 @@ static const uint16_t ts_small_parse_table[] = { STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3508), 2, + STATE(3506), 2, sym_struct_field_scope, sym_struct_field_declaration, - [105168] = 14, + [105186] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_pub, - ACTIONS(6216), 1, - sym_identifier, - ACTIONS(6309), 1, - anon_sym_RBRACE, - STATE(3410), 1, - aux_sym__struct_body_repeat1, - STATE(3503), 1, - sym_embedded_definition, - STATE(3507), 1, - sym__struct_field_definition, - STATE(3509), 1, - sym_generic_type, - STATE(4457), 1, - sym_reference_expression, - ACTIONS(983), 2, - anon_sym___global, - anon_sym_mut, + ACTIONS(6307), 1, + anon_sym_COLON_EQ, STATE(3445), 2, sym_line_comment, sym_block_comment, - STATE(3481), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3508), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [105215] = 4, + ACTIONS(6305), 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, + [105215] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3407), 1, + sym_attribute, + ACTIONS(6311), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3446), 3, + sym_line_comment, + sym_block_comment, + aux_sym_attributes_repeat1, + ACTIONS(6309), 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, + [105245] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3446), 2, + STATE(3447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 13, + ACTIONS(2401), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311167,15 +311429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105241] = 4, + [105271] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3447), 2, + STATE(3448), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 13, + ACTIONS(2841), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311189,46 +311451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105267] = 7, + [105297] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3430), 1, + STATE(3407), 1, sym_attribute, - STATE(3449), 1, + STATE(3446), 1, aux_sym_attributes_repeat1, ACTIONS(125), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6311), 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, - [105299] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3430), 1, - sym_attribute, - ACTIONS(6315), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3449), 3, + STATE(3449), 2, sym_line_comment, sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(6313), 9, + ACTIONS(6314), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -311246,7 +311484,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3450), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 13, + ACTIONS(2453), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311268,11 +311506,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3451), 2, sym_line_comment, sym_block_comment, - ACTIONS(6320), 3, + ACTIONS(6318), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6318), 9, + ACTIONS(6316), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -311282,19 +311520,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [105382] = 5, + [105382] = 7, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6322), 1, + anon_sym_EQ, + STATE(3501), 1, + sym_attribute, + ACTIONS(5209), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6320), 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, + [105413] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3452), 2, + STATE(3453), 2, sym_line_comment, sym_block_comment, - ACTIONS(6324), 3, + ACTIONS(6326), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6322), 9, + ACTIONS(6324), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -311304,51 +311566,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [105409] = 7, + [105440] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6328), 1, - anon_sym_EQ, - STATE(3513), 1, + STATE(3505), 1, sym_attribute, - ACTIONS(5189), 2, + ACTIONS(5209), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6326), 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, - [105440] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, STATE(3454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 11, + ACTIONS(6328), 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, - [105464] = 4, + [105468] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311356,7 +311596,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3455), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 11, + ACTIONS(3324), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311368,7 +311608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105488] = 4, + [105492] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311376,7 +311616,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 11, + ACTIONS(3308), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311388,27 +311628,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105512] = 4, + [105516] = 7, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(6273), 1, + anon_sym_LBRACK, + STATE(3448), 1, + sym_type_parameters, STATE(3457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3084), 11, + ACTIONS(6330), 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, - [105536] = 4, + [105546] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311416,7 +311659,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2961), 11, + ACTIONS(2893), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311428,7 +311671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105560] = 4, + [105570] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311436,7 +311679,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 11, + ACTIONS(2187), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311448,7 +311691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105584] = 4, + [105594] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311456,7 +311699,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 11, + ACTIONS(2967), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311468,7 +311711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105608] = 4, + [105618] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311476,7 +311719,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 11, + ACTIONS(3246), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311488,7 +311731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105632] = 4, + [105642] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311496,7 +311739,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 11, + ACTIONS(3041), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311508,7 +311751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105656] = 4, + [105666] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311516,7 +311759,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3005), 11, + ACTIONS(3304), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311528,7 +311771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105680] = 4, + [105690] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311536,7 +311779,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 11, + ACTIONS(3031), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311548,29 +311791,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105704] = 6, + [105714] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3510), 1, - sym_attribute, - ACTIONS(5189), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, STATE(3465), 2, sym_line_comment, sym_block_comment, - ACTIONS(6330), 8, + ACTIONS(3266), 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, - [105732] = 4, + anon_sym_AT_LBRACK, + [105738] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311578,7 +311819,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 11, + ACTIONS(3027), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311590,7 +311831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105756] = 4, + [105762] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311598,7 +311839,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3090), 11, + ACTIONS(3312), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311610,7 +311851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105780] = 4, + [105786] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311618,7 +311859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 11, + ACTIONS(3001), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311630,49 +311871,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105804] = 6, + [105810] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3515), 1, - sym_attribute, - ACTIONS(5189), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, STATE(3469), 2, sym_line_comment, sym_block_comment, - ACTIONS(6332), 8, + ACTIONS(3300), 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, - [105832] = 4, - ACTIONS(311), 1, + anon_sym_AT_LBRACK, + [105834] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, STATE(3470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3258), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(6309), 11, + anon_sym_module, + anon_sym_const, anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, anon_sym_pub, - anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, - [105856] = 4, + [105858] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311680,7 +311919,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 11, + ACTIONS(3270), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311692,7 +311931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105880] = 4, + [105882] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311700,7 +311939,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3274), 11, + ACTIONS(3084), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311712,27 +311951,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105904] = 4, - ACTIONS(3), 1, + [105906] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, STATE(3473), 2, sym_line_comment, sym_block_comment, - ACTIONS(6313), 11, - anon_sym_module, - anon_sym_const, + ACTIONS(3292), 11, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, anon_sym_pub, - anon_sym_enum, - anon_sym_interface, + anon_sym_mut, anon_sym_LBRACK2, + sym_identifier, anon_sym_AT_LBRACK, - [105928] = 4, + [105930] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311740,7 +311979,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 11, + ACTIONS(3296), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311752,30 +311991,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [105952] = 7, + [105954] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(2185), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_parameters, STATE(3475), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 8, + ACTIONS(3356), 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, - [105982] = 4, + anon_sym_AT_LBRACK, + [105978] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -311783,7 +312019,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 11, + ACTIONS(3318), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311795,26 +312031,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [106006] = 4, + [106002] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, + STATE(3504), 1, + sym_attribute, + ACTIONS(5209), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, STATE(3477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 11, + ACTIONS(6332), 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, [106030] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, @@ -311823,7 +312061,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 11, + ACTIONS(3346), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311835,68 +312073,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [106054] = 12, + [106054] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, - anon_sym_module, + ACTIONS(6334), 1, + sym_identifier, ACTIONS(6338), 1, + anon_sym_LPAREN, + STATE(1798), 1, + sym_global_var_definition, + STATE(3479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6336), 7, anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [106083] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(6340), 1, - anon_sym___global, + anon_sym_module, ACTIONS(6342), 1, - anon_sym_fn, + anon_sym_const, + ACTIONS(6344), 1, + anon_sym___global, ACTIONS(6346), 1, + anon_sym_fn, + ACTIONS(6350), 1, anon_sym_pub, - ACTIONS(6348), 1, + ACTIONS(6352), 1, anon_sym_enum, - ACTIONS(6350), 1, + ACTIONS(6354), 1, anon_sym_interface, - STATE(3650), 1, + STATE(3652), 1, sym_visibility_modifiers, - ACTIONS(6344), 2, + ACTIONS(6348), 2, anon_sym_struct, anon_sym_union, - STATE(3479), 2, - sym_line_comment, - sym_block_comment, - [106093] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - sym_identifier, - ACTIONS(6356), 1, - anon_sym_LPAREN, - STATE(1797), 1, - sym_global_var_definition, STATE(3480), 2, sym_line_comment, sym_block_comment, - ACTIONS(6354), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, [106122] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, + ACTIONS(6273), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3448), 1, sym_type_parameters, STATE(3481), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 8, + ACTIONS(6330), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -311910,204 +312148,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3517), 1, + STATE(3614), 1, sym_capture_list, - STATE(3740), 1, + STATE(3823), 1, sym_generic_parameters, - STATE(4152), 1, + STATE(4104), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3482), 2, sym_line_comment, sym_block_comment, - [106183] = 10, + [106183] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(4186), 1, + anon_sym_COLON, + STATE(3483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6358), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [106209] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3620), 1, + STATE(3584), 1, sym_capture_list, - STATE(3822), 1, + STATE(3810), 1, sym_generic_parameters, - STATE(4230), 1, + STATE(4337), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3483), 2, - sym_line_comment, - sym_block_comment, - [106217] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6338), 1, - anon_sym_const, - ACTIONS(6340), 1, - anon_sym___global, - ACTIONS(6342), 1, - anon_sym_fn, - ACTIONS(6346), 1, - anon_sym_pub, - ACTIONS(6348), 1, - anon_sym_enum, - ACTIONS(6350), 1, - anon_sym_interface, - STATE(3650), 1, - sym_visibility_modifiers, - ACTIONS(6344), 2, - anon_sym_struct, - anon_sym_union, STATE(3484), 2, sym_line_comment, sym_block_comment, - [106253] = 10, + [106243] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3630), 1, + STATE(3536), 1, sym_capture_list, - STATE(3664), 1, - sym_signature, - STATE(3790), 1, + STATE(3805), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(3877), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3485), 2, sym_line_comment, sym_block_comment, - [106287] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - STATE(3486), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2173), 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, - [106309] = 10, + [106277] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3552), 1, + STATE(3631), 1, sym_capture_list, - STATE(3833), 1, + STATE(3796), 1, sym_generic_parameters, - STATE(4096), 1, + STATE(4384), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3487), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [106343] = 7, + [106311] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - sym_identifier, - ACTIONS(6360), 1, - anon_sym_LPAREN, - STATE(1823), 1, - sym_global_var_definition, - STATE(3488), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6354), 6, + ACTIONS(6342), 1, anon_sym_const, + ACTIONS(6344), 1, + anon_sym___global, + ACTIONS(6346), 1, anon_sym_fn, - anon_sym_struct, - anon_sym_union, + ACTIONS(6350), 1, + anon_sym_pub, + ACTIONS(6352), 1, anon_sym_enum, + ACTIONS(6354), 1, anon_sym_interface, - [106371] = 10, + STATE(3652), 1, + sym_visibility_modifiers, + ACTIONS(6348), 2, + anon_sym_struct, + anon_sym_union, + STATE(3487), 2, + sym_line_comment, + sym_block_comment, + [106347] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3586), 1, + STATE(3587), 1, sym_capture_list, - STATE(3694), 1, + STATE(3741), 1, sym_generic_parameters, - STATE(4320), 1, + STATE(4152), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3488), 2, + sym_line_comment, + sym_block_comment, + [106381] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2187), 1, + anon_sym_LBRACE, STATE(3489), 2, sym_line_comment, sym_block_comment, + ACTIONS(6330), 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, [106405] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3546), 1, + STATE(3602), 1, sym_capture_list, - STATE(3816), 1, + STATE(3837), 1, sym_generic_parameters, - STATE(4292), 1, + STATE(4336), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3490), 2, @@ -312118,20 +312356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3574), 1, + STATE(3562), 1, sym_capture_list, - STATE(3737), 1, + STATE(3816), 1, sym_generic_parameters, - STATE(4210), 1, + STATE(4296), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3491), 2, @@ -312142,20 +312380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3530), 1, + STATE(3535), 1, sym_capture_list, STATE(3793), 1, sym_generic_parameters, - STATE(4266), 1, + STATE(4267), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3492), 2, @@ -312166,177 +312404,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3640), 1, + STATE(3564), 1, sym_capture_list, - STATE(3811), 1, + STATE(3832), 1, sym_generic_parameters, - STATE(4337), 1, + STATE(4098), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3493), 2, sym_line_comment, sym_block_comment, - [106541] = 10, - ACTIONS(3), 1, + [106541] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, - anon_sym_LBRACK2, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3639), 1, - sym_capture_list, - STATE(3797), 1, - sym_generic_parameters, - STATE(4383), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3494), 2, sym_line_comment, sym_block_comment, - [106575] = 6, + ACTIONS(2175), 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, + [106563] = 7, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(4220), 1, - anon_sym_COLON, + ACTIONS(6362), 1, + anon_sym_EQ, + STATE(3680), 1, + sym_attribute, + ACTIONS(5209), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, STATE(3495), 2, sym_line_comment, sym_block_comment, - ACTIONS(4218), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6362), 5, + ACTIONS(6360), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [106601] = 10, + anon_sym_RBRACE, + sym_identifier, + [106591] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3605), 1, + STATE(3638), 1, sym_capture_list, - STATE(3830), 1, + STATE(3817), 1, sym_generic_parameters, - STATE(4108), 1, + STATE(4226), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3496), 2, sym_line_comment, sym_block_comment, - [106635] = 7, - ACTIONS(311), 1, + [106625] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6366), 1, - anon_sym_EQ, - STATE(3683), 1, - sym_attribute, - ACTIONS(5189), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, + ACTIONS(6334), 1, + sym_identifier, + ACTIONS(6364), 1, + anon_sym_LPAREN, + STATE(1826), 1, + sym_global_var_definition, STATE(3497), 2, sym_line_comment, sym_block_comment, - ACTIONS(6364), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [106663] = 10, + ACTIONS(6336), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [106653] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6165), 1, + ACTIONS(6163), 1, anon_sym_LBRACK2, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3540), 1, + STATE(3543), 1, sym_capture_list, - STATE(3805), 1, + STATE(3736), 1, sym_generic_parameters, - STATE(3876), 1, + STATE(4220), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3498), 2, sym_line_comment, sym_block_comment, - [106697] = 5, - ACTIONS(311), 1, + [106687] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2185), 1, - anon_sym_LBRACE, + ACTIONS(6163), 1, + anon_sym_LBRACK2, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3621), 1, + sym_capture_list, + STATE(3686), 1, + sym_signature, + STATE(3790), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3499), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 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, - [106721] = 6, + [106721] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6370), 1, - anon_sym_DOT, - STATE(3511), 1, - aux_sym_import_path_repeat1, STATE(3500), 2, sym_line_comment, sym_block_comment, - ACTIONS(6368), 6, + ACTIONS(6330), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [106746] = 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [106742] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312344,35 +312580,35 @@ static const uint16_t ts_small_parse_table[] = { STATE(3501), 2, sym_line_comment, sym_block_comment, - ACTIONS(4218), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6362), 5, + ACTIONS(6366), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [106769] = 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [106763] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6374), 1, + ACTIONS(6370), 1, anon_sym_DOT, - STATE(3502), 3, + STATE(3511), 1, + aux_sym_import_path_repeat1, + STATE(3502), 2, sym_line_comment, sym_block_comment, - aux_sym_import_path_repeat1, - ACTIONS(6372), 6, + ACTIONS(6368), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [106792] = 4, + [106788] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312380,7 +312616,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3503), 2, sym_line_comment, sym_block_comment, - ACTIONS(6377), 8, + ACTIONS(6372), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -312389,7 +312625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [106813] = 4, + [106809] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312397,7 +312633,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3504), 2, sym_line_comment, sym_block_comment, - ACTIONS(6379), 8, + ACTIONS(6374), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -312406,7 +312642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [106834] = 5, + [106830] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312414,17 +312650,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(3505), 2, sym_line_comment, sym_block_comment, - ACTIONS(6383), 3, + ACTIONS(6376), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6381), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [106857] = 4, + [106851] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312432,16 +312667,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(3506), 2, sym_line_comment, sym_block_comment, - ACTIONS(6385), 8, + ACTIONS(6380), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6378), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [106878] = 4, + [106874] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312449,7 +312685,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3507), 2, sym_line_comment, sym_block_comment, - ACTIONS(6387), 8, + ACTIONS(6382), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -312458,7 +312694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [106899] = 5, + [106895] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312466,17 +312702,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(3508), 2, sym_line_comment, sym_block_comment, - ACTIONS(6391), 3, + ACTIONS(6384), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6389), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [106922] = 4, + [106916] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312484,33 +312719,79 @@ static const uint16_t ts_small_parse_table[] = { STATE(3509), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 8, + ACTIONS(4184), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6358), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_SEMI, + anon_sym_COMMA, + [106939] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(961), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6386), 1, sym_identifier, - [106943] = 4, + ACTIONS(6388), 1, + anon_sym_RBRACE, + STATE(3483), 1, + sym_reference_expression, + STATE(3515), 1, + aux_sym_element_list_repeat1, + STATE(4418), 1, + sym_field_name, + STATE(3509), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3510), 2, + sym_line_comment, + sym_block_comment, + [106972] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3510), 2, + ACTIONS(6392), 1, + anon_sym_DOT, + STATE(3511), 3, sym_line_comment, sym_block_comment, - ACTIONS(6393), 8, + aux_sym_import_path_repeat1, + ACTIONS(6390), 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, - [106964] = 6, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [106995] = 8, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_LBRACE, + STATE(3655), 1, + sym_import_alias, + STATE(3806), 1, + sym_selective_import_list, + STATE(3512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6395), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [107024] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -312519,25 +312800,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(3502), 1, aux_sym_import_path_repeat1, - STATE(3511), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - ACTIONS(6395), 6, + ACTIONS(6401), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [106989] = 4, + [107049] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3512), 2, + STATE(3514), 2, sym_line_comment, sym_block_comment, - ACTIONS(6397), 8, + ACTIONS(6403), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -312546,15 +312827,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [107010] = 4, + [107070] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6405), 1, + sym_identifier, + ACTIONS(6408), 1, + anon_sym_RBRACE, + ACTIONS(6410), 1, + anon_sym_DOT_DOT_DOT, + STATE(3483), 1, + sym_reference_expression, + STATE(4418), 1, + sym_field_name, + STATE(3509), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3515), 3, + sym_line_comment, + sym_block_comment, + aux_sym_element_list_repeat1, + [107101] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3513), 2, + STATE(3516), 2, sym_line_comment, sym_block_comment, - ACTIONS(6399), 8, + ACTIONS(6413), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -312563,268 +312866,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [107031] = 8, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_LBRACE, - STATE(3653), 1, - sym_import_alias, - STATE(3806), 1, - sym_selective_import_list, - STATE(3514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6401), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [107060] = 4, + [107122] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3515), 2, + STATE(3517), 2, sym_line_comment, sym_block_comment, - ACTIONS(6407), 8, + ACTIONS(6417), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6415), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [107081] = 9, + [107145] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 1, - anon_sym_SQUOTE, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3516), 2, - sym_line_comment, - sym_block_comment, - [107111] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3754), 1, - sym_generic_parameters, - STATE(4196), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3517), 2, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [107139] = 9, + ACTIONS(6390), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [107165] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6421), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6417), 1, - anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3518), 2, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [107169] = 9, + [107195] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3519), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [107199] = 9, + [107225] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, + ACTIONS(6431), 1, anon_sym_DQUOTE, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3520), 2, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [107229] = 9, + [107255] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6427), 1, + ACTIONS(6437), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3521), 2, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [107259] = 6, + [107285] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - sym_identifier, - STATE(3690), 1, - sym_reference_expression, - STATE(3522), 2, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6437), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, + sym_string_interpolation, + ACTIONS(6429), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3523), 2, sym_line_comment, sym_block_comment, - ACTIONS(6431), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [107283] = 9, + [107315] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6433), 1, + ACTIONS(6439), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3523), 2, - sym_line_comment, - sym_block_comment, - [107313] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6435), 1, - anon_sym_const, - ACTIONS(6437), 1, - anon_sym_type, - ACTIONS(6439), 1, - anon_sym_fn, - ACTIONS(6443), 1, - anon_sym_enum, - ACTIONS(6445), 1, - anon_sym_interface, - ACTIONS(6441), 2, - anon_sym_struct, - anon_sym_union, STATE(3524), 2, sym_line_comment, sym_block_comment, - [107343] = 9, + [107345] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6433), 1, + ACTIONS(6439), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3525), 2, sym_line_comment, sym_block_comment, - [107373] = 9, - ACTIONS(311), 1, + [107375] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6447), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1771), 1, + sym_signature, + STATE(3824), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3526), 2, sym_line_comment, sym_block_comment, @@ -312833,17 +313072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6449), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6443), 1, + anon_sym_DQUOTE, + STATE(3597), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3527), 2, @@ -312855,16 +313094,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6447), 1, - anon_sym_DQUOTE, - STATE(3631), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6443), 1, + anon_sym_SQUOTE, + STATE(3639), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3528), 2, @@ -312875,705 +313114,704 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6449), 1, + ACTIONS(6445), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3637), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3529), 2, sym_line_comment, sym_block_comment, - [107493] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3788), 1, - sym_generic_parameters, - STATE(4221), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3530), 2, - sym_line_comment, - sym_block_comment, - [107521] = 9, + [107493] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6427), 1, - anon_sym_DQUOTE, - STATE(3631), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6445), 1, + anon_sym_SQUOTE, + STATE(3640), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, + STATE(3530), 2, + sym_line_comment, + sym_block_comment, + [107523] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, STATE(3531), 2, sym_line_comment, sym_block_comment, - [107551] = 8, + ACTIONS(6447), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [107543] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1776), 1, + STATE(1751), 1, sym_signature, STATE(3828), 1, sym_generic_parameters, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3532), 2, sym_line_comment, sym_block_comment, - [107579] = 9, + [107571] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6453), 1, + ACTIONS(6449), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3533), 2, + sym_line_comment, + sym_block_comment, + [107601] = 9, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6449), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3533), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [107609] = 8, + [107631] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1769), 1, - sym_signature, - STATE(3807), 1, + STATE(3789), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(4224), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3534), 2, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [107637] = 9, - ACTIONS(311), 1, + [107659] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6453), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3535), 2, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3795), 1, + sym_generic_parameters, + STATE(4329), 1, + sym_signature, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [107667] = 9, + [107687] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6455), 1, + ACTIONS(6451), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3536), 2, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [107697] = 9, + [107717] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6417), 1, - anon_sym_DQUOTE, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - STATE(3631), 1, + ACTIONS(6453), 1, + anon_sym_DQUOTE, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3537), 2, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [107727] = 9, + [107747] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6455), 1, + ACTIONS(6453), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3538), 2, - sym_line_comment, - sym_block_comment, - [107757] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, STATE(3539), 2, sym_line_comment, sym_block_comment, - ACTIONS(6457), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, [107777] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(3796), 1, - sym_generic_parameters, - STATE(4325), 1, + STATE(1756), 1, sym_signature, - ACTIONS(5221), 2, + STATE(3835), 1, + sym_generic_parameters, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3540), 2, sym_line_comment, sym_block_comment, - [107805] = 10, - ACTIONS(3), 1, + [107805] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, - sym_identifier, - ACTIONS(6459), 1, - anon_sym_RBRACK, - ACTIONS(6461), 1, - anon_sym_mut, - ACTIONS(6463), 1, - anon_sym_shared, - STATE(4268), 1, - sym_capture, - STATE(4387), 1, - sym_reference_expression, - STATE(4388), 1, - sym_mutability_modifiers, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6455), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, + sym_string_interpolation, + ACTIONS(6429), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3541), 2, sym_line_comment, sym_block_comment, - [107837] = 9, + [107835] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6465), 1, - anon_sym_DQUOTE, - STATE(3533), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6455), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3542), 2, sym_line_comment, sym_block_comment, - [107867] = 9, + [107865] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3829), 1, + sym_generic_parameters, + STATE(4400), 1, + sym_signature, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3543), 2, + sym_line_comment, + sym_block_comment, + [107893] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6465), 1, + ACTIONS(6451), 1, anon_sym_SQUOTE, - STATE(3535), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3543), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [107897] = 9, + [107923] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6467), 1, + ACTIONS(6457), 1, anon_sym_DQUOTE, - STATE(3536), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3544), 2, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [107927] = 9, + [107953] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6467), 1, - anon_sym_SQUOTE, - STATE(3538), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6459), 1, + anon_sym_DQUOTE, + STATE(3593), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3545), 2, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [107957] = 8, + [107983] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3808), 1, - sym_generic_parameters, - STATE(4360), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3546), 2, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6461), 1, + anon_sym_RBRACK, + ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, + anon_sym_shared, + STATE(4269), 1, + sym_capture, + STATE(4386), 1, + sym_reference_expression, + STATE(4387), 1, + sym_mutability_modifiers, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [107985] = 9, + [108015] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6469), 1, + ACTIONS(6467), 1, anon_sym_DQUOTE, - STATE(3610), 1, + STATE(3538), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3547), 2, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [108015] = 9, + [108045] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6469), 1, + ACTIONS(6467), 1, anon_sym_SQUOTE, - STATE(3607), 1, + STATE(3539), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3548), 2, - sym_line_comment, - sym_block_comment, - [108045] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1772), 1, - sym_signature, - STATE(3824), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3549), 2, sym_line_comment, sym_block_comment, - [108073] = 9, + [108075] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6471), 1, + ACTIONS(6469), 1, anon_sym_DQUOTE, - STATE(3602), 1, + STATE(3541), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3550), 2, sym_line_comment, sym_block_comment, - [108103] = 9, + [108105] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6473), 1, - anon_sym_DQUOTE, - STATE(3528), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6469), 1, + anon_sym_SQUOTE, + STATE(3542), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3551), 2, sym_line_comment, sym_block_comment, - [108133] = 8, - ACTIONS(3), 1, + [108135] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3829), 1, - sym_generic_parameters, - STATE(4183), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6459), 1, + anon_sym_SQUOTE, + STATE(3591), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3552), 2, sym_line_comment, sym_block_comment, - [108161] = 9, + [108165] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(6471), 1, - anon_sym_SQUOTE, - STATE(3592), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + anon_sym_DQUOTE, + STATE(3604), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3553), 2, sym_line_comment, sym_block_comment, - [108191] = 9, + [108195] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6473), 1, + ACTIONS(6471), 1, anon_sym_SQUOTE, - STATE(3526), 1, + STATE(3578), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3554), 2, sym_line_comment, sym_block_comment, - [108221] = 9, + [108225] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6475), 1, + ACTIONS(6473), 1, anon_sym_DQUOTE, - STATE(3537), 1, + STATE(3523), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3555), 2, sym_line_comment, sym_block_comment, - [108251] = 9, - ACTIONS(311), 1, + [108255] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6475), 1, - anon_sym_SQUOTE, - STATE(3518), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1750), 1, + sym_signature, + STATE(3803), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3556), 2, sym_line_comment, sym_block_comment, - [108281] = 9, + [108283] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6477), 1, - anon_sym_DQUOTE, - STATE(3631), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6473), 1, + anon_sym_SQUOTE, + STATE(3522), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3557), 2, sym_line_comment, sym_block_comment, - [108311] = 9, + [108313] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6479), 1, + ACTIONS(6475), 1, anon_sym_DQUOTE, - STATE(3525), 1, + STATE(3521), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3558), 2, sym_line_comment, sym_block_comment, - [108341] = 9, + [108343] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6477), 1, + ACTIONS(6475), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3596), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3559), 2, sym_line_comment, sym_block_comment, - [108371] = 9, + [108373] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6481), 1, - anon_sym_DQUOTE, - STATE(3531), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6457), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3560), 2, sym_line_comment, sym_block_comment, - [108401] = 9, - ACTIONS(311), 1, + [108403] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6479), 1, - anon_sym_SQUOTE, - STATE(3523), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1767), 1, + sym_signature, + STATE(3769), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3561), 2, sym_line_comment, sym_block_comment, - [108431] = 9, - ACTIONS(311), 1, + [108431] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6481), 1, - anon_sym_SQUOTE, - STATE(3521), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3807), 1, + sym_generic_parameters, + STATE(4361), 1, + sym_signature, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3562), 2, sym_line_comment, sym_block_comment, - [108461] = 4, + [108459] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -313581,7 +313819,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3563), 2, sym_line_comment, sym_block_comment, - ACTIONS(6483), 7, + ACTIONS(6477), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -313589,232 +313827,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [108481] = 9, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6485), 1, - anon_sym_SQUOTE, - STATE(3612), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3564), 2, - sym_line_comment, - sym_block_comment, - [108511] = 8, + [108479] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1766), 1, - sym_signature, - STATE(3769), 1, + STATE(3827), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(4183), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3565), 2, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [108539] = 9, + [108507] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6427), 1, + anon_sym_DQUOTE, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6487), 1, - anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3566), 2, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [108569] = 9, + [108537] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6487), 1, + ACTIONS(6479), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3588), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3566), 2, + sym_line_comment, + sym_block_comment, + [108567] = 9, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6481), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3567), 2, sym_line_comment, sym_block_comment, - [108599] = 9, + [108597] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6489), 1, + ACTIONS(6483), 1, anon_sym_SQUOTE, - STATE(3597), 1, + STATE(3628), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3568), 2, sym_line_comment, sym_block_comment, - [108629] = 9, + [108627] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6489), 1, - anon_sym_DQUOTE, - STATE(3598), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6481), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3569), 2, sym_line_comment, sym_block_comment, - [108659] = 9, + [108657] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6491), 1, + ACTIONS(6485), 1, anon_sym_SQUOTE, - STATE(3599), 1, + STATE(3598), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3570), 2, sym_line_comment, sym_block_comment, - [108689] = 9, + [108687] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6491), 1, + ACTIONS(6485), 1, anon_sym_DQUOTE, - STATE(3600), 1, + STATE(3599), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3571), 2, sym_line_comment, sym_block_comment, - [108719] = 9, + [108717] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6485), 1, + ACTIONS(6487), 1, + anon_sym_SQUOTE, + STATE(3600), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3572), 2, + sym_line_comment, + sym_block_comment, + [108747] = 9, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6487), 1, anon_sym_DQUOTE, - STATE(3616), 1, + STATE(3601), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3572), 2, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [108749] = 9, + [108777] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6493), 1, - anon_sym_SQUOTE, - STATE(3617), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6483), 1, + anon_sym_DQUOTE, + STATE(3633), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3573), 2, - sym_line_comment, - sym_block_comment, - [108779] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3831), 1, - sym_generic_parameters, - STATE(4399), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3574), 2, sym_line_comment, sym_block_comment, @@ -313823,17 +314062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6493), 1, + ACTIONS(6489), 1, anon_sym_DQUOTE, - STATE(3618), 1, + STATE(3537), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3575), 2, @@ -313845,16 +314084,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6495), 1, - anon_sym_DQUOTE, - STATE(3557), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6489), 1, + anon_sym_SQUOTE, + STATE(3544), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3576), 2, @@ -313865,17 +314104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6495), 1, - anon_sym_SQUOTE, - STATE(3559), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6491), 1, + anon_sym_DQUOTE, + STATE(3545), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3577), 2, @@ -313887,1075 +314126,1075 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6497), 1, - anon_sym_DQUOTE, - STATE(3566), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6493), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3578), 2, sym_line_comment, sym_block_comment, - [108927] = 8, + [108927] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, + ACTIONS(6147), 1, sym_identifier, - ACTIONS(6502), 1, - anon_sym_RBRACE, - ACTIONS(6504), 1, - anon_sym_DOT_DOT_DOT, - STATE(3495), 1, + ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, + anon_sym_shared, + ACTIONS(6495), 1, + anon_sym_RBRACK, + STATE(4269), 1, + sym_capture, + STATE(4386), 1, sym_reference_expression, - STATE(3501), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3579), 3, + STATE(4387), 1, + sym_mutability_modifiers, + STATE(3579), 2, sym_line_comment, sym_block_comment, - aux_sym_element_list_repeat1, - [108955] = 9, + [108959] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6507), 1, + ACTIONS(6497), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3565), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3580), 2, sym_line_comment, sym_block_comment, - [108985] = 9, + [108989] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6507), 1, + ACTIONS(6497), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3520), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3581), 2, sym_line_comment, sym_block_comment, - [109015] = 9, + [109019] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 1, - anon_sym_DQUOTE, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - STATE(3631), 1, + ACTIONS(6499), 1, + anon_sym_DQUOTE, + STATE(3567), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3582), 2, sym_line_comment, sym_block_comment, - [109045] = 9, + [109049] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6497), 1, + ACTIONS(6499), 1, anon_sym_SQUOTE, - STATE(3567), 1, + STATE(3569), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3583), 2, sym_line_comment, sym_block_comment, - [109075] = 8, + [109079] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1765), 1, - sym_signature, - STATE(3763), 1, + STATE(3813), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(4298), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3584), 2, sym_line_comment, sym_block_comment, - [109103] = 10, - ACTIONS(3), 1, + [109107] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, - sym_identifier, - ACTIONS(6461), 1, - anon_sym_mut, - ACTIONS(6463), 1, - anon_sym_shared, - ACTIONS(6509), 1, - anon_sym_RBRACK, - STATE(4268), 1, - sym_capture, - STATE(4387), 1, - sym_reference_expression, - STATE(4388), 1, - sym_mutability_modifiers, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6491), 1, + anon_sym_SQUOTE, + STATE(3560), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3585), 2, sym_line_comment, sym_block_comment, - [109135] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3840), 1, - sym_generic_parameters, - STATE(4390), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3586), 2, - sym_line_comment, - sym_block_comment, - [109163] = 9, + [109137] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6511), 1, + ACTIONS(6501), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3587), 2, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [109193] = 8, + [109167] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1773), 1, - sym_signature, - STATE(3735), 1, + STATE(3754), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(4197), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3588), 2, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [109221] = 9, + [109195] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6511), 1, + ACTIONS(6501), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3589), 2, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [109251] = 9, + [109225] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6513), 1, + ACTIONS(6503), 1, anon_sym_SQUOTE, - STATE(3646), 1, + STATE(3519), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3590), 2, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [109281] = 9, + [109255] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6515), 1, + ACTIONS(6505), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3591), 2, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [109311] = 9, + [109285] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6517), 1, + ACTIONS(6507), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3592), 2, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [109341] = 9, + [109315] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6519), 1, - anon_sym_DQUOTE, - STATE(3580), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6505), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3593), 2, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [109371] = 9, + [109345] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6515), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6507), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3594), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [109401] = 9, + [109375] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6519), 1, - anon_sym_SQUOTE, - STATE(3581), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6503), 1, + anon_sym_DQUOTE, + STATE(3641), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3595), 2, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [109431] = 9, + [109405] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6521), 1, - anon_sym_DQUOTE, - STATE(3582), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, - sym_string_interpolation, - ACTIONS(6421), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3596), 2, + ACTIONS(6509), 1, + sym_identifier, + STATE(3668), 1, + sym_reference_expression, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [109461] = 9, + ACTIONS(6511), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [109429] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6523), 1, + ACTIONS(6431), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3597), 2, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [109491] = 9, + [109459] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6523), 1, + ACTIONS(6513), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3598), 2, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [109521] = 9, + [109489] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6525), 1, + ACTIONS(6515), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3599), 2, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [109551] = 9, + [109519] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6525), 1, + ACTIONS(6515), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3600), 2, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [109581] = 9, + [109549] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6521), 1, + ACTIONS(6517), 1, anon_sym_SQUOTE, - STATE(3516), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3601), 2, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [109611] = 9, + [109579] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(6517), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, + STATE(3601), 2, + sym_line_comment, + sym_block_comment, + [109609] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3841), 1, + sym_generic_parameters, + STATE(4381), 1, + sym_signature, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3602), 2, sym_line_comment, sym_block_comment, - [109641] = 9, + [109637] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6513), 1, + ACTIONS(6479), 1, anon_sym_DQUOTE, - STATE(3645), 1, + STATE(3586), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3603), 2, sym_line_comment, sym_block_comment, - [109671] = 9, + [109667] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6527), 1, - anon_sym_SQUOTE, - STATE(3519), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6493), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3604), 2, sym_line_comment, sym_block_comment, - [109701] = 8, + [109697] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(3834), 1, - sym_generic_parameters, - STATE(4184), 1, + STATE(1762), 1, sym_signature, - ACTIONS(5221), 2, + STATE(3762), 1, + sym_generic_parameters, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3605), 2, sym_line_comment, sym_block_comment, - [109729] = 9, + [109725] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6529), 1, - anon_sym_DQUOTE, - STATE(3587), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6519), 1, + anon_sym_SQUOTE, + STATE(3645), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3606), 2, sym_line_comment, sym_block_comment, - [109759] = 9, + [109755] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6531), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6521), 1, + anon_sym_DQUOTE, + STATE(3590), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3607), 2, sym_line_comment, sym_block_comment, - [109789] = 9, + [109785] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6529), 1, - anon_sym_SQUOTE, - STATE(3589), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6519), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3608), 2, sym_line_comment, sym_block_comment, - [109819] = 9, + [109815] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6533), 1, - anon_sym_DQUOTE, - STATE(3591), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6521), 1, + anon_sym_SQUOTE, + STATE(3592), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3609), 2, sym_line_comment, sym_block_comment, - [109849] = 9, - ACTIONS(311), 1, + [109845] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6531), 1, - anon_sym_DQUOTE, - STATE(3631), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, - sym_string_interpolation, - ACTIONS(6421), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1776), 1, + sym_signature, + STATE(3734), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3610), 2, sym_line_comment, sym_block_comment, - [109879] = 9, - ACTIONS(311), 1, + [109873] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6535), 1, - anon_sym_SQUOTE, - STATE(3644), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1769), 1, + sym_signature, + STATE(3703), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3611), 2, sym_line_comment, sym_block_comment, - [109909] = 9, + [109901] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6537), 1, + ACTIONS(6523), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3643), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3612), 2, sym_line_comment, sym_block_comment, - [109939] = 9, + [109931] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6533), 1, - anon_sym_SQUOTE, - STATE(3594), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6523), 1, + anon_sym_DQUOTE, + STATE(3642), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3613), 2, sym_line_comment, sym_block_comment, - [109969] = 4, - ACTIONS(311), 1, + [109961] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(3831), 1, + sym_generic_parameters, + STATE(4196), 1, + sym_signature, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3614), 2, sym_line_comment, sym_block_comment, - ACTIONS(6372), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [109989] = 9, - ACTIONS(311), 1, + [109989] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6535), 1, - anon_sym_DQUOTE, - STATE(3643), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, - sym_string_interpolation, - ACTIONS(6421), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1757), 1, + sym_signature, + STATE(3707), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3615), 2, sym_line_comment, sym_block_comment, - [110019] = 9, + [110017] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6525), 1, + anon_sym_const, + ACTIONS(6527), 1, + anon_sym_type, + ACTIONS(6529), 1, + anon_sym_fn, + ACTIONS(6533), 1, + anon_sym_enum, + ACTIONS(6535), 1, + anon_sym_interface, + ACTIONS(6531), 2, + anon_sym_struct, + anon_sym_union, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [110047] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(6537), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3616), 2, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [110049] = 9, + [110077] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6539), 1, + ACTIONS(6537), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3617), 2, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [110079] = 9, + [110107] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(6539), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3618), 2, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [110109] = 8, - ACTIONS(3), 1, + [110137] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1764), 1, - sym_signature, - STATE(3701), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3619), 2, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [110137] = 8, + [110167] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3827), 1, + STATE(3792), 1, sym_generic_parameters, - STATE(4194), 1, + STATE(4334), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3620), 2, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [110165] = 9, + [110195] = 8, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6544), 1, + anon_sym_DQUOTE, + ACTIONS(6546), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6541), 1, - anon_sym_DQUOTE, - STATE(3529), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6541), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3621), 2, - sym_line_comment, - sym_block_comment, - [110195] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1763), 1, - sym_signature, - STATE(3708), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3622), 2, + STATE(3622), 3, sym_line_comment, sym_block_comment, + aux_sym_interpreted_string_literal_repeat2, [110223] = 8, - ACTIONS(3), 1, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1754), 1, - sym_signature, - STATE(3835), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3623), 2, + ACTIONS(6555), 1, + anon_sym_SQUOTE, + ACTIONS(6557), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6560), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6552), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3623), 3, sym_line_comment, sym_block_comment, + aux_sym_interpreted_string_literal_repeat1, [110251] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6541), 1, - anon_sym_SQUOTE, - STATE(3527), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6563), 1, + anon_sym_DQUOTE, + STATE(3617), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3624), 2, sym_line_comment, sym_block_comment, - [110281] = 8, - ACTIONS(3), 1, + [110281] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1756), 1, - sym_signature, - STATE(3704), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6563), 1, + anon_sym_SQUOTE, + STATE(3618), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3625), 2, sym_line_comment, sym_block_comment, - [110309] = 9, + [110311] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6543), 1, + ACTIONS(6565), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3619), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3626), 2, sym_line_comment, sym_block_comment, - [110339] = 9, + [110341] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6543), 1, + ACTIONS(6565), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3620), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3627), 2, sym_line_comment, sym_block_comment, - [110369] = 9, + [110371] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6423), 1, - aux_sym_interpreted_string_literal_token2, + aux_sym_interpreted_string_literal_token1, ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6545), 1, - anon_sym_DQUOTE, - STATE(3631), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + ACTIONS(6567), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, STATE(3628), 2, sym_line_comment, sym_block_comment, - [110399] = 9, - ACTIONS(311), 1, + [110401] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6545), 1, - anon_sym_SQUOTE, - STATE(3633), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, - sym_string_interpolation, - ACTIONS(6409), 2, - sym_escape_sequence, - anon_sym_DOLLAR, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1754), 1, + sym_signature, + STATE(3702), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3629), 2, sym_line_comment, sym_block_comment, @@ -314964,1141 +315203,1144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(3795), 1, - sym_generic_parameters, - STATE(4341), 1, + STATE(1764), 1, sym_signature, - ACTIONS(5221), 2, + STATE(3697), 1, + sym_generic_parameters, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3630), 2, sym_line_comment, sym_block_comment, [110457] = 8, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_DQUOTE, - ACTIONS(6552), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6555), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3659), 1, - sym_string_interpolation, - ACTIONS(6547), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3631), 3, - sym_line_comment, - sym_block_comment, - aux_sym_interpreted_string_literal_repeat2, - [110485] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1752), 1, - sym_signature, - STATE(3702), 1, + STATE(3800), 1, sym_generic_parameters, - ACTIONS(5221), 2, + STATE(4396), 1, + sym_signature, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3632), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [110513] = 8, + [110485] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_SQUOTE, - ACTIONS(6563), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6566), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - STATE(3663), 1, + ACTIONS(6569), 1, + anon_sym_SQUOTE, + STATE(3524), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6558), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3633), 3, + STATE(3632), 2, sym_line_comment, sym_block_comment, - aux_sym_interpreted_string_literal_repeat1, - [110541] = 9, - ACTIONS(3), 1, + [110515] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(991), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6569), 1, - sym_identifier, - ACTIONS(6571), 1, - anon_sym_RBRACE, - STATE(3495), 1, - sym_reference_expression, - STATE(3579), 1, - aux_sym_element_list_repeat1, - STATE(3501), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3634), 2, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6567), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, + sym_string_interpolation, + ACTIONS(6429), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [110571] = 9, + [110545] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6573), 1, + ACTIONS(6569), 1, anon_sym_DQUOTE, - STATE(3626), 1, + STATE(3525), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3635), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [110601] = 9, + [110575] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6573), 1, + ACTIONS(6571), 1, anon_sym_SQUOTE, - STATE(3627), 1, + STATE(3533), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3636), 2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [110631] = 9, + [110605] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6575), 1, + ACTIONS(6571), 1, anon_sym_DQUOTE, - STATE(3628), 1, + STATE(3534), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3637), 2, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [110661] = 9, + [110635] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6433), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6575), 1, - anon_sym_SQUOTE, - STATE(3629), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + ACTIONS(6573), 1, + anon_sym_DQUOTE, + STATE(3622), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3638), 2, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [110691] = 8, + [110665] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(3800), 1, + STATE(3819), 1, sym_generic_parameters, - STATE(4397), 1, + STATE(4184), 1, sym_signature, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3639), 2, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [110719] = 8, - ACTIONS(3), 1, + [110693] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(3815), 1, - sym_generic_parameters, - STATE(4298), 1, - sym_signature, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3640), 2, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6513), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [110747] = 8, - ACTIONS(3), 1, + [110723] = 9, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1755), 1, - sym_signature, - STATE(3697), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3641), 2, + ACTIONS(6423), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6573), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3677), 1, + sym_string_interpolation, + ACTIONS(6419), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [110775] = 9, + [110753] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6421), 1, + anon_sym_DQUOTE, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6527), 1, - anon_sym_DQUOTE, - STATE(3520), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3642), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [110805] = 9, + [110783] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6577), 1, + ACTIONS(6575), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3643), 2, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [110835] = 9, + [110813] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6577), 1, + ACTIONS(6575), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3644), 2, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [110865] = 9, + [110843] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, + ACTIONS(6433), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6425), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6579), 1, + ACTIONS(6577), 1, anon_sym_DQUOTE, - STATE(3631), 1, + STATE(3622), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3659), 1, + STATE(3664), 1, sym_string_interpolation, - ACTIONS(6421), 2, + ACTIONS(6429), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3645), 2, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [110895] = 9, + [110873] = 9, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 1, + ACTIONS(6423), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6415), 1, + ACTIONS(6425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6579), 1, + ACTIONS(6577), 1, anon_sym_SQUOTE, - STATE(3633), 1, + STATE(3623), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3663), 1, + STATE(3677), 1, sym_string_interpolation, - ACTIONS(6409), 2, + ACTIONS(6419), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3646), 2, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [110925] = 6, - ACTIONS(311), 1, + [110903] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_RBRACE, - STATE(3649), 1, - aux_sym_selective_import_list_repeat1, - STATE(3647), 2, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1761), 1, + sym_signature, + STATE(3787), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3646), 2, sym_line_comment, sym_block_comment, - ACTIONS(6581), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [110948] = 6, + [110931] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_LBRACK, - STATE(2453), 1, - sym_type_parameters, - STATE(3648), 2, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, + anon_sym_shared, + STATE(4269), 1, + sym_capture, + STATE(4386), 1, + sym_reference_expression, + STATE(4387), 1, + sym_mutability_modifiers, + STATE(3647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [110971] = 6, + [110960] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, + ACTIONS(6581), 1, anon_sym_RBRACE, - STATE(3651), 1, + STATE(3653), 1, aux_sym_selective_import_list_repeat1, - STATE(3649), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - ACTIONS(6581), 4, + ACTIONS(6579), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [110994] = 8, + [110983] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - anon_sym_const, - ACTIONS(6591), 1, - anon_sym_fn, - ACTIONS(6595), 1, - anon_sym_enum, - ACTIONS(6597), 1, - anon_sym_interface, - ACTIONS(6593), 2, - anon_sym_struct, - anon_sym_union, - STATE(3650), 2, - sym_line_comment, - sym_block_comment, - [111021] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6602), 1, - anon_sym_RBRACE, - STATE(3651), 3, + ACTIONS(6583), 1, + anon_sym_LBRACK, + STATE(2423), 1, + sym_type_parameters, + STATE(3649), 2, sym_line_comment, sym_block_comment, - aux_sym_selective_import_list_repeat1, - ACTIONS(6599), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2185), 4, + anon_sym_LBRACE, anon_sym_COMMA, - [111042] = 9, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111006] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6604), 1, + ACTIONS(6585), 1, anon_sym_DOT, - ACTIONS(6606), 1, + ACTIONS(6587), 1, anon_sym_RBRACE, - ACTIONS(6608), 1, + ACTIONS(6589), 1, sym_int_literal, - ACTIONS(6610), 1, + ACTIONS(6591), 1, aux_sym_format_specifier_token1, - ACTIONS(6612), 1, + ACTIONS(6593), 1, aux_sym_format_specifier_token2, - ACTIONS(6614), 1, - anon_sym_0, - STATE(3652), 2, - sym_line_comment, - sym_block_comment, - [111071] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6405), 1, - anon_sym_LBRACE, - STATE(3766), 1, - sym_selective_import_list, - STATE(3653), 2, + ACTIONS(6595), 1, + anon_sym_0, + STATE(3650), 2, sym_line_comment, sym_block_comment, - ACTIONS(6616), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [111094] = 5, + [111035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(2173), 1, anon_sym_DOT, - STATE(3654), 2, + STATE(3651), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 5, + ACTIONS(2371), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [111115] = 9, + [111056] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, - sym_identifier, - ACTIONS(6461), 1, - anon_sym_mut, - ACTIONS(6463), 1, - anon_sym_shared, - STATE(3851), 1, - sym_capture, - STATE(4387), 1, - sym_reference_expression, - STATE(4388), 1, - sym_mutability_modifiers, - STATE(3655), 2, + ACTIONS(6597), 1, + anon_sym_const, + ACTIONS(6599), 1, + anon_sym_fn, + ACTIONS(6603), 1, + anon_sym_enum, + ACTIONS(6605), 1, + anon_sym_interface, + ACTIONS(6601), 2, + anon_sym_struct, + anon_sym_union, + STATE(3652), 2, + sym_line_comment, + sym_block_comment, + [111083] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6610), 1, + anon_sym_RBRACE, + STATE(3653), 3, sym_line_comment, sym_block_comment, - [111144] = 9, + aux_sym_selective_import_list_repeat1, + ACTIONS(6607), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [111104] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, + ACTIONS(6147), 1, sym_identifier, - ACTIONS(6461), 1, - anon_sym_mut, ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, anon_sym_shared, - STATE(4268), 1, + STATE(3852), 1, sym_capture, - STATE(4387), 1, + STATE(4386), 1, sym_reference_expression, - STATE(4388), 1, + STATE(4387), 1, sym_mutability_modifiers, - STATE(3656), 2, + STATE(3654), 2, + sym_line_comment, + sym_block_comment, + [111133] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6399), 1, + anon_sym_LBRACE, + STATE(3764), 1, + sym_selective_import_list, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [111173] = 5, + ACTIONS(6612), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [111156] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 2, + ACTIONS(6614), 1, anon_sym_RBRACE, - sym_identifier, - STATE(3657), 2, + STATE(3648), 1, + aux_sym_selective_import_list_repeat1, + STATE(3656), 2, sym_line_comment, sym_block_comment, - ACTIONS(6620), 3, + ACTIONS(6579), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [111193] = 5, + anon_sym_COMMA, + [111179] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6624), 1, + ACTIONS(6618), 1, aux_sym_interpreted_string_literal_token1, - STATE(3658), 2, + STATE(3657), 2, sym_line_comment, sym_block_comment, - ACTIONS(6622), 4, + ACTIONS(6616), 4, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DOLLAR, anon_sym_DOLLAR_LBRACE, - [111213] = 5, - ACTIONS(311), 1, + [111199] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_interpreted_string_literal_token2, + ACTIONS(6204), 1, + anon_sym_RBRACE, + STATE(3658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6620), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [111219] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6622), 1, + anon_sym_LBRACE, + STATE(1789), 1, + sym__interface_body, + STATE(4109), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3659), 2, sym_line_comment, sym_block_comment, - ACTIONS(6626), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [111233] = 8, + [111243] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_mut, - ACTIONS(6463), 1, - anon_sym_shared, - ACTIONS(6630), 1, + ACTIONS(6624), 1, sym_identifier, - STATE(4159), 1, - sym_parameter_declaration, - STATE(4676), 1, - sym_mutability_modifiers, + ACTIONS(6626), 1, + anon_sym_mut, + STATE(3947), 1, + sym_var_definition, + STATE(4177), 1, + sym_range_clause, + STATE(4578), 1, + sym_var_definition_list, STATE(3660), 2, sym_line_comment, sym_block_comment, - [111259] = 7, + [111269] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(1867), 1, + STATE(1781), 1, sym__struct_body, - STATE(4323), 1, + STATE(4094), 1, sym_generic_parameters, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, STATE(3661), 2, sym_line_comment, sym_block_comment, - [111283] = 5, - ACTIONS(311), 1, + [111293] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6636), 1, - aux_sym_interpreted_string_literal_token1, + STATE(2419), 1, + sym_type_initializer_body, STATE(3662), 2, sym_line_comment, sym_block_comment, - ACTIONS(6634), 4, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [111303] = 5, + ACTIONS(3310), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111313] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6640), 1, - aux_sym_interpreted_string_literal_token1, + ACTIONS(6632), 1, + aux_sym_interpreted_string_literal_token2, STATE(3663), 2, sym_line_comment, sym_block_comment, - ACTIONS(6638), 4, + ACTIONS(6630), 4, sym_escape_sequence, - anon_sym_SQUOTE, anon_sym_DOLLAR, + anon_sym_DQUOTE, anon_sym_DOLLAR_LBRACE, - [111323] = 6, - ACTIONS(3), 1, + [111333] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_block, + ACTIONS(6636), 1, + aux_sym_interpreted_string_literal_token2, STATE(3664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [111345] = 4, + ACTIONS(6634), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [111353] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6622), 1, + anon_sym_LBRACE, + STATE(1871), 1, + sym__interface_body, + STATE(4307), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3665), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE, - [111363] = 5, - ACTIONS(3), 1, + [111377] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(2449), 1, - sym_type_initializer_body, STATE(3666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [111383] = 6, + ACTIONS(6638), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [111395] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, - anon_sym_LBRACE, - STATE(1666), 1, - sym_block, + ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, + anon_sym_shared, + ACTIONS(6640), 1, + sym_identifier, + STATE(4160), 1, + sym_parameter_declaration, + STATE(4672), 1, + sym_mutability_modifiers, STATE(3667), 2, sym_line_comment, sym_block_comment, - ACTIONS(6642), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [111405] = 5, - ACTIONS(3), 1, + [111421] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6239), 1, - anon_sym_RBRACE, STATE(3668), 2, sym_line_comment, sym_block_comment, - ACTIONS(6644), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [111425] = 5, + ACTIONS(6610), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [111439] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2449), 1, - sym_type_initializer_body, STATE(3669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 4, - anon_sym_LBRACE, + ACTIONS(2173), 5, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_RBRACK, - [111445] = 8, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_PIPE, + [111457] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_mut, - ACTIONS(6463), 1, - anon_sym_shared, - ACTIONS(6646), 1, - sym_identifier, - STATE(4335), 1, - sym_mutable_identifier, - STATE(4500), 1, - sym_mutability_modifiers, + ACTIONS(6644), 1, + aux_sym_interpreted_string_literal_token2, STATE(3670), 2, sym_line_comment, sym_block_comment, - [111471] = 7, - ACTIONS(3), 1, + ACTIONS(6642), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [111477] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_LBRACE, - STATE(1882), 1, - sym__interface_body, - STATE(4376), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, STATE(3671), 2, sym_line_comment, sym_block_comment, - [111495] = 7, + ACTIONS(6646), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + [111495] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym__struct_body, - STATE(4389), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(6225), 1, + anon_sym_RBRACE, STATE(3672), 2, sym_line_comment, sym_block_comment, - [111519] = 5, - ACTIONS(311), 1, + ACTIONS(6648), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [111515] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6652), 1, - aux_sym_interpreted_string_literal_token1, + ACTIONS(5331), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_block, STATE(3673), 2, sym_line_comment, sym_block_comment, - ACTIONS(6650), 4, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [111539] = 4, - ACTIONS(311), 1, + ACTIONS(6650), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [111537] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + anon_sym_LBRACE, + STATE(1822), 1, + sym__struct_body, + STATE(4111), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3674), 2, sym_line_comment, sym_block_comment, - ACTIONS(6654), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [111557] = 4, + [111561] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, + ACTIONS(6652), 2, + anon_sym_RBRACE, + sym_identifier, STATE(3675), 2, sym_line_comment, sym_block_comment, - ACTIONS(6656), 5, + ACTIONS(6654), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [111575] = 7, + [111581] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(1903), 1, - sym__interface_body, - STATE(4124), 1, + STATE(1886), 1, + sym__struct_body, + STATE(4314), 1, sym_generic_parameters, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, STATE(3676), 2, sym_line_comment, sym_block_comment, - [111599] = 8, - ACTIONS(3), 1, + [111605] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6658), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_RPAREN, - STATE(2449), 1, - sym_type_initializer_body, - STATE(3872), 1, - aux_sym_type_parameters_repeat1, + aux_sym_interpreted_string_literal_token1, STATE(3677), 2, sym_line_comment, sym_block_comment, + ACTIONS(6656), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, [111625] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, + ACTIONS(6463), 1, anon_sym_mut, - STATE(3952), 1, - sym_var_definition, - STATE(4178), 1, - sym_range_clause, - STATE(4576), 1, - sym_var_definition_list, + ACTIONS(6465), 1, + anon_sym_shared, + ACTIONS(6660), 1, + sym_identifier, + STATE(4345), 1, + sym_mutable_identifier, + STATE(4478), 1, + sym_mutability_modifiers, STATE(3678), 2, sym_line_comment, sym_block_comment, - [111651] = 5, + [111651] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_RBRACE, + ACTIONS(6622), 1, + anon_sym_LBRACE, + STATE(1787), 1, + sym__interface_body, + STATE(4127), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3679), 2, sym_line_comment, sym_block_comment, - ACTIONS(6668), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [111671] = 5, + [111675] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6624), 1, - aux_sym_interpreted_string_literal_token2, STATE(3680), 2, sym_line_comment, sym_block_comment, - ACTIONS(6622), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [111691] = 5, - ACTIONS(311), 1, + ACTIONS(6662), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [111693] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6652), 1, - aux_sym_interpreted_string_literal_token2, + ACTIONS(6622), 1, + anon_sym_LBRACE, + STATE(1803), 1, + sym__interface_body, + STATE(4373), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3681), 2, sym_line_comment, sym_block_comment, - ACTIONS(6650), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [111711] = 6, + [111717] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(2449), 1, - sym_type_initializer_body, + STATE(1888), 1, + sym__struct_body, + STATE(4390), 1, + sym_generic_parameters, + ACTIONS(5229), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [111733] = 4, - ACTIONS(311), 1, + [111741] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6664), 1, + anon_sym_LBRACE, + STATE(2419), 1, + sym_type_initializer_body, STATE(3683), 2, sym_line_comment, sym_block_comment, - ACTIONS(6670), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [111751] = 5, + ACTIONS(3306), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111763] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6636), 1, + ACTIONS(6618), 1, aux_sym_interpreted_string_literal_token2, STATE(3684), 2, sym_line_comment, sym_block_comment, - ACTIONS(6634), 4, + ACTIONS(6616), 4, sym_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_DOLLAR_LBRACE, - [111771] = 7, - ACTIONS(3), 1, + [111783] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6632), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym__struct_body, - STATE(4097), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, + aux_sym_interpreted_string_literal_token1, STATE(3685), 2, sym_line_comment, sym_block_comment, - [111795] = 7, + ACTIONS(6630), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [111803] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(1814), 1, - sym__interface_body, - STATE(4109), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, + STATE(2402), 1, + sym_block, STATE(3686), 2, sym_line_comment, sym_block_comment, - [111819] = 7, + ACTIONS(3316), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(1827), 1, - sym__struct_body, - STATE(4111), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, + STATE(2474), 1, + sym_block, STATE(3687), 2, sym_line_comment, sym_block_comment, - [111843] = 6, + ACTIONS(6650), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [111847] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(6664), 1, anon_sym_LBRACE, - STATE(2493), 1, - sym_block, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(6668), 1, + anon_sym_RBRACK, + STATE(2419), 1, + sym_type_initializer_body, + STATE(4058), 1, + aux_sym_type_parameters_repeat1, STATE(3688), 2, sym_line_comment, sym_block_comment, - ACTIONS(6642), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [111865] = 8, + [111873] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 1, + ACTIONS(6664), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6670), 1, anon_sym_COMMA, - ACTIONS(6674), 1, - anon_sym_RBRACK, - STATE(2449), 1, + ACTIONS(6672), 1, + anon_sym_RPAREN, + STATE(2419), 1, sym_type_initializer_body, - STATE(4056), 1, + STATE(3860), 1, aux_sym_type_parameters_repeat1, STATE(3689), 2, sym_line_comment, sym_block_comment, - [111891] = 4, + [111899] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, + ACTIONS(6644), 1, + aux_sym_interpreted_string_literal_token1, STATE(3690), 2, sym_line_comment, sym_block_comment, - ACTIONS(6602), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [111909] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_LBRACE, - STATE(1847), 1, - sym__interface_body, - STATE(4312), 1, - sym_generic_parameters, - ACTIONS(5221), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3691), 2, - sym_line_comment, - sym_block_comment, - [111933] = 8, + ACTIONS(6642), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [111919] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, + ACTIONS(6624), 1, sym_identifier, - ACTIONS(6666), 1, + ACTIONS(6626), 1, anon_sym_mut, - STATE(3952), 1, + STATE(3947), 1, sym_var_definition, STATE(4278), 1, sym_range_clause, - STATE(4576), 1, + STATE(4578), 1, sym_var_definition_list, - STATE(3692), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [111959] = 6, + [111945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6676), 1, - sym_identifier, - ACTIONS(6678), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1214), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3693), 2, + STATE(2419), 1, + sym_type_initializer_body, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [111980] = 6, + ACTIONS(3302), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111965] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - STATE(4392), 1, + STATE(2846), 1, sym_signature, - STATE(2959), 2, + STATE(1911), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3693), 2, + sym_line_comment, + sym_block_comment, + [111986] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6676), 1, + sym_identifier, + ACTIONS(6678), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2179), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3694), 2, sym_line_comment, sym_block_comment, - [112001] = 6, + [112007] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(6682), 1, anon_sym_STAR_SLASH, - STATE(3722), 1, + STATE(3719), 1, aux_sym_block_comment_repeat1, ACTIONS(6680), 2, aux_sym_block_comment_token1, @@ -316106,296 +316348,313 @@ static const uint16_t ts_small_parse_table[] = { STATE(3695), 2, sym_line_comment, sym_block_comment, - [112022] = 7, + [112028] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6684), 1, sym_identifier, - ACTIONS(6686), 1, - anon_sym_RPAREN, - STATE(3757), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3825), 1, - sym_global_var_definition, + STATE(3512), 1, + sym_import_path, + STATE(3513), 1, + sym_import_name, + STATE(3723), 1, + sym_import_spec, STATE(3696), 2, sym_line_comment, sym_block_comment, - [112045] = 6, + [112051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1767), 1, + STATE(1759), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3697), 2, sym_line_comment, sym_block_comment, - [112066] = 7, + [112072] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - STATE(3500), 1, - sym_import_name, - STATE(3514), 1, - sym_import_path, - STATE(3723), 1, - sym_import_spec, + ACTIONS(5313), 1, + anon_sym_LBRACE, + ACTIONS(6686), 1, + anon_sym_DOLLARif, + STATE(2636), 2, + sym_compile_time_if_expression, + sym_block, STATE(3698), 2, sym_line_comment, sym_block_comment, - [112089] = 6, + [112093] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - ACTIONS(6690), 1, + ACTIONS(6686), 1, anon_sym_DOLLARif, - STATE(2634), 2, + STATE(2630), 2, sym_compile_time_if_expression, sym_block, STATE(3699), 2, sym_line_comment, sym_block_comment, - [112110] = 6, + [112114] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 1, + ACTIONS(6688), 1, anon_sym_LPAREN, - STATE(1652), 1, + STATE(1650), 1, sym_signature, - STATE(1155), 2, + STATE(1152), 2, sym_parameter_list, sym_type_parameter_list, STATE(3700), 2, sym_line_comment, sym_block_comment, - [112131] = 6, + [112135] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1774), 1, - sym_signature, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5313), 1, + anon_sym_LBRACE, + ACTIONS(6690), 1, + anon_sym_if, + STATE(2628), 1, + sym_if_expression, + STATE(2629), 1, + sym_block, STATE(3701), 2, sym_line_comment, sym_block_comment, - [112152] = 6, + [112158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1759), 1, + STATE(1749), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3702), 2, sym_line_comment, sym_block_comment, - [112173] = 6, + [112179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_LBRACE, - ACTIONS(6690), 1, - anon_sym_DOLLARif, - STATE(2628), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1755), 1, + sym_signature, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3703), 2, sym_line_comment, sym_block_comment, - [112194] = 6, + [112200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1762), 1, - sym_signature, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6692), 1, + sym_identifier, + ACTIONS(6694), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2420), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3704), 2, sym_line_comment, sym_block_comment, - [112215] = 7, + [112221] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_LBRACE, - ACTIONS(6694), 1, - anon_sym_if, - STATE(2626), 1, - sym_if_expression, - STATE(2627), 1, - sym_block, + ACTIONS(6696), 1, + anon_sym_LPAREN, + STATE(1745), 1, + sym_signature, + STATE(1281), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3705), 2, sym_line_comment, sym_block_comment, - [112238] = 6, + [112242] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 1, - sym_identifier, ACTIONS(6698), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2450), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + sym_identifier, + ACTIONS(6700), 1, + anon_sym_RPAREN, + STATE(3760), 1, + aux_sym_const_declaration_repeat1, + STATE(3814), 1, + sym_const_definition, STATE(3706), 2, sym_line_comment, sym_block_comment, - [112259] = 6, + [112265] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6700), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1745), 1, + STATE(1765), 1, sym_signature, - STATE(1278), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3707), 2, sym_line_comment, sym_block_comment, - [112280] = 6, + [112286] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6698), 1, + sym_identifier, + ACTIONS(6702), 1, + anon_sym_RPAREN, + STATE(3760), 1, + aux_sym_const_declaration_repeat1, + STATE(3814), 1, + sym_const_definition, + STATE(3708), 2, + sym_line_comment, + sym_block_comment, + [112309] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6704), 1, anon_sym_LPAREN, - STATE(1777), 1, + STATE(2138), 1, sym_signature, - STATE(1314), 2, + STATE(1488), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3708), 2, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [112301] = 6, + [112330] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6702), 1, + ACTIONS(6698), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_RPAREN, + STATE(3760), 1, + aux_sym_const_declaration_repeat1, + STATE(3814), 1, + sym_const_definition, + STATE(3710), 2, + sym_line_comment, + sym_block_comment, + [112353] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(2122), 1, + STATE(1859), 1, sym_signature, - STATE(1459), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3709), 2, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [112322] = 6, + [112374] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, + ACTIONS(6708), 1, sym_identifier, - ACTIONS(6706), 1, + ACTIONS(6710), 1, anon_sym_DOLLAR_LPAREN, - STATE(1497), 2, + STATE(1450), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3710), 2, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [112343] = 7, + [112395] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, + ACTIONS(6698), 1, sym_identifier, - ACTIONS(6710), 1, + ACTIONS(6700), 1, anon_sym_RPAREN, + STATE(3708), 1, + aux_sym_const_declaration_repeat1, STATE(3814), 1, sym_const_definition, - STATE(3823), 1, - aux_sym_const_declaration_repeat1, - STATE(3711), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [112366] = 6, + [112418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, ACTIONS(6712), 1, anon_sym_DOLLARif, - STATE(2224), 2, + STATE(2112), 2, sym_compile_time_if_expression, sym_block, - STATE(3712), 2, - sym_line_comment, - sym_block_comment, - [112387] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1898), 1, - sym_signature, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3713), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [112408] = 6, + [112439] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6714), 1, anon_sym_LPAREN, - STATE(1473), 1, + STATE(1536), 1, sym_signature, - STATE(1118), 2, + STATE(1114), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3714), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [112429] = 7, + [112460] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -316404,119 +316663,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1864), 1, + STATE(1780), 1, sym__enum_body, - STATE(4313), 1, + STATE(4312), 1, sym_enum_backed_type, - STATE(3715), 2, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [112452] = 7, + [112483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6720), 1, - anon_sym_RPAREN, - STATE(3761), 1, - aux_sym_const_declaration_repeat1, - STATE(3814), 1, - sym_const_definition, - STATE(3716), 2, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(6712), 1, + anon_sym_DOLLARif, + STATE(2196), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [112475] = 4, + [112504] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3717), 2, + STATE(3718), 2, sym_line_comment, sym_block_comment, - ACTIONS(6722), 4, + ACTIONS(6720), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [112492] = 6, - ACTIONS(3), 1, + [112521] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, - anon_sym_LBRACE, - ACTIONS(6712), 1, - anon_sym_DOLLARif, - STATE(2208), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3718), 2, + ACTIONS(6722), 1, + anon_sym_STAR_SLASH, + STATE(3801), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6680), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [112513] = 7, + [112542] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, ACTIONS(6724), 1, anon_sym_if, - STATE(2181), 1, - sym_if_expression, - STATE(2203), 1, + STATE(2202), 1, sym_block, - STATE(3719), 2, + STATE(2203), 1, + sym_if_expression, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [112536] = 6, + [112565] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - STATE(2308), 1, + STATE(2323), 1, sym_signature, - STATE(1697), 2, + STATE(1695), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3720), 2, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [112557] = 6, + [112586] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - ACTIONS(6728), 1, + ACTIONS(6726), 1, anon_sym_DOLLARif, - STATE(2189), 2, + STATE(2180), 2, sym_compile_time_if_expression, sym_block, - STATE(3721), 2, - sym_line_comment, - sym_block_comment, - [112578] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - anon_sym_STAR_SLASH, - STATE(3801), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6680), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, STATE(3722), 2, sym_line_comment, sym_block_comment, - [112599] = 4, + [112607] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -316524,34 +316767,34 @@ static const uint16_t ts_small_parse_table[] = { STATE(3723), 2, sym_line_comment, sym_block_comment, - ACTIONS(6732), 4, + ACTIONS(6728), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [112616] = 6, + [112624] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - ACTIONS(6728), 1, + ACTIONS(6726), 1, anon_sym_DOLLARif, - STATE(2195), 2, + STATE(2223), 2, sym_compile_time_if_expression, sym_block, STATE(3724), 2, sym_line_comment, sym_block_comment, - [112637] = 7, + [112645] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, + ACTIONS(6698), 1, sym_identifier, - ACTIONS(6734), 1, + ACTIONS(6730), 1, anon_sym_RPAREN, STATE(3814), 1, sym_const_definition, @@ -316560,46 +316803,45 @@ static const uint16_t ts_small_parse_table[] = { STATE(3725), 2, sym_line_comment, sym_block_comment, - [112660] = 7, + [112668] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - ACTIONS(6736), 1, + ACTIONS(6732), 1, anon_sym_if, - STATE(2196), 1, - sym_block, - STATE(2197), 1, + STATE(2221), 1, sym_if_expression, + STATE(2222), 1, + sym_block, STATE(3726), 2, sym_line_comment, sym_block_comment, - [112683] = 7, + [112691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - sym_identifier, - ACTIONS(6740), 1, - anon_sym_RBRACE, - STATE(3657), 1, - sym_enum_field_definition, - STATE(3767), 1, - aux_sym__enum_body_repeat1, + ACTIONS(6734), 1, + anon_sym_LPAREN, + STATE(2771), 1, + sym_signature, + STATE(1907), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3727), 2, sym_line_comment, sym_block_comment, - [112706] = 7, + [112712] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(6742), 1, + ACTIONS(6738), 1, anon_sym_RPAREN, STATE(3825), 1, sym_global_var_definition, @@ -316608,450 +316850,452 @@ static const uint16_t ts_small_parse_table[] = { STATE(3728), 2, sym_line_comment, sym_block_comment, - [112729] = 6, + [112735] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, + ACTIONS(6740), 1, anon_sym_EQ, - STATE(4469), 1, + STATE(4471), 1, sym_generic_parameters, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, STATE(3729), 2, sym_line_comment, sym_block_comment, - [112750] = 6, + [112756] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LPAREN, - STATE(2770), 1, - sym_signature, - STATE(1908), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5323), 1, + anon_sym_LBRACE, + ACTIONS(6742), 1, + anon_sym_DOLLARif, + STATE(383), 2, + sym_compile_time_if_expression, + sym_block, STATE(3730), 2, sym_line_comment, sym_block_comment, - [112771] = 6, + [112777] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - anon_sym_LPAREN, - STATE(2846), 1, - sym_signature, - STATE(1913), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5323), 1, + anon_sym_LBRACE, + ACTIONS(6744), 1, + anon_sym_if, + STATE(379), 1, + sym_if_expression, + STATE(380), 1, + sym_block, STATE(3731), 2, sym_line_comment, sym_block_comment, - [112792] = 5, + [112800] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2171), 1, + ACTIONS(2173), 1, anon_sym_DOT, STATE(3732), 2, sym_line_comment, sym_block_comment, - ACTIONS(6748), 3, + ACTIONS(6746), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [112811] = 6, + [112819] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, - anon_sym_LBRACE, + ACTIONS(6748), 1, + sym_identifier, ACTIONS(6750), 1, - anon_sym_DOLLARif, - STATE(383), 2, - sym_compile_time_if_expression, - sym_block, + anon_sym_RBRACE, + STATE(3675), 1, + sym_enum_field_definition, + STATE(3766), 1, + aux_sym__enum_body_repeat1, STATE(3733), 2, sym_line_comment, sym_block_comment, - [112832] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5315), 1, - anon_sym_LBRACE, - ACTIONS(6752), 1, - anon_sym_if, - STATE(379), 1, - sym_if_expression, - STATE(382), 1, - sym_block, - STATE(3734), 2, - sym_line_comment, - sym_block_comment, - [112855] = 6, + [112842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1750), 1, + STATE(1772), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3735), 2, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [112876] = 6, + [112863] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, + ACTIONS(6752), 1, anon_sym_LPAREN, STATE(1086), 1, sym_signature, - STATE(2948), 2, + STATE(2940), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3736), 2, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [112897] = 6, + [112884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4395), 1, + STATE(4398), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3737), 2, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [112918] = 6, + [112905] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6754), 1, anon_sym_COMMA, - STATE(3749), 1, + STATE(3757), 1, aux_sym_generic_parameters_repeat1, - ACTIONS(6758), 2, + ACTIONS(6756), 2, anon_sym_GT, anon_sym_RBRACK, - STATE(3738), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [112939] = 6, + [112926] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6758), 1, sym_identifier, - STATE(3982), 1, + STATE(3981), 1, sym_generic_parameter, - ACTIONS(6758), 2, + ACTIONS(6756), 2, anon_sym_GT, anon_sym_RBRACK, + STATE(3738), 2, + sym_line_comment, + sym_block_comment, + [112947] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6716), 1, + anon_sym_as, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(1799), 1, + sym__enum_body, + STATE(4385), 1, + sym_enum_backed_type, STATE(3739), 2, sym_line_comment, sym_block_comment, - [112960] = 6, + [112970] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4193), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1302), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3740), 2, sym_line_comment, sym_block_comment, - [112981] = 7, + [112991] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6716), 1, - anon_sym_as, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(1880), 1, - sym__enum_body, - STATE(4384), 1, - sym_enum_backed_type, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4194), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3741), 2, sym_line_comment, sym_block_comment, - [113004] = 7, + [113012] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, + ACTIONS(5309), 1, anon_sym_LBRACE, - ACTIONS(6762), 1, - anon_sym_if, - STATE(2968), 1, + ACTIONS(6764), 1, + anon_sym_DOLLARif, + STATE(1162), 2, + sym_compile_time_if_expression, sym_block, - STATE(2969), 1, - sym_if_expression, STATE(3742), 2, sym_line_comment, sym_block_comment, - [113027] = 6, + [113033] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, + ACTIONS(5311), 1, anon_sym_LBRACE, - ACTIONS(6764), 1, - anon_sym_DOLLARif, - STATE(2967), 2, - sym_compile_time_if_expression, + ACTIONS(6766), 1, + anon_sym_if, + STATE(2973), 1, sym_block, + STATE(2975), 1, + sym_if_expression, STATE(3743), 2, sym_line_comment, sym_block_comment, - [113048] = 6, + [113056] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - sym_identifier, + ACTIONS(5311), 1, + anon_sym_LBRACE, ACTIONS(6768), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1391), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + anon_sym_DOLLARif, + STATE(2971), 2, + sym_compile_time_if_expression, + sym_block, STATE(3744), 2, sym_line_comment, sym_block_comment, - [113069] = 6, + [113077] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(2418), 1, + STATE(2503), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3745), 2, sym_line_comment, sym_block_comment, - [113090] = 6, + [113098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLARif, - STATE(1162), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6758), 1, + sym_identifier, + STATE(3981), 1, + sym_generic_parameter, + ACTIONS(6770), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3746), 2, sym_line_comment, sym_block_comment, - [113111] = 7, + [113119] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, ACTIONS(6772), 1, anon_sym_if, - STATE(1046), 1, + STATE(1044), 1, sym_block, - STATE(1059), 1, + STATE(1046), 1, sym_if_expression, STATE(3747), 2, sym_line_comment, sym_block_comment, - [113134] = 6, + [113142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_identifier, - STATE(3982), 1, - sym_generic_parameter, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(5317), 1, + anon_sym_LBRACE, + ACTIONS(6774), 1, + anon_sym_DOLLARif, + STATE(1043), 2, + sym_compile_time_if_expression, + sym_block, STATE(3748), 2, sym_line_comment, sym_block_comment, - [113155] = 5, + [113163] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 1, - anon_sym_COMMA, - ACTIONS(6779), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3749), 3, + ACTIONS(5309), 1, + anon_sym_LBRACE, + ACTIONS(6764), 1, + anon_sym_DOLLARif, + STATE(1168), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3749), 2, sym_line_comment, sym_block_comment, - aux_sym_generic_parameters_repeat1, - [113174] = 6, + [113184] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, - anon_sym_LBRACE, - ACTIONS(6764), 1, - anon_sym_DOLLARif, - STATE(2961), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6776), 1, + anon_sym_LPAREN, + STATE(1406), 1, + sym_signature, + STATE(544), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3750), 2, sym_line_comment, sym_block_comment, - [113195] = 6, + [113205] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5311), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, + ACTIONS(6768), 1, anon_sym_DOLLARif, - STATE(1045), 2, + STATE(2966), 2, sym_compile_time_if_expression, sym_block, STATE(3751), 2, sym_line_comment, sym_block_comment, - [113216] = 6, + [113226] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - sym_identifier, - ACTIONS(6785), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2707), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(5309), 1, + anon_sym_LBRACE, + ACTIONS(6778), 1, + anon_sym_if, + STATE(1169), 1, + sym_block, + STATE(1172), 1, + sym_if_expression, STATE(3752), 2, sym_line_comment, sym_block_comment, - [113237] = 6, + [113249] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - anon_sym_LPAREN, - STATE(1332), 1, - sym_signature, - STATE(544), 2, - sym_parameter_list, - sym_type_parameter_list, + anon_sym_SLASH_STAR, + ACTIONS(6780), 1, + sym_identifier, + ACTIONS(6782), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2707), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3753), 2, sym_line_comment, sym_block_comment, - [113258] = 6, + [113270] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4225), 1, + STATE(4235), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3754), 2, sym_line_comment, sym_block_comment, - [113279] = 6, + [113291] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLARif, - STATE(1169), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3755), 2, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(3825), 1, + sym_global_var_definition, + STATE(3755), 3, sym_line_comment, sym_block_comment, - [113300] = 7, + aux_sym_global_var_declaration_repeat1, + [113312] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, ACTIONS(6789), 1, anon_sym_if, - STATE(1353), 1, + STATE(1300), 1, sym_block, - STATE(1355), 1, + STATE(1354), 1, sym_if_expression, STATE(3756), 2, sym_line_comment, sym_block_comment, - [113323] = 6, + [113335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6791), 1, - sym_identifier, - ACTIONS(6794), 1, - anon_sym_RPAREN, - STATE(3825), 1, - sym_global_var_definition, + anon_sym_COMMA, + ACTIONS(6794), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3757), 3, sym_line_comment, sym_block_comment, - aux_sym_global_var_declaration_repeat1, - [113344] = 6, + aux_sym_generic_parameters_repeat1, + [113354] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, ACTIONS(6796), 1, anon_sym_DOLLARif, @@ -317061,97 +317305,94 @@ static const uint16_t ts_small_parse_table[] = { STATE(3758), 2, sym_line_comment, sym_block_comment, - [113365] = 7, + [113375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, ACTIONS(6798), 1, - anon_sym_if, - STATE(1172), 1, - sym_block, - STATE(1173), 1, - sym_if_expression, - STATE(3759), 2, - sym_line_comment, - sym_block_comment, - [113388] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6800), 1, anon_sym_COMMA, - ACTIONS(6803), 2, + ACTIONS(6801), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(3760), 3, + STATE(3759), 3, sym_line_comment, sym_block_comment, aux_sym_type_parameters_repeat1, - [113407] = 6, + [113394] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, + ACTIONS(6803), 1, sym_identifier, - ACTIONS(6808), 1, + ACTIONS(6806), 1, anon_sym_RPAREN, STATE(3814), 1, sym_const_definition, - STATE(3761), 3, + STATE(3760), 3, sym_line_comment, sym_block_comment, aux_sym_const_declaration_repeat1, - [113428] = 6, + [113415] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, + ACTIONS(6774), 1, anon_sym_DOLLARif, - STATE(1035), 2, + STATE(1034), 2, sym_compile_time_if_expression, sym_block, - STATE(3762), 2, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [113449] = 6, + [113436] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1751), 1, + STATE(1760), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3763), 2, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [113470] = 6, + [113457] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, ACTIONS(6796), 1, anon_sym_DOLLARif, STATE(1345), 2, sym_compile_time_if_expression, sym_block, + STATE(3763), 2, + sym_line_comment, + sym_block_comment, + [113478] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, STATE(3764), 2, sym_line_comment, sym_block_comment, - [113491] = 6, + ACTIONS(6808), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [113495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -317160,71 +317401,43 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(6812), 1, anon_sym_DOLLAR_LPAREN, - STATE(2105), 2, + STATE(2106), 2, sym_reference_expression, sym_compile_time_selector_expression, STATE(3765), 2, sym_line_comment, sym_block_comment, - [113512] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - STATE(3766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6814), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [113529] = 6, + [113516] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(6814), 1, sym_identifier, - ACTIONS(6819), 1, + ACTIONS(6817), 1, anon_sym_RBRACE, - STATE(3657), 1, + STATE(3675), 1, sym_enum_field_definition, - STATE(3767), 3, + STATE(3766), 3, sym_line_comment, sym_block_comment, aux_sym__enum_body_repeat1, - [113550] = 6, + [113537] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6821), 1, + ACTIONS(6819), 1, anon_sym_DOLLARif, - STATE(2683), 2, + STATE(2684), 2, sym_compile_time_if_expression, sym_block, - STATE(3768), 2, - sym_line_comment, - sym_block_comment, - [113571] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_LPAREN, - STATE(1768), 1, - sym_signature, - STATE(1314), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3769), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [113592] = 7, + [113558] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -317233,74 +317446,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1802), 1, + STATE(1786), 1, sym__enum_body, - STATE(4094), 1, + STATE(4118), 1, sym_enum_backed_type, - STATE(3770), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [113615] = 4, - ACTIONS(311), 1, + [113581] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3771), 2, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1770), 1, + sym_signature, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4625), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [113632] = 7, + [113602] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(6823), 1, + ACTIONS(6821), 1, anon_sym_RPAREN, - STATE(3696), 1, + STATE(3797), 1, aux_sym_global_var_declaration_repeat1, STATE(3825), 1, sym_global_var_definition, - STATE(3772), 2, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [113655] = 7, + [113625] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, + ACTIONS(6698), 1, sym_identifier, - ACTIONS(6825), 1, + ACTIONS(6823), 1, anon_sym_RPAREN, - STATE(3794), 1, + STATE(3706), 1, aux_sym_const_declaration_repeat1, STATE(3814), 1, sym_const_definition, - STATE(3773), 2, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [113678] = 6, + [113648] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, + ACTIONS(6752), 1, + anon_sym_LPAREN, + STATE(3477), 1, + sym_signature, + STATE(2532), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3772), 2, + sym_line_comment, + sym_block_comment, + [113669] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6825), 1, sym_identifier, - ACTIONS(6829), 1, + ACTIONS(6827), 1, anon_sym_DOLLAR_LPAREN, - STATE(455), 2, + STATE(456), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3774), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [113699] = 7, + [113690] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -317309,165 +317539,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1818), 1, + STATE(1816), 1, sym__enum_body, STATE(4110), 1, sym_enum_backed_type, - STATE(3775), 2, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [113722] = 6, + [113713] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6821), 1, + ACTIONS(6819), 1, anon_sym_DOLLARif, - STATE(2678), 2, + STATE(2679), 2, sym_compile_time_if_expression, sym_block, - STATE(3776), 2, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [113743] = 7, + [113734] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6829), 1, anon_sym_if, - STATE(2676), 1, - sym_if_expression, STATE(2677), 1, + sym_if_expression, + STATE(2678), 1, sym_block, + STATE(3776), 2, + sym_line_comment, + sym_block_comment, + [113757] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6831), 1, + sym_identifier, + ACTIONS(6833), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2307), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3777), 2, sym_line_comment, sym_block_comment, - [113766] = 7, + [113778] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + STATE(3778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4711), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [113795] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_mut, ACTIONS(6463), 1, + anon_sym_mut, + ACTIONS(6465), 1, anon_sym_shared, - ACTIONS(6833), 1, + ACTIONS(6835), 1, sym_identifier, STATE(4698), 1, sym_mutability_modifiers, - STATE(3778), 2, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [113789] = 6, + [113818] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, + ACTIONS(6837), 1, anon_sym_EQ, - STATE(4696), 1, + STATE(4697), 1, sym_generic_parameters, - ACTIONS(5221), 2, + ACTIONS(5229), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3779), 2, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [113810] = 6, + [113839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - sym_identifier, + ACTIONS(5315), 1, + anon_sym_LBRACE, ACTIONS(6839), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2337), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3780), 2, + anon_sym_DOLLARif, + STATE(1524), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [113831] = 6, + [113860] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6841), 1, anon_sym_LPAREN, - STATE(1237), 1, + STATE(1255), 1, sym_signature, - STATE(210), 2, + STATE(236), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3781), 2, - sym_line_comment, - sym_block_comment, - [113852] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6843), 1, - anon_sym_RPAREN, - STATE(3716), 1, - aux_sym_const_declaration_repeat1, - STATE(3814), 1, - sym_const_definition, STATE(3782), 2, sym_line_comment, sym_block_comment, - [113875] = 6, + [113881] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, + ACTIONS(6843), 1, anon_sym_LPAREN, - STATE(518), 1, + STATE(517), 1, sym_signature, - STATE(94), 2, + STATE(93), 2, sym_parameter_list, sym_type_parameter_list, STATE(3783), 2, sym_line_comment, sym_block_comment, - [113896] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6754), 1, - anon_sym_LPAREN, - STATE(3469), 1, - sym_signature, - STATE(2508), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3784), 2, - sym_line_comment, - sym_block_comment, - [113917] = 4, + [113902] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - STATE(3785), 2, + STATE(3784), 2, sym_line_comment, sym_block_comment, - ACTIONS(6847), 4, + ACTIONS(6845), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [113934] = 4, + [113919] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6698), 1, + sym_identifier, + ACTIONS(6847), 1, + anon_sym_RPAREN, + STATE(3710), 1, + aux_sym_const_declaration_repeat1, + STATE(3814), 1, + sym_const_definition, + STATE(3785), 2, + sym_line_comment, + sym_block_comment, + [113942] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -317475,298 +317718,298 @@ static const uint16_t ts_small_parse_table[] = { STATE(3786), 2, sym_line_comment, sym_block_comment, - ACTIONS(4637), 4, + ACTIONS(4719), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [113951] = 6, + [113959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, - anon_sym_LBRACE, - ACTIONS(6849), 1, - anon_sym_DOLLARif, - STATE(1533), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3787), 2, - sym_line_comment, - sym_block_comment, - [113972] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(4170), 1, + STATE(1768), 1, sym_signature, - STATE(2959), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3788), 2, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [113993] = 6, + [113980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, + ACTIONS(6849), 1, sym_identifier, - ACTIONS(6853), 1, + ACTIONS(6851), 1, anon_sym_DOLLAR_LPAREN, - STATE(1061), 2, + STATE(1062), 2, sym_reference_expression, sym_compile_time_selector_expression, + STATE(3788), 2, + sym_line_comment, + sym_block_comment, + [114001] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4179), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3789), 2, sym_line_comment, sym_block_comment, - [114014] = 6, + [114022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, STATE(4333), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3790), 2, sym_line_comment, sym_block_comment, - [114035] = 6, + [114043] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, + ACTIONS(6853), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(2503), 1, sym_signature, - STATE(2508), 2, + STATE(1700), 2, sym_parameter_list, sym_type_parameter_list, STATE(3791), 2, sym_line_comment, sym_block_comment, - [114056] = 6, + [114064] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(2418), 1, + STATE(4365), 1, sym_signature, - STATE(1705), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3792), 2, sym_line_comment, sym_block_comment, - [114077] = 6, + [114085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4224), 1, + STATE(4225), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3793), 2, sym_line_comment, sym_block_comment, - [114098] = 7, + [114106] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6710), 1, - anon_sym_RPAREN, - STATE(3761), 1, - aux_sym_const_declaration_repeat1, - STATE(3814), 1, - sym_const_definition, + ACTIONS(6752), 1, + anon_sym_LPAREN, + STATE(3476), 1, + sym_signature, + STATE(2532), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3794), 2, sym_line_comment, sym_block_comment, - [114121] = 6, + [114127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4366), 1, + STATE(4305), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3795), 2, sym_line_comment, sym_block_comment, - [114142] = 6, + [114148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4304), 1, + STATE(4397), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3796), 2, sym_line_comment, sym_block_comment, - [114163] = 6, + [114169] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4398), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6736), 1, + sym_identifier, + ACTIONS(6855), 1, + anon_sym_RPAREN, + STATE(3755), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3825), 1, + sym_global_var_definition, STATE(3797), 2, sym_line_comment, sym_block_comment, - [114184] = 6, + [114192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, - ACTIONS(6859), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2154), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(5315), 1, + anon_sym_LBRACE, + ACTIONS(6839), 1, + anon_sym_DOLLARif, + STATE(1510), 2, + sym_compile_time_if_expression, + sym_block, STATE(3798), 2, sym_line_comment, sym_block_comment, - [114205] = 6, + [114213] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - ACTIONS(6861), 1, + ACTIONS(6857), 1, anon_sym_DOLLARif, - STATE(1594), 2, + STATE(1623), 2, sym_compile_time_if_expression, sym_block, STATE(3799), 2, sym_line_comment, sym_block_comment, - [114226] = 6, + [114234] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4372), 1, + STATE(4371), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3800), 2, sym_line_comment, sym_block_comment, - [114247] = 5, + [114255] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, + ACTIONS(6862), 1, anon_sym_STAR_SLASH, - ACTIONS(6863), 2, + ACTIONS(6859), 2, aux_sym_block_comment_token1, aux_sym_block_comment_token2, STATE(3801), 3, sym_line_comment, sym_block_comment, aux_sym_block_comment_repeat1, - [114266] = 6, + [114274] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - ACTIONS(6849), 1, - anon_sym_DOLLARif, - STATE(1527), 2, - sym_compile_time_if_expression, + ACTIONS(6864), 1, + anon_sym_if, + STATE(1435), 1, + sym_if_expression, + STATE(1509), 1, sym_block, STATE(3802), 2, sym_line_comment, sym_block_comment, - [114287] = 6, + [114297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, - sym_identifier, - ACTIONS(6870), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1658), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6441), 1, + anon_sym_LPAREN, + STATE(1758), 1, + sym_signature, + STATE(1340), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3803), 2, sym_line_comment, sym_block_comment, - [114308] = 7, + [114318] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_if, - STATE(1511), 1, - sym_block, - STATE(1525), 1, - sym_if_expression, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(6868), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1658), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3804), 2, sym_line_comment, sym_block_comment, - [114331] = 6, + [114339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4284), 1, + STATE(4287), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3805), 2, sym_line_comment, sym_block_comment, - [114352] = 4, + [114360] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -317774,119 +318017,119 @@ static const uint16_t ts_small_parse_table[] = { STATE(3806), 2, sym_line_comment, sym_block_comment, - ACTIONS(6616), 4, + ACTIONS(6612), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [114369] = 6, + [114377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1758), 1, + STATE(4378), 1, sym_signature, - STATE(1314), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3807), 2, sym_line_comment, sym_block_comment, - [114390] = 6, + [114398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4374), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3808), 2, - sym_line_comment, - sym_block_comment, - [114411] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - ACTIONS(6861), 1, + ACTIONS(6857), 1, anon_sym_DOLLARif, - STATE(1601), 2, + STATE(1600), 2, sym_compile_time_if_expression, sym_block, - STATE(3809), 2, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [114432] = 7, + [114419] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - ACTIONS(6874), 1, + ACTIONS(6870), 1, anon_sym_if, - STATE(1602), 1, + STATE(1601), 1, sym_block, - STATE(1604), 1, + STATE(1602), 1, sym_if_expression, - STATE(3810), 2, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [114455] = 6, + [114442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4300), 1, + STATE(4299), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3810), 2, + sym_line_comment, + sym_block_comment, + [114463] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6872), 1, + anon_sym_RBRACE, + STATE(3675), 1, + sym_enum_field_definition, + STATE(3733), 1, + aux_sym__enum_body_repeat1, STATE(3811), 2, sym_line_comment, sym_block_comment, - [114476] = 6, + [114486] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, + ACTIONS(6874), 1, anon_sym_LPAREN, - STATE(2057), 1, + STATE(2074), 1, sym_signature, - STATE(1440), 2, + STATE(1443), 2, sym_parameter_list, sym_type_parameter_list, STATE(3812), 2, sym_line_comment, sym_block_comment, - [114497] = 7, + [114507] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - sym_identifier, - ACTIONS(6878), 1, - anon_sym_RBRACE, - STATE(3657), 1, - sym_enum_field_definition, - STATE(3727), 1, - aux_sym__enum_body_repeat1, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4265), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3813), 2, sym_line_comment, sym_block_comment, - [114520] = 4, + [114528] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -317894,166 +318137,165 @@ static const uint16_t ts_small_parse_table[] = { STATE(3814), 2, sym_line_comment, sym_block_comment, - ACTIONS(6880), 4, + ACTIONS(6876), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [114537] = 6, + [114545] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4270), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6878), 1, + anon_sym_DOT, + ACTIONS(6880), 1, + anon_sym_RBRACE, + ACTIONS(6882), 1, + sym_int_literal, + ACTIONS(6884), 1, + aux_sym_format_specifier_token1, STATE(3815), 2, sym_line_comment, sym_block_comment, - [114558] = 6, + [114568] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4359), 1, + STATE(4360), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3816), 2, sym_line_comment, sym_block_comment, - [114579] = 7, + [114589] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 1, - anon_sym_DOT, - ACTIONS(6884), 1, - anon_sym_RBRACE, - ACTIONS(6886), 1, - sym_int_literal, - ACTIONS(6888), 1, - aux_sym_format_specifier_token1, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4190), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3817), 2, sym_line_comment, sym_block_comment, - [114602] = 7, + [114610] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, + ACTIONS(6698), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6847), 1, anon_sym_RPAREN, - STATE(3761), 1, + STATE(3760), 1, aux_sym_const_declaration_repeat1, STATE(3814), 1, sym_const_definition, STATE(3818), 2, sym_line_comment, sym_block_comment, - [114625] = 7, + [114633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, - anon_sym_LBRACE, - ACTIONS(6890), 1, - anon_sym_if, - STATE(2487), 1, - sym_block, - STATE(2489), 1, - sym_if_expression, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4145), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3819), 2, sym_line_comment, sym_block_comment, - [114648] = 6, + [114654] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - ACTIONS(6892), 1, - anon_sym_DOLLARif, - STATE(2486), 2, - sym_compile_time_if_expression, + ACTIONS(6886), 1, + anon_sym_if, + STATE(2497), 1, sym_block, + STATE(2501), 1, + sym_if_expression, STATE(3820), 2, sym_line_comment, sym_block_comment, - [114669] = 6, + [114677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - ACTIONS(6750), 1, + ACTIONS(6888), 1, anon_sym_DOLLARif, - STATE(457), 2, + STATE(2496), 2, sym_compile_time_if_expression, sym_block, STATE(3821), 2, sym_line_comment, sym_block_comment, - [114690] = 6, + [114698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4117), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5323), 1, + anon_sym_LBRACE, + ACTIONS(6742), 1, + anon_sym_DOLLARif, + STATE(334), 2, + sym_compile_time_if_expression, + sym_block, STATE(3822), 2, sym_line_comment, sym_block_comment, - [114711] = 7, + [114719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6894), 1, - anon_sym_RPAREN, - STATE(3761), 1, - aux_sym_const_declaration_repeat1, - STATE(3814), 1, - sym_const_definition, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4189), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3823), 2, sym_line_comment, sym_block_comment, - [114734] = 6, + [114740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, STATE(1753), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3824), 2, sym_line_comment, sym_block_comment, - [114755] = 4, + [114761] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, @@ -318061,1061 +318303,1062 @@ static const uint16_t ts_small_parse_table[] = { STATE(3825), 2, sym_line_comment, sym_block_comment, - ACTIONS(6896), 4, + ACTIONS(6890), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [114772] = 7, + [114778] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(6898), 1, + ACTIONS(6892), 1, anon_sym_RPAREN, - STATE(3757), 1, + STATE(3755), 1, aux_sym_global_var_declaration_repeat1, STATE(3825), 1, sym_global_var_definition, STATE(3826), 2, sym_line_comment, sym_block_comment, - [114795] = 6, + [114801] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4145), 1, + STATE(4228), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3827), 2, sym_line_comment, sym_block_comment, - [114816] = 6, + [114822] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1757), 1, + STATE(1763), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3828), 2, sym_line_comment, sym_block_comment, - [114837] = 6, + [114843] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4211), 1, + STATE(4219), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3829), 2, sym_line_comment, sym_block_comment, - [114858] = 6, + [114864] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4177), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5325), 1, + anon_sym_LBRACE, + ACTIONS(6888), 1, + anon_sym_DOLLARif, + STATE(2469), 2, + sym_compile_time_if_expression, + sym_block, STATE(3830), 2, sym_line_comment, sym_block_comment, - [114879] = 6, + [114885] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4219), 1, + STATE(4263), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, STATE(3831), 2, sym_line_comment, sym_block_comment, - [114900] = 6, + [114906] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, - anon_sym_LBRACE, - ACTIONS(6892), 1, - anon_sym_DOLLARif, - STATE(2409), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6356), 1, + anon_sym_LPAREN, + STATE(4181), 1, + sym_signature, + STATE(2941), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3832), 2, sym_line_comment, sym_block_comment, - [114921] = 6, + [114927] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_LPAREN, - STATE(4182), 1, - sym_signature, - STATE(2959), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6894), 1, + sym_identifier, + ACTIONS(6896), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1202), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3833), 2, sym_line_comment, sym_block_comment, - [114942] = 6, + [114948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6898), 1, anon_sym_LPAREN, - STATE(4264), 1, + STATE(1086), 1, sym_signature, - STATE(2959), 2, + STATE(101), 2, sym_parameter_list, sym_type_parameter_list, STATE(3834), 2, sym_line_comment, sym_block_comment, - [114963] = 6, + [114969] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(6441), 1, anon_sym_LPAREN, - STATE(1775), 1, + STATE(1778), 1, sym_signature, - STATE(1314), 2, + STATE(1340), 2, sym_parameter_list, sym_type_parameter_list, STATE(3835), 2, sym_line_comment, sym_block_comment, - [114984] = 6, + [114990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6900), 1, + sym_identifier, + ACTIONS(6902), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2830), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3836), 2, + sym_line_comment, + sym_block_comment, + [115011] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(1086), 1, + STATE(4391), 1, sym_signature, - STATE(96), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3836), 2, + STATE(3837), 2, sym_line_comment, sym_block_comment, - [115005] = 6, + [115032] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - sym_identifier, + ACTIONS(5319), 1, + anon_sym_LBRACE, ACTIONS(6904), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2831), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3837), 2, + anon_sym_DOLLARif, + STATE(2302), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [115026] = 7, + [115053] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5319), 1, anon_sym_LBRACE, ACTIONS(6906), 1, anon_sym_if, - STATE(2292), 1, - sym_if_expression, STATE(2293), 1, + sym_if_expression, + STATE(2294), 1, sym_block, - STATE(3838), 2, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [115049] = 6, + [115076] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5319), 1, anon_sym_LBRACE, - ACTIONS(6908), 1, + ACTIONS(6904), 1, anon_sym_DOLLARif, - STATE(2294), 2, + STATE(2295), 2, sym_compile_time_if_expression, sym_block, - STATE(3839), 2, + STATE(3840), 2, sym_line_comment, sym_block_comment, - [115070] = 6, + [115097] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, + ACTIONS(6356), 1, anon_sym_LPAREN, - STATE(4357), 1, + STATE(4344), 1, sym_signature, - STATE(2959), 2, + STATE(2941), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3840), 2, + STATE(3841), 2, sym_line_comment, sym_block_comment, - [115091] = 6, + [115118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6908), 1, anon_sym_COMMA, - STATE(3738), 1, + STATE(3737), 1, aux_sym_generic_parameters_repeat1, - ACTIONS(6912), 2, + ACTIONS(6910), 2, anon_sym_GT, anon_sym_RBRACK, - STATE(3841), 2, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [115112] = 6, + [115139] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLARif, - STATE(2301), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3842), 2, + STATE(3843), 2, sym_line_comment, sym_block_comment, - [115133] = 6, + ACTIONS(6912), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [115155] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, ACTIONS(6914), 1, - anon_sym_RBRACK, - STATE(3760), 1, + anon_sym_COMMA, + ACTIONS(6916), 1, + anon_sym_RPAREN, + STATE(4035), 1, aux_sym_type_parameters_repeat1, - STATE(3843), 2, + STATE(3844), 2, sym_line_comment, sym_block_comment, - [115153] = 5, + [115175] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 1, - anon_sym_COMMA, - ACTIONS(6919), 1, - anon_sym_RBRACK, - STATE(3844), 3, + ACTIONS(6918), 1, + sym_identifier, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(1670), 1, + sym__content_block, + STATE(3845), 2, sym_line_comment, sym_block_comment, - aux_sym_capture_list_repeat1, - [115171] = 6, + [115195] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, + ACTIONS(6922), 1, anon_sym_SQUOTE, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - STATE(3858), 1, + STATE(3861), 1, aux_sym_raw_string_literal_repeat1, - STATE(3845), 2, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [115191] = 6, + [115215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(6925), 1, + ACTIONS(6926), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3846), 2, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [115211] = 6, + [115235] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, + ACTIONS(6922), 1, anon_sym_DQUOTE, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - STATE(3860), 1, + STATE(3863), 1, aux_sym_raw_string_literal_repeat2, - STATE(3847), 2, - sym_line_comment, - sym_block_comment, - [115231] = 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(1667), 1, - sym__content_block, STATE(3848), 2, sym_line_comment, sym_block_comment, - [115251] = 4, + [115255] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(6932), 1, + anon_sym_RPAREN, + STATE(3996), 1, + aux_sym_type_parameter_list_repeat1, STATE(3849), 2, sym_line_comment, sym_block_comment, - ACTIONS(6933), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [115267] = 6, + [115275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(6935), 1, - anon_sym_RBRACK, - STATE(3843), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6934), 1, + anon_sym_RPAREN, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(3850), 2, sym_line_comment, sym_block_comment, - [115287] = 6, + [115295] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(6939), 1, - anon_sym_RBRACK, - STATE(4004), 1, - aux_sym_capture_list_repeat1, + ACTIONS(6938), 1, + anon_sym_RPAREN, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(3851), 2, sym_line_comment, sym_block_comment, - [115307] = 6, + [115315] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6940), 1, anon_sym_COMMA, - ACTIONS(6943), 1, - anon_sym_RPAREN, - STATE(3986), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6942), 1, + anon_sym_RBRACK, + STATE(4009), 1, + aux_sym_capture_list_repeat1, STATE(3852), 2, sym_line_comment, sym_block_comment, - [115327] = 6, + [115335] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(6947), 1, + ACTIONS(6944), 1, anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3991), 1, + aux_sym_parameter_list_repeat1, STATE(3853), 2, sym_line_comment, sym_block_comment, - [115347] = 6, + [115355] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6946), 1, anon_sym_COMMA, - ACTIONS(6949), 1, + ACTIONS(6948), 1, anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, + STATE(3881), 1, + aux_sym_type_parameters_repeat1, STATE(3854), 2, sym_line_comment, sym_block_comment, - [115367] = 6, + [115375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(6953), 1, + ACTIONS(6950), 1, anon_sym_RPAREN, - STATE(3887), 1, - aux_sym_type_parameters_repeat1, + STATE(3890), 1, + aux_sym_type_parameter_list_repeat1, STATE(3855), 2, sym_line_comment, sym_block_comment, - [115387] = 6, + [115395] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, + ACTIONS(6952), 1, anon_sym_COMMA, - ACTIONS(6957), 1, + ACTIONS(6954), 1, anon_sym_PIPE, - STATE(3967), 1, + STATE(4077), 1, aux_sym_short_lambda_repeat1, STATE(3856), 2, sym_line_comment, sym_block_comment, - [115407] = 6, + [115415] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(6959), 1, + ACTIONS(6956), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3847), 1, aux_sym_type_parameters_repeat1, STATE(3857), 2, sym_line_comment, sym_block_comment, - [115427] = 6, - ACTIONS(311), 1, + [115435] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6961), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6936), 1, + anon_sym_COMMA, + ACTIONS(6958), 1, + anon_sym_RPAREN, + STATE(3888), 1, + aux_sym_parameter_list_repeat1, STATE(3858), 2, sym_line_comment, sym_block_comment, - [115447] = 6, + [115455] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(6963), 1, - anon_sym_RPAREN, - STATE(3889), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6960), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(3859), 2, sym_line_comment, sym_block_comment, - [115467] = 6, - ACTIONS(311), 1, + [115475] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6961), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5981), 1, + anon_sym_RPAREN, + ACTIONS(6962), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(3860), 2, sym_line_comment, sym_block_comment, - [115487] = 6, - ACTIONS(3), 1, + [115495] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(6965), 1, - anon_sym_RBRACK, - STATE(3846), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6964), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, STATE(3861), 2, sym_line_comment, sym_block_comment, - [115507] = 6, + [115515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, + ACTIONS(5989), 1, anon_sym_RPAREN, - ACTIONS(6967), 1, + ACTIONS(6966), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(3862), 2, sym_line_comment, sym_block_comment, - [115527] = 6, + [115535] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6964), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3863), 2, + sym_line_comment, + sym_block_comment, + [115555] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, + ACTIONS(6968), 1, sym_identifier, - ACTIONS(6971), 1, + ACTIONS(6970), 1, anon_sym_LBRACE, - STATE(2648), 1, + STATE(2650), 1, sym__content_block, - STATE(3863), 2, + STATE(3864), 2, sym_line_comment, sym_block_comment, - [115547] = 6, + [115575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(6973), 1, - anon_sym_RPAREN, - STATE(3980), 1, - aux_sym_parameter_list_repeat1, - STATE(3864), 2, + ACTIONS(6972), 1, + anon_sym_RBRACK, + STATE(3922), 1, + aux_sym_type_parameters_repeat1, + STATE(3865), 2, sym_line_comment, sym_block_comment, - [115567] = 6, + [115595] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, + ACTIONS(5941), 1, anon_sym_RPAREN, - ACTIONS(6975), 1, + ACTIONS(6974), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3865), 2, + STATE(3866), 2, sym_line_comment, sym_block_comment, - [115587] = 6, + [115615] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(6977), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - STATE(3911), 1, + STATE(3912), 1, aux_sym_parameter_list_repeat1, - STATE(3866), 2, + STATE(3867), 2, sym_line_comment, sym_block_comment, - [115607] = 6, + [115635] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(6979), 1, + ACTIONS(6978), 1, anon_sym_RPAREN, - STATE(3883), 1, + STATE(3886), 1, aux_sym_type_parameter_list_repeat1, - STATE(3867), 2, + STATE(3868), 2, sym_line_comment, sym_block_comment, - [115627] = 6, + [115655] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6981), 1, + ACTIONS(6980), 1, anon_sym_SQUOTE, - STATE(3896), 1, + STATE(3897), 1, aux_sym_raw_string_literal_repeat1, - STATE(3868), 2, + STATE(3869), 2, sym_line_comment, sym_block_comment, - [115647] = 6, + [115675] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6981), 1, + ACTIONS(6980), 1, anon_sym_DQUOTE, - STATE(3897), 1, + STATE(3898), 1, aux_sym_raw_string_literal_repeat2, - STATE(3869), 2, - sym_line_comment, - sym_block_comment, - [115667] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(6983), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, STATE(3870), 2, sym_line_comment, sym_block_comment, - [115687] = 6, + [115695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(6987), 1, + ACTIONS(6982), 1, anon_sym_RPAREN, - STATE(4013), 1, - aux_sym_type_parameters_repeat1, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(3871), 2, sym_line_comment, sym_block_comment, - [115707] = 6, + [115715] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5983), 1, - anon_sym_RPAREN, - ACTIONS(6989), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6984), 1, + anon_sym_RPAREN, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(3872), 2, sym_line_comment, sym_block_comment, - [115727] = 6, + [115735] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6986), 1, anon_sym_COMMA, - ACTIONS(6991), 1, + ACTIONS(6988), 1, anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, + STATE(4017), 1, + aux_sym_type_parameters_repeat1, STATE(3873), 2, sym_line_comment, sym_block_comment, - [115747] = 6, + [115755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 1, + ACTIONS(6878), 1, anon_sym_DOT, - ACTIONS(6884), 1, + ACTIONS(6880), 1, anon_sym_RBRACE, - ACTIONS(6888), 1, + ACTIONS(6884), 1, aux_sym_format_specifier_token1, STATE(3874), 2, sym_line_comment, sym_block_comment, - [115767] = 6, + [115775] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(6993), 1, + ACTIONS(6990), 1, anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, + STATE(3850), 1, + aux_sym_type_parameter_list_repeat1, STATE(3875), 2, sym_line_comment, sym_block_comment, - [115787] = 6, + [115795] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6992), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3876), 2, + sym_line_comment, + sym_block_comment, + [115815] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(5323), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, STATE(2721), 1, sym_block, - STATE(3876), 2, + STATE(3877), 2, sym_line_comment, sym_block_comment, - [115807] = 5, + [115835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2649), 1, + STATE(2651), 1, sym_type_initializer_body, - ACTIONS(3312), 2, + ACTIONS(3310), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(3877), 2, + STATE(3878), 2, sym_line_comment, sym_block_comment, - [115825] = 6, + [115853] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6995), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3878), 2, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6992), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3879), 2, sym_line_comment, sym_block_comment, - [115845] = 6, + [115873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(6997), 1, - anon_sym_RBRACK, - STATE(3857), 1, - aux_sym_type_parameters_repeat1, - STATE(3879), 2, + ACTIONS(6994), 1, + anon_sym_RPAREN, + STATE(3851), 1, + aux_sym_parameter_list_repeat1, + STATE(3880), 2, sym_line_comment, sym_block_comment, - [115865] = 6, + [115893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(5959), 1, + anon_sym_RPAREN, + ACTIONS(6996), 1, anon_sym_COMMA, - ACTIONS(6999), 1, - anon_sym_RBRACK, - STATE(3891), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3880), 2, + STATE(3881), 2, sym_line_comment, sym_block_comment, - [115885] = 6, + [115913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7001), 1, - anon_sym_RPAREN, - STATE(3853), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3881), 2, + ACTIONS(6998), 1, + anon_sym_RBRACK, + STATE(3893), 1, + aux_sym_type_parameters_repeat1, + STATE(3882), 2, sym_line_comment, sym_block_comment, - [115905] = 6, + [115933] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(3306), 1, anon_sym_COMMA, - ACTIONS(7003), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - STATE(2649), 1, + STATE(2651), 1, sym_type_initializer_body, - STATE(3882), 2, + STATE(3883), 2, sym_line_comment, sym_block_comment, - [115925] = 6, + [115953] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7005), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3883), 2, + ACTIONS(7002), 1, + anon_sym_RBRACK, + STATE(3859), 1, + aux_sym_type_parameters_repeat1, + STATE(3884), 2, sym_line_comment, sym_block_comment, - [115945] = 5, + [115973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2649), 1, + STATE(2651), 1, sym_type_initializer_body, ACTIONS(3302), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(3884), 2, - sym_line_comment, - sym_block_comment, - [115963] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6660), 1, - anon_sym_COMMA, - ACTIONS(6662), 1, - anon_sym_RPAREN, - STATE(3872), 1, - aux_sym_type_parameters_repeat1, STATE(3885), 2, sym_line_comment, sym_block_comment, - [115983] = 6, + [115991] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7007), 1, + ACTIONS(7004), 1, anon_sym_RPAREN, - STATE(3854), 1, - aux_sym_parameter_list_repeat1, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(3886), 2, sym_line_comment, sym_block_comment, - [116003] = 6, + [116011] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, - anon_sym_RPAREN, - ACTIONS(7009), 1, + ACTIONS(6670), 1, anon_sym_COMMA, - STATE(3760), 1, + ACTIONS(6672), 1, + anon_sym_RPAREN, + STATE(3860), 1, aux_sym_type_parameters_repeat1, STATE(3887), 2, sym_line_comment, sym_block_comment, - [116023] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6995), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3888), 2, - sym_line_comment, - sym_block_comment, - [116043] = 6, + [116031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7011), 1, + ACTIONS(7006), 1, anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3889), 2, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, + STATE(3888), 2, sym_line_comment, sym_block_comment, - [116063] = 5, + [116051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, + ACTIONS(7008), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(7011), 1, anon_sym_COLON_EQ, - STATE(3890), 3, + STATE(3889), 3, sym_line_comment, sym_block_comment, aux_sym_identifier_list_repeat1, - [116081] = 6, + [116069] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7018), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7013), 1, + anon_sym_RPAREN, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3890), 2, + sym_line_comment, + sym_block_comment, + [116089] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7015), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, STATE(3891), 2, sym_line_comment, sym_block_comment, - [116101] = 6, + [116109] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, + ACTIONS(7017), 1, anon_sym_SEMI, - ACTIONS(7022), 1, + ACTIONS(7019), 1, anon_sym_RBRACK, STATE(4018), 1, aux_sym_attribute_repeat1, STATE(3892), 2, sym_line_comment, sym_block_comment, - [116121] = 6, + [116129] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7024), 1, - anon_sym_RPAREN, - STATE(3873), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7021), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(3893), 2, sym_line_comment, sym_block_comment, - [116141] = 6, + [116149] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7026), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7015), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, STATE(3894), 2, sym_line_comment, sym_block_comment, - [116161] = 6, + [116169] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7023), 1, + anon_sym_RPAREN, + STATE(3871), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3895), 2, + sym_line_comment, + sym_block_comment, + [116189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 1, + ACTIONS(7025), 1, anon_sym_COMMA, - ACTIONS(7030), 1, + ACTIONS(7027), 1, anon_sym_RPAREN, - STATE(3908), 1, + STATE(3909), 1, aux_sym_type_parameters_repeat1, - STATE(3895), 2, + STATE(3896), 2, sym_line_comment, sym_block_comment, - [116181] = 6, + [116209] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7032), 1, + ACTIONS(7029), 1, anon_sym_SQUOTE, - STATE(3907), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3896), 2, + STATE(3897), 2, sym_line_comment, sym_block_comment, - [116201] = 6, + [116229] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7032), 1, + ACTIONS(7029), 1, anon_sym_DQUOTE, - STATE(3950), 1, + STATE(3913), 1, aux_sym_raw_string_literal_repeat2, - STATE(3897), 2, - sym_line_comment, - sym_block_comment, - [116221] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7026), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, STATE(3898), 2, sym_line_comment, sym_block_comment, - [116241] = 6, + [116249] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7036), 1, - anon_sym_LBRACE, - STATE(1215), 1, - sym__content_block, + ACTIONS(6936), 1, + anon_sym_COMMA, + ACTIONS(7031), 1, + anon_sym_RPAREN, + STATE(3872), 1, + aux_sym_parameter_list_repeat1, STATE(3899), 2, sym_line_comment, sym_block_comment, - [116261] = 6, + [116269] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -319124,830 +319367,839 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5100), 1, anon_sym_COLON_EQ, - STATE(4028), 1, + STATE(4033), 1, aux_sym_identifier_list_repeat1, STATE(3900), 2, sym_line_comment, sym_block_comment, - [116281] = 6, + [116289] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7033), 1, + sym_identifier, + ACTIONS(7035), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym__content_block, + STATE(3901), 2, + sym_line_comment, + sym_block_comment, + [116309] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7038), 1, + ACTIONS(7037), 1, anon_sym_SQUOTE, - STATE(3913), 1, + STATE(3915), 1, aux_sym_raw_string_literal_repeat1, - STATE(3901), 2, + STATE(3902), 2, + sym_line_comment, + sym_block_comment, + [116329] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5915), 1, + anon_sym_RPAREN, + ACTIONS(7039), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, + STATE(3903), 2, sym_line_comment, sym_block_comment, - [116301] = 6, + [116349] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7038), 1, + ACTIONS(7041), 1, anon_sym_DQUOTE, - STATE(3914), 1, + STATE(3913), 1, aux_sym_raw_string_literal_repeat2, - STATE(3902), 2, + STATE(3904), 2, sym_line_comment, sym_block_comment, - [116321] = 6, - ACTIONS(3), 1, + [116369] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7040), 1, - anon_sym_RPAREN, - STATE(3875), 1, - aux_sym_parameter_list_repeat1, - STATE(3903), 2, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7037), 1, + anon_sym_DQUOTE, + STATE(3921), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3905), 2, sym_line_comment, sym_block_comment, - [116341] = 6, + [116389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - anon_sym_RPAREN, - ACTIONS(7042), 1, + ACTIONS(5505), 1, anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, - STATE(3904), 2, + ACTIONS(7043), 1, + anon_sym_LBRACE, + STATE(4011), 1, + aux_sym_match_expression_list_repeat1, + STATE(3906), 2, sym_line_comment, sym_block_comment, - [116361] = 6, + [116409] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4426), 1, + ACTIONS(4424), 1, anon_sym_LBRACE, - ACTIONS(5471), 1, + ACTIONS(5475), 1, anon_sym_COMMA, - STATE(3973), 1, + STATE(3970), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3905), 2, - sym_line_comment, - sym_block_comment, - [116381] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7044), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3906), 2, + STATE(3907), 2, sym_line_comment, sym_block_comment, - [116401] = 5, + [116429] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_SQUOTE, - ACTIONS(7048), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - STATE(3907), 3, + ACTIONS(7041), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3908), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat1, - [116419] = 6, + [116449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, + ACTIONS(5967), 1, anon_sym_RPAREN, - ACTIONS(7051), 1, + ACTIONS(7045), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3908), 2, + STATE(3909), 2, sym_line_comment, sym_block_comment, - [116439] = 6, + [116469] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7053), 1, + ACTIONS(7047), 1, anon_sym_RPAREN, - STATE(3933), 1, + STATE(3934), 1, aux_sym_parameter_list_repeat1, - STATE(3909), 2, + STATE(3910), 2, sym_line_comment, sym_block_comment, - [116459] = 6, + [116489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7055), 1, + ACTIONS(7049), 1, anon_sym_RPAREN, - STATE(3934), 1, + STATE(3935), 1, aux_sym_type_parameter_list_repeat1, - STATE(3910), 2, + STATE(3911), 2, sym_line_comment, sym_block_comment, - [116479] = 6, + [116509] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7057), 1, + ACTIONS(7051), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(3911), 2, - sym_line_comment, - sym_block_comment, - [116499] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7044), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, STATE(3912), 2, sym_line_comment, sym_block_comment, - [116519] = 6, + [116529] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7059), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3913), 2, + ACTIONS(7053), 1, + anon_sym_DQUOTE, + ACTIONS(7055), 1, + aux_sym_raw_string_literal_token2, + STATE(3913), 3, sym_line_comment, sym_block_comment, - [116539] = 6, - ACTIONS(311), 1, + aux_sym_raw_string_literal_repeat2, + [116547] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7059), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(7058), 1, + sym_identifier, + ACTIONS(7060), 1, + anon_sym_LPAREN, + STATE(1825), 1, + sym_const_definition, STATE(3914), 2, sym_line_comment, sym_block_comment, - [116559] = 6, - ACTIONS(3), 1, + [116567] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_mut, - STATE(4151), 1, - sym_var_definition, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7062), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, STATE(3915), 2, sym_line_comment, sym_block_comment, - [116579] = 6, + [116587] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7063), 1, - anon_sym_LPAREN, - STATE(1819), 1, - sym_const_definition, + ACTIONS(7064), 1, + anon_sym_COMMA, + ACTIONS(7066), 1, + anon_sym_RPAREN, + STATE(4040), 1, + aux_sym_type_parameters_repeat1, STATE(3916), 2, sym_line_comment, sym_block_comment, - [116599] = 6, + [116607] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, + ACTIONS(7068), 1, anon_sym_COMMA, - ACTIONS(7067), 1, - anon_sym_in, - STATE(4050), 1, - aux_sym_var_definition_list_repeat1, + ACTIONS(7070), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_type_parameters_repeat1, STATE(3917), 2, sym_line_comment, sym_block_comment, - [116619] = 6, + [116627] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7071), 1, - anon_sym_RPAREN, - STATE(4040), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6624), 1, + sym_identifier, + ACTIONS(6626), 1, + anon_sym_mut, + STATE(4148), 1, + sym_var_definition, STATE(3918), 2, sym_line_comment, sym_block_comment, - [116639] = 6, + [116647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5509), 1, + ACTIONS(7072), 1, anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_LBRACE, - STATE(4020), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(7074), 1, + anon_sym_in, + STATE(4050), 1, + aux_sym_var_definition_list_repeat1, STATE(3919), 2, sym_line_comment, sym_block_comment, - [116659] = 5, + [116667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_QMARK, - ACTIONS(5583), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(5505), 1, + anon_sym_COMMA, + ACTIONS(7076), 1, + anon_sym_LBRACE, + STATE(4011), 1, + aux_sym_match_expression_list_repeat1, STATE(3920), 2, sym_line_comment, sym_block_comment, - [116677] = 6, - ACTIONS(3), 1, + [116687] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5509), 1, - anon_sym_COMMA, - ACTIONS(7077), 1, - anon_sym_LBRACE, - STATE(4020), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, STATE(3921), 2, sym_line_comment, sym_block_comment, - [116697] = 6, + [116707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_RPAREN, - STATE(3865), 1, + ACTIONS(7078), 1, + anon_sym_RBRACK, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(3922), 2, sym_line_comment, sym_block_comment, - [116717] = 6, - ACTIONS(3), 1, + [116727] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - sym_identifier, - ACTIONS(7085), 1, - anon_sym_PIPE, - STATE(4054), 1, - sym_reference_expression, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7080), 1, + anon_sym_DQUOTE, + STATE(3876), 1, + aux_sym_raw_string_literal_repeat2, STATE(3923), 2, sym_line_comment, sym_block_comment, - [116737] = 6, + [116747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, - anon_sym_RPAREN, - ACTIONS(7087), 1, - anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7082), 1, + anon_sym_QMARK, + ACTIONS(5549), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(3924), 2, sym_line_comment, sym_block_comment, - [116757] = 6, + [116765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(6674), 1, - anon_sym_RBRACK, - STATE(4056), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7084), 1, + sym_identifier, + ACTIONS(7086), 1, + anon_sym_PIPE, + STATE(4057), 1, + sym_reference_expression, STATE(3925), 2, sym_line_comment, sym_block_comment, - [116777] = 6, + [116785] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7089), 1, - anon_sym_DQUOTE, - STATE(3878), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7080), 1, + anon_sym_SQUOTE, + STATE(3879), 1, + aux_sym_raw_string_literal_repeat1, STATE(3926), 2, sym_line_comment, sym_block_comment, - [116797] = 6, + [116805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(7088), 1, sym_identifier, - ACTIONS(7091), 1, - anon_sym_LPAREN, - STATE(1794), 1, - sym_const_definition, + ACTIONS(7090), 1, + anon_sym_LBRACE, + STATE(1489), 1, + sym__content_block, STATE(3927), 2, sym_line_comment, sym_block_comment, - [116817] = 6, + [116825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7093), 1, + ACTIONS(6668), 1, anon_sym_RBRACK, - STATE(3944), 1, + STATE(4058), 1, aux_sym_type_parameters_repeat1, STATE(3928), 2, sym_line_comment, sym_block_comment, - [116837] = 6, - ACTIONS(311), 1, + [116845] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7089), 1, - anon_sym_SQUOTE, - STATE(3888), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(7092), 1, + anon_sym_RBRACK, + STATE(3945), 1, + aux_sym_type_parameters_repeat1, STATE(3929), 2, sym_line_comment, sym_block_comment, - [116857] = 6, + [116865] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7058), 1, + sym_identifier, + ACTIONS(7094), 1, + anon_sym_LPAREN, + STATE(1829), 1, + sym_const_definition, + STATE(3930), 2, + sym_line_comment, + sym_block_comment, + [116885] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7095), 1, + ACTIONS(7096), 1, anon_sym_DQUOTE, - STATE(3906), 1, + STATE(3904), 1, aux_sym_raw_string_literal_repeat2, - STATE(3930), 2, + STATE(3931), 2, sym_line_comment, sym_block_comment, - [116877] = 6, + [116905] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7095), 1, + ACTIONS(7096), 1, anon_sym_SQUOTE, - STATE(3912), 1, + STATE(3908), 1, aux_sym_raw_string_literal_repeat1, - STATE(3931), 2, + STATE(3932), 2, sym_line_comment, sym_block_comment, - [116897] = 6, + [116925] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, + ACTIONS(7098), 1, sym_identifier, - ACTIONS(7099), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - STATE(1468), 1, + STATE(2472), 1, sym__content_block, - STATE(3932), 2, + STATE(3933), 2, sym_line_comment, sym_block_comment, - [116917] = 6, + [116945] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7101), 1, + ACTIONS(7102), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(3933), 2, - sym_line_comment, - sym_block_comment, - [116937] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COMMA, - ACTIONS(7103), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, STATE(3934), 2, sym_line_comment, sym_block_comment, - [116957] = 6, + [116965] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7105), 1, + ACTIONS(7104), 1, anon_sym_RPAREN, - STATE(3956), 1, - aux_sym_parameter_list_repeat1, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(3935), 2, sym_line_comment, sym_block_comment, - [116977] = 6, + [116985] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - sym_identifier, - ACTIONS(7109), 1, - anon_sym_LBRACE, - STATE(2485), 1, - sym__content_block, + ACTIONS(5963), 1, + anon_sym_RPAREN, + ACTIONS(7106), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(3936), 2, sym_line_comment, sym_block_comment, - [116997] = 6, + [117005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(7113), 1, + ACTIONS(7110), 1, anon_sym_RPAREN, STATE(4046), 1, aux_sym_type_parameters_repeat1, STATE(3937), 2, sym_line_comment, sym_block_comment, - [117017] = 6, + [117025] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(7112), 1, anon_sym_COMMA, - ACTIONS(7115), 1, + ACTIONS(7114), 1, anon_sym_RPAREN, - STATE(3959), 1, - aux_sym_type_parameter_list_repeat1, + STATE(4051), 1, + aux_sym_type_parameters_repeat1, STATE(3938), 2, sym_line_comment, sym_block_comment, - [117037] = 6, + [117045] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7119), 1, + ACTIONS(7116), 1, anon_sym_RPAREN, - STATE(4052), 1, - aux_sym_type_parameters_repeat1, + STATE(3964), 1, + aux_sym_parameter_list_repeat1, STATE(3939), 2, sym_line_comment, sym_block_comment, - [117057] = 6, + [117065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4420), 1, - anon_sym_LBRACE, - ACTIONS(5471), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - STATE(3973), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(7118), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_type_parameter_list_repeat1, STATE(3940), 2, sym_line_comment, sym_block_comment, - [117077] = 4, + [117085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4428), 1, + anon_sym_LBRACE, + ACTIONS(5475), 1, + anon_sym_COMMA, + STATE(3970), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4317), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [117093] = 6, - ACTIONS(3), 1, + [117105] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - anon_sym_COMMA, - ACTIONS(7123), 1, - anon_sym_RPAREN, - STATE(4043), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7120), 1, + anon_sym_DQUOTE, + STATE(3891), 1, + aux_sym_raw_string_literal_repeat2, STATE(3942), 2, sym_line_comment, sym_block_comment, - [117113] = 4, + [117125] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7120), 1, + anon_sym_SQUOTE, + STATE(3894), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3943), 2, + sym_line_comment, + sym_block_comment, + [117145] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3943), 2, + STATE(3944), 2, sym_line_comment, sym_block_comment, - ACTIONS(6642), 3, + ACTIONS(4315), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, - [117129] = 6, + [117161] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7125), 1, + ACTIONS(7122), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3944), 2, + STATE(3945), 2, sym_line_comment, sym_block_comment, - [117149] = 6, - ACTIONS(311), 1, + [117181] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7127), 1, - anon_sym_DQUOTE, - STATE(3894), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3945), 2, + STATE(3946), 2, sym_line_comment, sym_block_comment, - [117169] = 6, - ACTIONS(311), 1, + ACTIONS(6650), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [117197] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7127), 1, - anon_sym_SQUOTE, - STATE(3898), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3946), 2, + ACTIONS(7072), 1, + anon_sym_COMMA, + ACTIONS(7124), 1, + anon_sym_in, + STATE(3919), 1, + aux_sym_var_definition_list_repeat1, + STATE(3947), 2, sym_line_comment, sym_block_comment, - [117189] = 6, + [117217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, + ACTIONS(7126), 1, anon_sym_COMMA, - ACTIONS(7131), 1, + ACTIONS(7128), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(3936), 1, aux_sym_type_parameters_repeat1, - STATE(3947), 2, + STATE(3948), 2, sym_line_comment, sym_block_comment, - [117209] = 6, + [117237] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(7058), 1, sym_identifier, - ACTIONS(7133), 1, + ACTIONS(7130), 1, anon_sym_LPAREN, - STATE(1786), 1, + STATE(1794), 1, sym_const_definition, - STATE(3948), 2, + STATE(3949), 2, sym_line_comment, sym_block_comment, - [117229] = 6, + [117257] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7135), 1, + ACTIONS(7132), 1, anon_sym_DQUOTE, - STATE(4070), 1, + STATE(4069), 1, aux_sym_raw_string_literal_repeat2, - STATE(3949), 2, - sym_line_comment, - sym_block_comment, - [117249] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - anon_sym_DQUOTE, - ACTIONS(7139), 1, - aux_sym_raw_string_literal_token2, - STATE(3950), 3, + STATE(3950), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat2, - [117267] = 6, + [117277] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, + ACTIONS(7134), 1, anon_sym_COMMA, - ACTIONS(7144), 1, + ACTIONS(7136), 1, anon_sym_RPAREN, - STATE(4071), 1, + STATE(4070), 1, aux_sym_type_parameters_repeat1, STATE(3951), 2, sym_line_comment, sym_block_comment, - [117287] = 6, + [117297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_COMMA, - ACTIONS(7146), 1, - anon_sym_in, - STATE(3917), 1, - aux_sym_var_definition_list_repeat1, + ACTIONS(7138), 1, + sym_identifier, + ACTIONS(7140), 1, + anon_sym_LBRACE, + STATE(2354), 1, + sym__content_block, STATE(3952), 2, sym_line_comment, sym_block_comment, - [117307] = 6, + [117317] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(7142), 1, + anon_sym_SQUOTE, + ACTIONS(7144), 1, + aux_sym_raw_string_literal_token1, + STATE(3953), 3, + sym_line_comment, + sym_block_comment, + aux_sym_raw_string_literal_repeat1, + [117335] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7148), 1, + ACTIONS(7147), 1, anon_sym_DQUOTE, - STATE(3950), 1, + STATE(3913), 1, aux_sym_raw_string_literal_repeat2, - STATE(3953), 2, + STATE(3954), 2, sym_line_comment, sym_block_comment, - [117327] = 6, + [117355] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7148), 1, + ACTIONS(7147), 1, anon_sym_SQUOTE, - STATE(3907), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3954), 2, + STATE(3955), 2, sym_line_comment, sym_block_comment, - [117347] = 6, + [117375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7150), 1, + ACTIONS(7149), 1, anon_sym_RBRACK, - STATE(3979), 1, + STATE(3984), 1, aux_sym_type_parameters_repeat1, - STATE(3955), 2, + STATE(3956), 2, sym_line_comment, sym_block_comment, - [117367] = 6, + [117395] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7152), 1, - anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, - STATE(3956), 2, + STATE(3957), 2, sym_line_comment, sym_block_comment, - [117387] = 6, + ACTIONS(7151), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [117411] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym_identifier, - ACTIONS(7156), 1, + ACTIONS(5153), 1, anon_sym_LBRACE, - STATE(2345), 1, - sym__content_block, - STATE(3957), 2, + ACTIONS(7153), 1, + anon_sym_COMMA, + STATE(3958), 3, sym_line_comment, sym_block_comment, - [117407] = 5, + aux_sym_expression_without_blocks_list_repeat1, + [117429] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(7158), 1, + ACTIONS(7156), 1, anon_sym_COMMA, - STATE(3958), 3, + ACTIONS(7159), 1, + anon_sym_RBRACK, + STATE(3959), 3, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - [117425] = 6, + aux_sym_capture_list_repeat1, + [117447] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COMMA, - ACTIONS(7161), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3959), 2, + STATE(3960), 2, sym_line_comment, sym_block_comment, - [117445] = 6, + ACTIONS(7161), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [117463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -319956,38 +320208,26 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7165), 1, anon_sym_LBRACE, - STATE(2106), 1, + STATE(2214), 1, sym__content_block, - STATE(3960), 2, + STATE(3961), 2, sym_line_comment, sym_block_comment, - [117465] = 6, + [117483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, ACTIONS(7167), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3961), 2, - sym_line_comment, - sym_block_comment, - [117485] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, STATE(3962), 2, sym_line_comment, sym_block_comment, - ACTIONS(7169), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [117501] = 4, + [117503] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -319995,105 +320235,107 @@ static const uint16_t ts_small_parse_table[] = { STATE(3963), 2, sym_line_comment, sym_block_comment, - ACTIONS(6803), 3, + ACTIONS(6801), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [117517] = 4, + [117519] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6936), 1, + anon_sym_COMMA, + ACTIONS(7169), 1, + anon_sym_RPAREN, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(3964), 2, sym_line_comment, sym_block_comment, - ACTIONS(7171), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [117533] = 6, + [117539] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7171), 1, + anon_sym_RPAREN, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3965), 2, + sym_line_comment, + sym_block_comment, + [117559] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, ACTIONS(7173), 1, anon_sym_SQUOTE, - STATE(3993), 1, + STATE(3994), 1, aux_sym_raw_string_literal_repeat1, - STATE(3965), 2, + STATE(3966), 2, sym_line_comment, sym_block_comment, - [117553] = 6, + [117579] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, ACTIONS(7173), 1, anon_sym_DQUOTE, - STATE(3994), 1, + STATE(3995), 1, aux_sym_raw_string_literal_repeat2, - STATE(3966), 2, - sym_line_comment, - sym_block_comment, - [117573] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_COMMA, - ACTIONS(7178), 1, - anon_sym_PIPE, - STATE(3967), 3, + STATE(3967), 2, sym_line_comment, sym_block_comment, - aux_sym_short_lambda_repeat1, - [117591] = 6, + [117599] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7180), 1, - anon_sym_RPAREN, - STATE(3995), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7175), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(3968), 2, sym_line_comment, sym_block_comment, - [117611] = 6, + [117619] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_COLON_EQ, - ACTIONS(5281), 1, + STATE(4017), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(7177), 2, anon_sym_COMMA, - STATE(3977), 1, - aux_sym_strictly_expression_list_repeat1, + anon_sym_RPAREN, STATE(3969), 2, sym_line_comment, sym_block_comment, - [117631] = 5, + [117637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(4013), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(7182), 2, + ACTIONS(3908), 1, + anon_sym_LBRACE, + ACTIONS(7179), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3970), 2, + STATE(3970), 3, sym_line_comment, sym_block_comment, - [117649] = 4, + aux_sym_strictly_expression_list_repeat1, + [117655] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -320101,423 +320343,426 @@ static const uint16_t ts_small_parse_table[] = { STATE(3971), 2, sym_line_comment, sym_block_comment, - ACTIONS(7184), 3, + ACTIONS(7182), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [117665] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON, - ACTIONS(7186), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(3972), 2, - sym_line_comment, - sym_block_comment, - [117683] = 5, + [117671] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3908), 1, - anon_sym_LBRACE, - ACTIONS(7190), 1, + ACTIONS(3862), 1, + anon_sym_COLON_EQ, + ACTIONS(5279), 1, anon_sym_COMMA, - STATE(3973), 3, + STATE(3980), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3972), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [117701] = 6, + [117691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, + ACTIONS(7184), 1, sym_identifier, - ACTIONS(7195), 1, + ACTIONS(7186), 1, anon_sym_LBRACE, - STATE(2944), 1, + STATE(2939), 1, sym__content_block, - STATE(3974), 2, + STATE(3973), 2, sym_line_comment, sym_block_comment, - [117721] = 6, + [117711] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7135), 1, + ACTIONS(7132), 1, anon_sym_SQUOTE, - STATE(4072), 1, + STATE(4071), 1, aux_sym_raw_string_literal_repeat1, - STATE(3975), 2, + STATE(3974), 2, sym_line_comment, sym_block_comment, - [117741] = 6, + [117731] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, + ACTIONS(7190), 1, + anon_sym_COLON, + ACTIONS(7188), 2, anon_sym_SEMI, - ACTIONS(7197), 1, anon_sym_RBRACK, - STATE(3892), 1, - aux_sym_attribute_repeat1, - STATE(3976), 2, + STATE(3975), 2, sym_line_comment, sym_block_comment, - [117761] = 6, + [117749] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4426), 1, - anon_sym_COLON_EQ, - ACTIONS(5281), 1, - anon_sym_COMMA, - STATE(4019), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3977), 2, + ACTIONS(7017), 1, + anon_sym_SEMI, + ACTIONS(7192), 1, + anon_sym_RBRACK, + STATE(3892), 1, + aux_sym_attribute_repeat1, + STATE(3976), 2, sym_line_comment, sym_block_comment, - [117781] = 6, + [117769] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, + ACTIONS(5785), 1, anon_sym_COMMA, - ACTIONS(6181), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, STATE(3958), 1, aux_sym_expression_without_blocks_list_repeat1, - STATE(3978), 2, + STATE(3977), 2, sym_line_comment, sym_block_comment, - [117801] = 6, + [117789] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7199), 1, + ACTIONS(7194), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(3979), 2, + STATE(3978), 2, sym_line_comment, sym_block_comment, - [117821] = 6, + [117809] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7201), 1, + ACTIONS(7196), 1, anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, - STATE(3980), 2, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3979), 2, sym_line_comment, sym_block_comment, - [117841] = 6, + [117829] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(4424), 1, + anon_sym_COLON_EQ, + ACTIONS(5279), 1, anon_sym_COMMA, - ACTIONS(7203), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, - STATE(3981), 2, + STATE(4010), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3980), 2, sym_line_comment, sym_block_comment, - [117861] = 4, + [117849] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3982), 2, + STATE(3981), 2, sym_line_comment, sym_block_comment, - ACTIONS(6779), 3, + ACTIONS(6794), 3, anon_sym_COMMA, anon_sym_GT, anon_sym_RBRACK, - [117877] = 6, + [117865] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(5471), 1, + ACTIONS(5475), 1, anon_sym_COMMA, - STATE(3905), 1, + STATE(3907), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3983), 2, + STATE(3982), 2, sym_line_comment, sym_block_comment, - [117897] = 4, + [117885] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3984), 2, + STATE(3983), 2, sym_line_comment, sym_block_comment, - ACTIONS(7205), 3, + ACTIONS(7198), 3, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ, - [117913] = 6, + [117901] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7207), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3985), 2, + ACTIONS(7200), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, + STATE(3984), 2, sym_line_comment, sym_block_comment, - [117933] = 6, + [117921] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7209), 1, + ACTIONS(7202), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(3986), 2, + STATE(3985), 2, sym_line_comment, sym_block_comment, - [117953] = 6, + [117941] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7213), 1, + ACTIONS(7204), 1, anon_sym_RPAREN, - STATE(4005), 1, - aux_sym_type_parameters_repeat1, - STATE(3987), 2, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3986), 2, sym_line_comment, sym_block_comment, - [117973] = 6, + [117961] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7215), 1, + ACTIONS(7206), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(3988), 2, + STATE(3987), 2, sym_line_comment, sym_block_comment, - [117993] = 6, + [117981] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7217), 1, + ACTIONS(7208), 1, anon_sym_RPAREN, - STATE(4016), 1, + STATE(4003), 1, aux_sym_type_parameter_list_repeat1, + STATE(3988), 2, + sym_line_comment, + sym_block_comment, + [118001] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7210), 1, + anon_sym_COMMA, + ACTIONS(7212), 1, + anon_sym_RPAREN, + STATE(4006), 1, + aux_sym_type_parameters_repeat1, STATE(3989), 2, sym_line_comment, sym_block_comment, - [118013] = 6, + [118021] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7219), 1, + ACTIONS(7214), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, STATE(3990), 2, sym_line_comment, sym_block_comment, - [118033] = 6, + [118041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 1, - sym_identifier, - ACTIONS(7223), 1, - anon_sym_LBRACE, - STATE(2084), 1, - sym__content_block, + ACTIONS(6936), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_RPAREN, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(3991), 2, sym_line_comment, sym_block_comment, - [118053] = 6, - ACTIONS(311), 1, + [118061] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7225), 1, - anon_sym_SQUOTE, - STATE(4010), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(7218), 1, + anon_sym_COMMA, + ACTIONS(7220), 1, + anon_sym_RPAREN, + STATE(3866), 1, + aux_sym_type_parameters_repeat1, STATE(3992), 2, sym_line_comment, sym_block_comment, - [118073] = 6, + [118081] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(7222), 1, + anon_sym_RBRACK, + STATE(3962), 1, + aux_sym_type_parameters_repeat1, + STATE(3993), 2, + sym_line_comment, + sym_block_comment, + [118101] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7227), 1, + ACTIONS(7224), 1, anon_sym_SQUOTE, - STATE(3907), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3993), 2, + STATE(3994), 2, sym_line_comment, sym_block_comment, - [118093] = 6, + [118121] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7227), 1, + ACTIONS(7224), 1, anon_sym_DQUOTE, - STATE(3950), 1, + STATE(3913), 1, aux_sym_raw_string_literal_repeat2, - STATE(3994), 2, + STATE(3995), 2, sym_line_comment, sym_block_comment, - [118113] = 6, + [118141] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7229), 1, + ACTIONS(7226), 1, anon_sym_RPAREN, - STATE(4016), 1, + STATE(4003), 1, aux_sym_type_parameter_list_repeat1, - STATE(3995), 2, + STATE(3996), 2, sym_line_comment, sym_block_comment, - [118133] = 6, + [118161] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(7231), 1, - anon_sym_RBRACK, - STATE(3961), 1, - aux_sym_type_parameters_repeat1, - STATE(3996), 2, + ACTIONS(7228), 1, + sym_identifier, + ACTIONS(7230), 1, + anon_sym_LBRACE, + STATE(2095), 1, + sym__content_block, + STATE(3997), 2, sym_line_comment, sym_block_comment, - [118153] = 6, + [118181] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7225), 1, - anon_sym_DQUOTE, - STATE(4011), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3997), 2, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7232), 1, + anon_sym_SQUOTE, + STATE(4014), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3998), 2, sym_line_comment, sym_block_comment, - [118173] = 6, - ACTIONS(3), 1, + [118201] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3998), 2, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7232), 1, + anon_sym_DQUOTE, + STATE(4015), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3999), 2, sym_line_comment, sym_block_comment, - [118193] = 6, + [118221] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(4959), 1, sym_identifier, - ACTIONS(7235), 1, + ACTIONS(7234), 1, anon_sym_static, - ACTIONS(7237), 1, + ACTIONS(7236), 1, anon_sym_volatile, - STATE(3999), 2, - sym_line_comment, - sym_block_comment, - [118213] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, STATE(4000), 2, sym_line_comment, sym_block_comment, - ACTIONS(7239), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [118229] = 6, + [118241] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7238), 1, + anon_sym_RBRACK, + STATE(3968), 1, + aux_sym_type_parameters_repeat1, STATE(4001), 2, sym_line_comment, sym_block_comment, - [118249] = 4, + [118261] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -320525,213 +320770,207 @@ static const uint16_t ts_small_parse_table[] = { STATE(4002), 2, sym_line_comment, sym_block_comment, - ACTIONS(7243), 3, + ACTIONS(7240), 3, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [118265] = 6, + anon_sym_EQ, + [118277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(7242), 1, anon_sym_COMMA, ACTIONS(7245), 1, - anon_sym_RBRACK, - STATE(3870), 1, - aux_sym_type_parameters_repeat1, - STATE(4003), 2, + anon_sym_RPAREN, + STATE(4003), 3, sym_line_comment, sym_block_comment, - [118285] = 6, + aux_sym_type_parameter_list_repeat1, + [118295] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - anon_sym_RBRACK, - ACTIONS(7247), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - STATE(3844), 1, - aux_sym_capture_list_repeat1, + ACTIONS(7247), 1, + anon_sym_RBRACK, + STATE(3978), 1, + aux_sym_type_parameters_repeat1, STATE(4004), 2, sym_line_comment, sym_block_comment, - [118305] = 6, + [118315] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_RPAREN, - ACTIONS(7249), 1, - anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, STATE(4005), 2, sym_line_comment, sym_block_comment, - [118325] = 6, + ACTIONS(7249), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [118331] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7251), 1, + ACTIONS(5931), 1, anon_sym_RPAREN, - STATE(4030), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7251), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4006), 2, sym_line_comment, sym_block_comment, - [118345] = 6, + [118351] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, ACTIONS(7253), 1, anon_sym_RPAREN, STATE(4031), 1, - aux_sym_type_parameter_list_repeat1, + aux_sym_parameter_list_repeat1, STATE(4007), 2, sym_line_comment, sym_block_comment, - [118365] = 6, + [118371] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6930), 1, anon_sym_COMMA, ACTIONS(7255), 1, - anon_sym_RBRACK, - STATE(3981), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RPAREN, + STATE(4032), 1, + aux_sym_type_parameter_list_repeat1, STATE(4008), 2, sym_line_comment, sym_block_comment, - [118385] = 4, + [118391] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6495), 1, + anon_sym_RBRACK, + ACTIONS(7257), 1, + anon_sym_COMMA, + STATE(3959), 1, + aux_sym_capture_list_repeat1, STATE(4009), 2, sym_line_comment, sym_block_comment, - ACTIONS(6502), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [118401] = 6, - ACTIONS(311), 1, + [118411] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7257), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, - STATE(4010), 2, + ACTIONS(3908), 1, + anon_sym_COLON_EQ, + ACTIONS(7259), 1, + anon_sym_COMMA, + STATE(4010), 3, sym_line_comment, sym_block_comment, - [118421] = 6, - ACTIONS(311), 1, + aux_sym_strictly_expression_list_repeat1, + [118429] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7257), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4011), 2, + ACTIONS(5647), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, + anon_sym_COMMA, + STATE(4011), 3, sym_line_comment, sym_block_comment, - [118441] = 6, + aux_sym_match_expression_list_repeat1, + [118447] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4420), 1, - anon_sym_SEMI, - ACTIONS(5449), 1, - anon_sym_COMMA, - STATE(4027), 1, - aux_sym_strictly_expression_list_repeat1, STATE(4012), 2, sym_line_comment, sym_block_comment, - [118461] = 6, + ACTIONS(6408), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [118463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, - anon_sym_RPAREN, - ACTIONS(7259), 1, + ACTIONS(4428), 1, + anon_sym_SEMI, + ACTIONS(5477), 1, anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + STATE(4021), 1, + aux_sym_strictly_expression_list_repeat1, STATE(4013), 2, sym_line_comment, sym_block_comment, - [118481] = 6, - ACTIONS(3), 1, + [118483] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7261), 1, - anon_sym_RPAREN, - STATE(4047), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7265), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, STATE(4014), 2, sym_line_comment, sym_block_comment, - [118501] = 6, - ACTIONS(3), 1, + [118503] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COMMA, - ACTIONS(7263), 1, - anon_sym_RPAREN, - STATE(4049), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7265), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, STATE(4015), 2, sym_line_comment, sym_block_comment, - [118521] = 5, + [118523] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7265), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_RPAREN, - STATE(4016), 3, + STATE(4016), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6746), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, [118539] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_COMMA, - ACTIONS(7272), 1, + ACTIONS(5991), 1, anon_sym_RPAREN, - STATE(3862), 1, + ACTIONS(7267), 1, + anon_sym_COMMA, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(4017), 2, sym_line_comment, @@ -320741,1011 +320980,1014 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, + ACTIONS(7269), 1, anon_sym_SEMI, - ACTIONS(7277), 1, + ACTIONS(7272), 1, anon_sym_RBRACK, STATE(4018), 3, sym_line_comment, sym_block_comment, aux_sym_attribute_repeat1, - [118577] = 5, + [118577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3908), 1, - anon_sym_COLON_EQ, - ACTIONS(7279), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - STATE(4019), 3, + ACTIONS(7274), 1, + anon_sym_RPAREN, + STATE(4047), 1, + aux_sym_parameter_list_repeat1, + STATE(4019), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [118595] = 5, + [118597] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5649), 1, - anon_sym_LBRACE, - ACTIONS(7282), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - STATE(4020), 3, + ACTIONS(7276), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4020), 2, sym_line_comment, sym_block_comment, - aux_sym_match_expression_list_repeat1, - [118613] = 4, + [118617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(4021), 2, + ACTIONS(3908), 1, + anon_sym_SEMI, + ACTIONS(7278), 1, + anon_sym_COMMA, + STATE(4021), 3, sym_line_comment, sym_block_comment, - ACTIONS(6748), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [118629] = 6, + aux_sym_strictly_expression_list_repeat1, + [118635] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_LBRACE, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(3921), 1, - aux_sym_match_expression_list_repeat1, STATE(4022), 2, sym_line_comment, sym_block_comment, - [118649] = 5, + ACTIONS(7281), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [118651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7285), 1, + ACTIONS(7283), 1, anon_sym_COMMA, - ACTIONS(7288), 1, + ACTIONS(7286), 1, anon_sym_RPAREN, STATE(4023), 3, sym_line_comment, sym_block_comment, aux_sym_parameter_list_repeat1, - [118667] = 5, + [118669] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2649), 1, - sym_type_initializer_body, - ACTIONS(7290), 2, + ACTIONS(5503), 1, anon_sym_LBRACE, + ACTIONS(5505), 1, anon_sym_COMMA, + STATE(3920), 1, + aux_sym_match_expression_list_repeat1, STATE(4024), 2, sym_line_comment, sym_block_comment, - [118685] = 6, + [118689] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + STATE(2651), 1, + sym_type_initializer_body, + ACTIONS(7288), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7292), 1, - anon_sym_RBRACK, - STATE(4041), 1, - aux_sym_type_parameters_repeat1, STATE(4025), 2, sym_line_comment, sym_block_comment, - [118705] = 6, + [118707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5509), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7294), 1, - anon_sym_LBRACE, - STATE(3919), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(7290), 1, + anon_sym_RBRACK, + STATE(4042), 1, + aux_sym_type_parameters_repeat1, STATE(4026), 2, sym_line_comment, sym_block_comment, - [118725] = 5, + [118727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3908), 1, - anon_sym_SEMI, - ACTIONS(7296), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - STATE(4027), 3, + ACTIONS(7292), 1, + anon_sym_RPAREN, + STATE(3988), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4027), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [118743] = 6, + [118747] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, + ACTIONS(5505), 1, anon_sym_COMMA, - ACTIONS(7299), 1, - anon_sym_COLON_EQ, - STATE(3890), 1, - aux_sym_identifier_list_repeat1, + ACTIONS(7294), 1, + anon_sym_LBRACE, + STATE(3906), 1, + aux_sym_match_expression_list_repeat1, STATE(4028), 2, sym_line_comment, sym_block_comment, - [118763] = 4, + [118767] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7296), 1, + anon_sym_RPAREN, + STATE(3979), 1, + aux_sym_type_parameter_list_repeat1, STATE(4029), 2, sym_line_comment, sym_block_comment, - ACTIONS(7301), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [118779] = 6, + [118787] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7298), 1, anon_sym_RPAREN, - STATE(4023), 1, + STATE(3990), 1, aux_sym_parameter_list_repeat1, STATE(4030), 2, sym_line_comment, sym_block_comment, - [118799] = 6, + [118807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7305), 1, + ACTIONS(7300), 1, anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(4031), 2, sym_line_comment, sym_block_comment, - [118819] = 6, + [118827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7302), 1, + anon_sym_RPAREN, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(4032), 2, sym_line_comment, sym_block_comment, - [118839] = 6, + [118847] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(5098), 1, anon_sym_COMMA, - ACTIONS(7309), 1, - anon_sym_RPAREN, - STATE(3985), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7304), 1, + anon_sym_COLON_EQ, + STATE(3889), 1, + aux_sym_identifier_list_repeat1, STATE(4033), 2, sym_line_comment, sym_block_comment, - [118859] = 6, + [118867] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7311), 1, + ACTIONS(7306), 1, anon_sym_RPAREN, - STATE(3988), 1, + STATE(3985), 1, aux_sym_parameter_list_repeat1, STATE(4034), 2, sym_line_comment, sym_block_comment, - [118879] = 6, + [118887] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COMMA, - ACTIONS(7313), 1, + ACTIONS(5913), 1, anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7308), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4035), 2, sym_line_comment, sym_block_comment, - [118899] = 6, + [118907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7315), 1, - anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7310), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4036), 2, sym_line_comment, sym_block_comment, - [118919] = 6, + [118927] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7317), 1, - anon_sym_RBRACK, - STATE(4032), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7312), 1, + anon_sym_RPAREN, + STATE(4003), 1, + aux_sym_type_parameter_list_repeat1, STATE(4037), 2, sym_line_comment, sym_block_comment, - [118939] = 6, + [118947] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7319), 1, + ACTIONS(7314), 1, anon_sym_RPAREN, - STATE(3989), 1, - aux_sym_type_parameter_list_repeat1, + STATE(4023), 1, + aux_sym_parameter_list_repeat1, STATE(4038), 2, sym_line_comment, sym_block_comment, - [118959] = 6, + [118967] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7321), 1, - anon_sym_RPAREN, - STATE(3990), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7316), 1, + anon_sym_RBRACK, + STATE(4036), 1, + aux_sym_type_parameters_repeat1, STATE(4039), 2, sym_line_comment, sym_block_comment, - [118979] = 6, + [118987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5987), 1, + ACTIONS(5983), 1, anon_sym_RPAREN, - ACTIONS(7323), 1, + ACTIONS(7318), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(4040), 2, sym_line_comment, sym_block_comment, - [118999] = 6, + [119007] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7325), 1, + ACTIONS(7320), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(4064), 1, aux_sym_type_parameters_repeat1, STATE(4041), 2, sym_line_comment, sym_block_comment, - [119019] = 6, + [119027] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7327), 1, + ACTIONS(7322), 1, anon_sym_RBRACK, - STATE(4065), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(4042), 2, sym_line_comment, sym_block_comment, - [119039] = 6, + [119047] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5945), 1, - anon_sym_RPAREN, - ACTIONS(7329), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7324), 1, + anon_sym_RPAREN, + STATE(4037), 1, + aux_sym_type_parameter_list_repeat1, STATE(4043), 2, sym_line_comment, sym_block_comment, - [119059] = 6, + [119067] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7331), 1, + ACTIONS(7326), 1, anon_sym_RPAREN, - STATE(4035), 1, + STATE(3986), 1, aux_sym_type_parameter_list_repeat1, STATE(4044), 2, sym_line_comment, sym_block_comment, - [119079] = 6, + [119087] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7333), 1, + ACTIONS(7328), 1, anon_sym_RPAREN, - STATE(4036), 1, + STATE(4038), 1, aux_sym_parameter_list_repeat1, STATE(4045), 2, sym_line_comment, sym_block_comment, - [119099] = 6, + [119107] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, + ACTIONS(5965), 1, anon_sym_RPAREN, - ACTIONS(7335), 1, + ACTIONS(7330), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(4046), 2, sym_line_comment, sym_block_comment, - [119119] = 6, + [119127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7337), 1, + ACTIONS(7332), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, STATE(4047), 2, sym_line_comment, sym_block_comment, - [119139] = 6, + [119147] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7339), 1, + ACTIONS(7334), 1, anon_sym_RPAREN, - STATE(3998), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3987), 1, + aux_sym_parameter_list_repeat1, STATE(4048), 2, sym_line_comment, sym_block_comment, - [119159] = 6, + [119167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7341), 1, + ACTIONS(7336), 1, anon_sym_RPAREN, - STATE(4016), 1, + STATE(4003), 1, aux_sym_type_parameter_list_repeat1, STATE(4049), 2, sym_line_comment, sym_block_comment, - [119179] = 5, + [119187] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7343), 1, + ACTIONS(7338), 1, anon_sym_COMMA, - ACTIONS(7346), 1, + ACTIONS(7341), 1, anon_sym_in, STATE(4050), 3, sym_line_comment, sym_block_comment, aux_sym_var_definition_list_repeat1, - [119197] = 6, + [119205] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7348), 1, + ACTIONS(5975), 1, anon_sym_RPAREN, - STATE(4001), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7343), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4051), 2, sym_line_comment, sym_block_comment, - [119217] = 6, - ACTIONS(3), 1, + [119225] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(5977), 1, - anon_sym_RPAREN, - ACTIONS(7350), 1, - anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7345), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, STATE(4052), 2, sym_line_comment, sym_block_comment, - [119237] = 6, + [119245] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7352), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7345), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, STATE(4053), 2, sym_line_comment, sym_block_comment, - [119257] = 6, - ACTIONS(3), 1, + [119265] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_COMMA, - ACTIONS(7354), 1, - anon_sym_PIPE, - STATE(3856), 1, - aux_sym_short_lambda_repeat1, STATE(4054), 2, sym_line_comment, sym_block_comment, - [119277] = 6, - ACTIONS(3), 1, + ACTIONS(7347), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + anon_sym_STAR_SLASH, + [119281] = 6, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - sym_identifier, - ACTIONS(7358), 1, - anon_sym_LBRACE, - STATE(2740), 1, - sym__content_block, + ACTIONS(6928), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7349), 1, + anon_sym_DQUOTE, + STATE(3913), 1, + aux_sym_raw_string_literal_repeat2, STATE(4055), 2, sym_line_comment, sym_block_comment, - [119297] = 6, + [119301] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(7360), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7351), 1, + sym_identifier, + ACTIONS(7353), 1, + anon_sym_LBRACE, + STATE(2740), 1, + sym__content_block, STATE(4056), 2, sym_line_comment, sym_block_comment, - [119317] = 6, + [119321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - anon_sym_DOT, - ACTIONS(7364), 1, - anon_sym_RBRACE, - ACTIONS(7366), 1, - aux_sym_format_specifier_token1, + ACTIONS(6952), 1, + anon_sym_COMMA, + ACTIONS(7355), 1, + anon_sym_PIPE, + STATE(3856), 1, + aux_sym_short_lambda_repeat1, STATE(4057), 2, sym_line_comment, sym_block_comment, - [119337] = 6, - ACTIONS(311), 1, + [119341] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7352), 1, - anon_sym_SQUOTE, - STATE(3907), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(7357), 1, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4058), 2, sym_line_comment, sym_block_comment, - [119357] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - STATE(4059), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(7368), 3, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - anon_sym_STAR_SLASH, - [119373] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7370), 1, - anon_sym_DQUOTE, - STATE(3950), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4060), 2, - sym_line_comment, - sym_block_comment, - [119393] = 6, + [119361] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7372), 1, + ACTIONS(7359), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(4061), 2, + STATE(4059), 2, sym_line_comment, sym_block_comment, - [119413] = 6, + [119381] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7370), 1, + ACTIONS(7349), 1, anon_sym_SQUOTE, - STATE(3907), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(4062), 2, + STATE(4060), 2, sym_line_comment, sym_block_comment, - [119433] = 6, + [119401] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7374), 1, + ACTIONS(7361), 1, anon_sym_RPAREN, - STATE(4016), 1, + STATE(4003), 1, aux_sym_type_parameter_list_repeat1, - STATE(4063), 2, + STATE(4061), 2, sym_line_comment, sym_block_comment, - [119453] = 6, + [119421] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7376), 1, + ACTIONS(7363), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(4064), 2, + STATE(4062), 2, sym_line_comment, sym_block_comment, - [119473] = 6, + [119441] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(7365), 1, + anon_sym_DOT, + ACTIONS(7367), 1, + anon_sym_RBRACE, + ACTIONS(7369), 1, + aux_sym_format_specifier_token1, + STATE(4063), 2, + sym_line_comment, + sym_block_comment, + [119461] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7378), 1, + ACTIONS(7371), 1, anon_sym_RBRACK, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(4065), 2, + STATE(4064), 2, sym_line_comment, sym_block_comment, - [119493] = 6, + [119481] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(7380), 1, + ACTIONS(7373), 1, anon_sym_RBRACK, - STATE(4061), 1, + STATE(4059), 1, aux_sym_type_parameters_repeat1, - STATE(4066), 2, + STATE(4065), 2, sym_line_comment, sym_block_comment, - [119513] = 6, + [119501] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4426), 1, + ACTIONS(4424), 1, anon_sym_SEMI, - ACTIONS(5449), 1, + ACTIONS(5477), 1, anon_sym_COMMA, - STATE(4027), 1, + STATE(4021), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4067), 2, + STATE(4066), 2, sym_line_comment, sym_block_comment, - [119533] = 6, + [119521] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7382), 1, + ACTIONS(7375), 1, anon_sym_RPAREN, - STATE(4063), 1, + STATE(4061), 1, aux_sym_type_parameter_list_repeat1, - STATE(4068), 2, + STATE(4067), 2, sym_line_comment, sym_block_comment, - [119553] = 6, + [119541] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7384), 1, + ACTIONS(7377), 1, anon_sym_RPAREN, - STATE(4064), 1, + STATE(4062), 1, aux_sym_parameter_list_repeat1, - STATE(4069), 2, + STATE(4068), 2, sym_line_comment, sym_block_comment, - [119573] = 6, + [119561] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7386), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - STATE(3950), 1, + STATE(3913), 1, aux_sym_raw_string_literal_repeat2, - STATE(4070), 2, + STATE(4069), 2, sym_line_comment, sym_block_comment, - [119593] = 6, + [119581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5979), 1, + ACTIONS(5957), 1, anon_sym_RPAREN, - ACTIONS(7388), 1, + ACTIONS(7381), 1, anon_sym_COMMA, - STATE(3760), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, - STATE(4071), 2, + STATE(4070), 2, sym_line_comment, sym_block_comment, - [119613] = 6, + [119601] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7386), 1, + ACTIONS(7379), 1, anon_sym_SQUOTE, - STATE(3907), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(4072), 2, + STATE(4071), 2, sym_line_comment, sym_block_comment, - [119633] = 6, + [119621] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(7383), 1, anon_sym_COMMA, - ACTIONS(7392), 1, + ACTIONS(7385), 1, anon_sym_RPAREN, - STATE(4077), 1, + STATE(4078), 1, aux_sym_type_parameters_repeat1, - STATE(4073), 2, + STATE(4072), 2, sym_line_comment, sym_block_comment, - [119653] = 6, + [119641] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7394), 1, + ACTIONS(7387), 1, anon_sym_DQUOTE, - STATE(3953), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, + STATE(4073), 2, + sym_line_comment, + sym_block_comment, + [119661] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7387), 1, + anon_sym_SQUOTE, + STATE(3955), 1, + aux_sym_raw_string_literal_repeat1, STATE(4074), 2, sym_line_comment, sym_block_comment, - [119673] = 6, + [119681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, + ACTIONS(7389), 1, anon_sym_COMMA, - ACTIONS(7398), 1, + ACTIONS(7391), 1, anon_sym_RPAREN, - STATE(3904), 1, + STATE(3903), 1, aux_sym_type_parameters_repeat1, STATE(4075), 2, sym_line_comment, sym_block_comment, - [119693] = 6, - ACTIONS(311), 1, + [119701] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7394), 1, - anon_sym_SQUOTE, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(7393), 1, + sym_identifier, + ACTIONS(7395), 1, + anon_sym_LBRACE, + STATE(466), 1, + sym__content_block, STATE(4076), 2, sym_line_comment, sym_block_comment, - [119713] = 6, + [119721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5981), 1, - anon_sym_RPAREN, - ACTIONS(7400), 1, + ACTIONS(7397), 1, anon_sym_COMMA, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, - STATE(4077), 2, + ACTIONS(7400), 1, + anon_sym_PIPE, + STATE(4077), 3, sym_line_comment, sym_block_comment, - [119733] = 6, + aux_sym_short_lambda_repeat1, + [119739] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_COMMA, - ACTIONS(7402), 1, + ACTIONS(5987), 1, anon_sym_RPAREN, - STATE(4085), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7402), 1, + anon_sym_COMMA, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4078), 2, sym_line_comment, sym_block_comment, - [119753] = 6, + [119759] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6936), 1, anon_sym_COMMA, ACTIONS(7404), 1, anon_sym_RPAREN, - STATE(4086), 1, - aux_sym_type_parameter_list_repeat1, + STATE(4087), 1, + aux_sym_parameter_list_repeat1, STATE(4079), 2, sym_line_comment, sym_block_comment, - [119773] = 6, + [119779] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6930), 1, + anon_sym_COMMA, ACTIONS(7406), 1, - sym_identifier, - ACTIONS(7408), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym__content_block, + anon_sym_RPAREN, + STATE(4088), 1, + aux_sym_type_parameter_list_repeat1, STATE(4080), 2, sym_line_comment, sym_block_comment, - [119793] = 6, + [119799] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7410), 1, + ACTIONS(7408), 1, anon_sym_DQUOTE, - STATE(4060), 1, + STATE(4055), 1, aux_sym_raw_string_literal_repeat2, STATE(4081), 2, sym_line_comment, sym_block_comment, - [119813] = 6, + [119819] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(6924), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7408), 1, + anon_sym_SQUOTE, + STATE(4060), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4082), 2, + sym_line_comment, + sym_block_comment, + [119839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, + ACTIONS(3862), 1, + anon_sym_SEMI, + ACTIONS(5477), 1, anon_sym_COMMA, - ACTIONS(7412), 1, + STATE(4066), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4083), 2, + sym_line_comment, + sym_block_comment, + [119859] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(7410), 1, anon_sym_RBRACK, - STATE(4090), 1, + STATE(4092), 1, aux_sym_type_parameters_repeat1, - STATE(4082), 2, + STATE(4084), 2, sym_line_comment, sym_block_comment, - [119833] = 6, + [119879] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(6928), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7414), 1, + ACTIONS(7412), 1, anon_sym_DQUOTE, - STATE(4053), 1, + STATE(4052), 1, aux_sym_raw_string_literal_repeat2, - STATE(4083), 2, + STATE(4085), 2, sym_line_comment, sym_block_comment, - [119853] = 6, + [119899] = 6, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(6924), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7414), 1, + ACTIONS(7412), 1, anon_sym_SQUOTE, - STATE(4058), 1, + STATE(4053), 1, aux_sym_raw_string_literal_repeat1, - STATE(4084), 2, + STATE(4086), 2, sym_line_comment, sym_block_comment, - [119873] = 6, + [119919] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(6936), 1, anon_sym_COMMA, - ACTIONS(7416), 1, + ACTIONS(7414), 1, anon_sym_RPAREN, STATE(4023), 1, aux_sym_parameter_list_repeat1, - STATE(4085), 2, + STATE(4087), 2, sym_line_comment, sym_block_comment, - [119893] = 6, + [119939] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7418), 1, + ACTIONS(7416), 1, anon_sym_RPAREN, - STATE(4016), 1, + STATE(4003), 1, aux_sym_type_parameter_list_repeat1, - STATE(4086), 2, - sym_line_comment, - sym_block_comment, - [119913] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_SLASH, - ACTIONS(313), 1, - anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7410), 1, - anon_sym_SQUOTE, - STATE(4062), 1, - aux_sym_raw_string_literal_repeat1, - STATE(4087), 2, - sym_line_comment, - sym_block_comment, - [119933] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_SEMI, - ACTIONS(5449), 1, - anon_sym_COMMA, - STATE(4067), 1, - aux_sym_strictly_expression_list_repeat1, STATE(4088), 2, sym_line_comment, sym_block_comment, - [119953] = 6, + [119959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, + ACTIONS(7418), 1, sym_identifier, - ACTIONS(7422), 1, + ACTIONS(7420), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(1054), 1, sym__content_block, STATE(4089), 2, sym_line_comment, sym_block_comment, - [119973] = 6, + [119979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 1, - anon_sym_COMMA, + ACTIONS(7422), 1, + sym_identifier, ACTIONS(7424), 1, - anon_sym_RBRACK, - STATE(3760), 1, - aux_sym_type_parameters_repeat1, + anon_sym_LBRACE, + STATE(2435), 1, + sym__struct_body, STATE(4090), 2, sym_line_comment, sym_block_comment, - [119993] = 6, + [119999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -321754,3947 +321996,3947 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + STATE(1330), 1, + sym__content_block, STATE(4091), 2, sym_line_comment, sym_block_comment, - [120013] = 6, + [120019] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6666), 1, + anon_sym_COMMA, ACTIONS(7430), 1, - sym_identifier, - ACTIONS(7432), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym__content_block, + anon_sym_RBRACK, + STATE(3759), 1, + aux_sym_type_parameters_repeat1, STATE(4092), 2, sym_line_comment, sym_block_comment, - [120033] = 6, + [120039] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(7058), 1, sym_identifier, - ACTIONS(7434), 1, + ACTIONS(7432), 1, anon_sym_LPAREN, - STATE(1793), 1, + STATE(1797), 1, sym_const_definition, STATE(4093), 2, sym_line_comment, sym_block_comment, - [120053] = 5, + [120059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(1877), 1, - sym__enum_body, + STATE(1855), 1, + sym__struct_body, STATE(4094), 2, sym_line_comment, sym_block_comment, - [120070] = 5, + [120076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - anon_sym_LPAREN, - STATE(2484), 1, - sym_special_argument_list, + ACTIONS(5325), 1, + anon_sym_LBRACE, + STATE(2474), 1, + sym_block, STATE(4095), 2, sym_line_comment, sym_block_comment, - [120087] = 5, + [120093] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, - anon_sym_LBRACE, - STATE(2082), 1, - sym_block, + ACTIONS(7400), 2, + anon_sym_COMMA, + anon_sym_PIPE, STATE(4096), 2, sym_line_comment, sym_block_comment, - [120104] = 5, + [120108] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(1899), 1, - sym__struct_body, + STATE(1367), 1, + sym_type_initializer_body, STATE(4097), 2, sym_line_comment, sym_block_comment, - [120121] = 5, + [120125] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(1301), 1, - sym_type_initializer_body, + STATE(2083), 1, + sym_block, STATE(4098), 2, sym_line_comment, sym_block_comment, - [120138] = 5, + [120142] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_LBRACE, - STATE(2172), 1, - sym_type_initializer_body, + ACTIONS(6825), 1, + sym_identifier, + STATE(520), 1, + sym_reference_expression, STATE(4099), 2, sym_line_comment, sym_block_comment, - [120155] = 5, + [120159] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - sym_identifier, - STATE(525), 1, - sym_reference_expression, + ACTIONS(3310), 1, + anon_sym_LBRACE, + STATE(2186), 1, + sym_type_initializer_body, STATE(4100), 2, sym_line_comment, sym_block_comment, - [120172] = 5, + [120176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_LBRACE, - STATE(2039), 1, - sym__struct_body, + ACTIONS(7436), 1, + anon_sym_LPAREN, + STATE(1069), 1, + sym_special_argument_list, STATE(4101), 2, sym_line_comment, sym_block_comment, - [120189] = 5, + [120193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_LPAREN, - STATE(1070), 1, - sym_special_argument_list, + ACTIONS(5317), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_block, STATE(4102), 2, sym_line_comment, sym_block_comment, - [120206] = 5, + [120210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(1063), 1, - sym_block, + STATE(1367), 1, + sym_type_initializer_body, STATE(4103), 2, sym_line_comment, sym_block_comment, - [120223] = 5, + [120227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(1301), 1, - sym_type_initializer_body, + STATE(1390), 1, + sym_block, STATE(4104), 2, sym_line_comment, sym_block_comment, - [120240] = 5, + [120244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, + ACTIONS(7438), 1, anon_sym_LBRACE, - STATE(2172), 1, - sym_type_initializer_body, + STATE(2045), 1, + sym__struct_body, STATE(4105), 2, sym_line_comment, sym_block_comment, - [120257] = 5, + [120261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(7440), 1, anon_sym_LBRACE, - STATE(2172), 1, + STATE(2186), 1, sym_type_initializer_body, STATE(4106), 2, sym_line_comment, sym_block_comment, - [120274] = 5, + [120278] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, + ACTIONS(7442), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4107), 2, sym_line_comment, sym_block_comment, - [120291] = 5, + [120295] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(1324), 1, - sym_block, + STATE(2186), 1, + sym_type_initializer_body, STATE(4108), 2, sym_line_comment, sym_block_comment, - [120308] = 5, + [120312] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, + ACTIONS(6622), 1, anon_sym_LBRACE, - STATE(1894), 1, + STATE(1895), 1, sym__interface_body, STATE(4109), 2, sym_line_comment, sym_block_comment, - [120325] = 5, + [120329] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1893), 1, + STATE(1894), 1, sym__enum_body, STATE(4110), 2, sym_line_comment, sym_block_comment, - [120342] = 5, + [120346] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(1892), 1, + STATE(1893), 1, sym__struct_body, STATE(4111), 2, sym_line_comment, sym_block_comment, - [120359] = 5, + [120363] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1329), 1, sym_block, STATE(4112), 2, sym_line_comment, sym_block_comment, - [120376] = 4, + [120380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1995), 2, - anon_sym_SEMI, + ACTIONS(7444), 1, anon_sym_LBRACE, + STATE(1663), 1, + sym__struct_body, STATE(4113), 2, sym_line_comment, sym_block_comment, - [120391] = 5, + [120397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, + ACTIONS(7446), 1, anon_sym_LBRACE, - STATE(2750), 1, - sym_block, + STATE(2435), 1, + sym__struct_body, STATE(4114), 2, sym_line_comment, sym_block_comment, - [120408] = 5, + [120414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, + ACTIONS(5311), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + STATE(2754), 1, + sym_block, STATE(4115), 2, sym_line_comment, sym_block_comment, - [120425] = 5, + [120431] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, + ACTIONS(4649), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1661), 1, - sym__struct_body, STATE(4116), 2, sym_line_comment, sym_block_comment, - [120442] = 5, + [120446] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, - anon_sym_LBRACE, - STATE(2166), 1, - sym_block, + ACTIONS(7448), 1, + anon_sym_LPAREN, + STATE(1323), 1, + sym_special_argument_list, STATE(4117), 2, sym_line_comment, sym_block_comment, - [120459] = 5, + [120463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2751), 1, - sym__struct_body, + STATE(1791), 1, + sym__enum_body, STATE(4118), 2, sym_line_comment, sym_block_comment, - [120476] = 5, + [120480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_special_argument_list, + ACTIONS(7450), 1, + anon_sym_LBRACE, + STATE(2752), 1, + sym__struct_body, STATE(4119), 2, sym_line_comment, sym_block_comment, - [120493] = 5, + [120497] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, + ACTIONS(7452), 1, anon_sym_LBRACE, - STATE(2957), 1, - sym_block, + STATE(2435), 1, + sym__struct_body, STATE(4120), 2, sym_line_comment, sym_block_comment, - [120510] = 5, + [120514] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, + ACTIONS(6760), 1, sym_identifier, - STATE(1370), 1, + STATE(1321), 1, sym_reference_expression, STATE(4121), 2, sym_line_comment, sym_block_comment, - [120527] = 5, + [120531] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + ACTIONS(7454), 1, + sym_identifier, + STATE(2261), 1, + sym_type_reference_expression, STATE(4122), 2, sym_line_comment, sym_block_comment, - [120544] = 5, + [120548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - sym_identifier, - STATE(2781), 1, - sym_type_reference_expression, + ACTIONS(7456), 1, + anon_sym_LPAREN, + STATE(490), 1, + sym_special_argument_list, STATE(4123), 2, sym_line_comment, sym_block_comment, - [120561] = 5, + [120565] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_LBRACE, - STATE(1876), 1, - sym__interface_body, + ACTIONS(7458), 1, + sym_identifier, + STATE(2782), 1, + sym_type_reference_expression, STATE(4124), 2, sym_line_comment, sym_block_comment, - [120578] = 5, + [120582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, - sym_identifier, - STATE(2261), 1, - sym_type_reference_expression, + ACTIONS(5323), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_block, STATE(4125), 2, sym_line_comment, sym_block_comment, - [120595] = 5, + [120599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, - anon_sym_LPAREN, - STATE(491), 1, - sym_special_argument_list, + ACTIONS(7353), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym__content_block, STATE(4126), 2, sym_line_comment, sym_block_comment, - [120612] = 5, + [120616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(6622), 1, anon_sym_LBRACE, - STATE(2714), 1, - sym__content_block, + STATE(1785), 1, + sym__interface_body, STATE(4127), 2, sym_line_comment, sym_block_comment, - [120629] = 5, + [120633] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, STATE(2715), 1, sym_block, STATE(4128), 2, sym_line_comment, sym_block_comment, - [120646] = 5, + [120650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(7460), 1, anon_sym_LBRACE, - STATE(468), 1, - sym_block, + STATE(2435), 1, + sym__struct_body, STATE(4129), 2, sym_line_comment, sym_block_comment, - [120663] = 5, + [120667] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, + ACTIONS(5311), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + STATE(2952), 1, + sym_block, STATE(4130), 2, sym_line_comment, sym_block_comment, - [120680] = 4, + [120684] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 2, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(5313), 1, + anon_sym_LBRACE, + STATE(2553), 1, + sym_block, STATE(4131), 2, sym_line_comment, sym_block_comment, - [120695] = 5, + [120701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1301), 1, - sym_type_initializer_body, + STATE(1934), 1, + sym_block, STATE(4132), 2, sym_line_comment, sym_block_comment, - [120712] = 5, + [120718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(2573), 1, - sym_block, + STATE(1367), 1, + sym_type_initializer_body, STATE(4133), 2, sym_line_comment, sym_block_comment, - [120729] = 5, + [120735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5038), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(1938), 1, + STATE(1278), 1, sym_block, STATE(4134), 2, sym_line_comment, sym_block_comment, - [120746] = 5, + [120752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(7462), 1, anon_sym_LBRACE, - STATE(1287), 1, - sym_block, + STATE(2435), 1, + sym__struct_body, STATE(4135), 2, sym_line_comment, sym_block_comment, - [120763] = 5, + [120769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, + ACTIONS(7464), 1, anon_sym_LBRACE, - STATE(1301), 1, - sym_type_initializer_body, + STATE(2362), 1, + sym__struct_body, STATE(4136), 2, sym_line_comment, sym_block_comment, - [120780] = 5, + [120786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(2327), 1, - sym__struct_body, + STATE(1367), 1, + sym_type_initializer_body, STATE(4137), 2, sym_line_comment, sym_block_comment, - [120797] = 5, + [120803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + STATE(1395), 1, + sym_block, STATE(4138), 2, sym_line_comment, sym_block_comment, - [120814] = 5, + [120820] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym__content_block, + ACTIONS(5221), 1, + sym_identifier, + ACTIONS(7466), 1, + anon_sym_volatile, STATE(4139), 2, sym_line_comment, sym_block_comment, - [120831] = 5, + [120837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, + ACTIONS(7468), 1, sym_identifier, - STATE(1944), 1, + STATE(1945), 1, sym_label_reference, STATE(4140), 2, sym_line_comment, sym_block_comment, - [120848] = 5, + [120854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, + ACTIONS(7470), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4141), 2, sym_line_comment, sym_block_comment, - [120865] = 5, + [120871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, + ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(2729), 1, - sym_type_initializer_body, + STATE(1398), 1, + sym__content_block, STATE(4142), 2, sym_line_comment, sym_block_comment, - [120882] = 5, + [120888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - STATE(2741), 1, - sym_block, + STATE(2729), 1, + sym_type_initializer_body, STATE(4143), 2, sym_line_comment, sym_block_comment, - [120899] = 5, + [120905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - STATE(1020), 1, - sym_type_initializer_body, + STATE(2741), 1, + sym_block, STATE(4144), 2, sym_line_comment, sym_block_comment, - [120916] = 5, + [120922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(2202), 1, + STATE(2176), 1, sym_block, STATE(4145), 2, sym_line_comment, sym_block_comment, - [120933] = 5, + [120939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, + ACTIONS(7474), 1, anon_sym_LBRACE, - STATE(2956), 1, - sym__content_block, + STATE(1021), 1, + sym_type_initializer_body, STATE(4146), 2, sym_line_comment, sym_block_comment, - [120950] = 5, + [120956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, + ACTIONS(7476), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4147), 2, sym_line_comment, sym_block_comment, - [120967] = 5, + [120973] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5227), 1, - sym_identifier, - ACTIONS(7480), 1, - anon_sym_volatile, + ACTIONS(7341), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4148), 2, sym_line_comment, sym_block_comment, - [120984] = 4, + [120988] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7186), 1, + anon_sym_LBRACE, + STATE(2955), 1, + sym__content_block, STATE(4149), 2, sym_line_comment, sym_block_comment, - [120999] = 5, + [121005] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, - anon_sym_LBRACE, - STATE(2902), 1, - sym__struct_body, + ACTIONS(7478), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4150), 2, sym_line_comment, sym_block_comment, - [121016] = 4, + [121020] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(7480), 1, + anon_sym_LBRACE, + STATE(2902), 1, + sym__struct_body, STATE(4151), 2, sym_line_comment, sym_block_comment, - [121031] = 5, + [121037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(1029), 1, + STATE(1030), 1, sym_block, STATE(4152), 2, sym_line_comment, sym_block_comment, - [121048] = 5, + [121054] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(1305), 1, + STATE(1310), 1, sym_block, STATE(4153), 2, sym_line_comment, sym_block_comment, - [121065] = 5, + [121071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, + ACTIONS(7482), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4154), 2, sym_line_comment, sym_block_comment, - [121082] = 5, + [121088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - sym_identifier, - STATE(2822), 1, - sym_type_reference_expression, + ACTIONS(3310), 1, + anon_sym_LBRACE, + STATE(1021), 1, + sym_type_initializer_body, STATE(4155), 2, sym_line_comment, sym_block_comment, - [121099] = 5, + [121105] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_type_initializer_body, + ACTIONS(7484), 1, + sym_identifier, + STATE(2822), 1, + sym_type_reference_expression, STATE(4156), 2, sym_line_comment, sym_block_comment, - [121116] = 5, + [121122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, + ACTIONS(7486), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4157), 2, sym_line_comment, sym_block_comment, - [121133] = 5, + [121139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - anon_sym_LPAREN, - STATE(1307), 1, - sym_argument_list, + ACTIONS(6628), 1, + anon_sym_LBRACE, + STATE(1851), 1, + sym__struct_body, STATE(4158), 2, sym_line_comment, sym_block_comment, - [121150] = 4, + [121156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7488), 1, + anon_sym_LPAREN, + STATE(1365), 1, + sym_argument_list, STATE(4159), 2, sym_line_comment, sym_block_comment, - [121165] = 5, + [121173] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, - anon_sym_LBRACE, - STATE(1811), 1, - sym__struct_body, + ACTIONS(7286), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4160), 2, sym_line_comment, sym_block_comment, - [121182] = 5, + [121188] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(1885), 1, + STATE(1813), 1, sym_block, STATE(4161), 2, sym_line_comment, sym_block_comment, - [121199] = 5, + [121205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, - anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + ACTIONS(7490), 1, + sym_identifier, + STATE(1635), 1, + sym_type_reference_expression, STATE(4162), 2, sym_line_comment, sym_block_comment, - [121216] = 5, + [121222] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - sym_identifier, - STATE(1636), 1, - sym_type_reference_expression, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2435), 1, + sym__struct_body, STATE(4163), 2, sym_line_comment, sym_block_comment, - [121233] = 5, + [121239] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - sym_identifier, - STATE(1879), 1, - sym_label_reference, + ACTIONS(2035), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(4164), 2, sym_line_comment, sym_block_comment, - [121250] = 5, + [121254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_type_initializer_body, + ACTIONS(7494), 1, + sym_identifier, + STATE(1793), 1, + sym_label_reference, STATE(4165), 2, sym_line_comment, sym_block_comment, - [121267] = 5, + [121271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(7474), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + STATE(1021), 1, + sym_type_initializer_body, STATE(4166), 2, sym_line_comment, sym_block_comment, - [121284] = 5, + [121288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(7424), 1, anon_sym_LBRACE, - STATE(1020), 1, - sym_type_initializer_body, + STATE(2435), 1, + sym__struct_body, STATE(4167), 2, sym_line_comment, sym_block_comment, - [121301] = 5, + [121305] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(996), 1, - sym_block, + STATE(1021), 1, + sym_type_initializer_body, STATE(4168), 2, sym_line_comment, sym_block_comment, - [121318] = 5, + [121322] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(996), 1, sym_block, STATE(4169), 2, sym_line_comment, sym_block_comment, - [121335] = 5, + [121339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(2807), 1, + STATE(1051), 1, sym_block, STATE(4170), 2, sym_line_comment, sym_block_comment, - [121352] = 5, + [121356] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(2113), 1, + STATE(2114), 1, sym_block, STATE(4171), 2, sym_line_comment, sym_block_comment, - [121369] = 5, + [121373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, + ACTIONS(7420), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1053), 1, sym__content_block, STATE(4172), 2, sym_line_comment, sym_block_comment, - [121386] = 5, + [121390] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5044), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, - STATE(2116), 1, + STATE(2117), 1, sym_argument_list, STATE(4173), 2, sym_line_comment, sym_block_comment, - [121403] = 5, + [121407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, + ACTIONS(7496), 1, sym_identifier, - STATE(2068), 1, + STATE(2086), 1, sym_type_reference_expression, STATE(4174), 2, sym_line_comment, sym_block_comment, - [121420] = 5, + [121424] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + ACTIONS(7498), 1, + anon_sym_COMMA, + ACTIONS(7500), 1, + anon_sym_RPAREN, STATE(4175), 2, sym_line_comment, sym_block_comment, - [121437] = 4, + [121441] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4639), 2, - anon_sym_SEMI, + ACTIONS(7502), 1, anon_sym_LBRACE, + STATE(370), 1, + sym_type_initializer_body, STATE(4176), 2, sym_line_comment, sym_block_comment, - [121452] = 5, + [121458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1405), 1, + STATE(1937), 1, sym_block, STATE(4177), 2, sym_line_comment, sym_block_comment, - [121469] = 5, + [121475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5038), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1935), 1, + STATE(1948), 1, sym_block, STATE(4178), 2, sym_line_comment, sym_block_comment, - [121486] = 5, + [121492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, - anon_sym_COMMA, - ACTIONS(7506), 1, - anon_sym_RPAREN, + ACTIONS(5313), 1, + anon_sym_LBRACE, + STATE(2797), 1, + sym_block, STATE(4179), 2, sym_line_comment, sym_block_comment, - [121503] = 5, + [121509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5038), 1, + ACTIONS(7504), 1, anon_sym_LBRACE, - STATE(1937), 1, - sym_block, + STATE(1931), 1, + sym__content_block, STATE(4180), 2, sym_line_comment, sym_block_comment, - [121520] = 5, + [121526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(1943), 1, - sym__content_block, + STATE(2124), 1, + sym_block, STATE(4181), 2, sym_line_comment, sym_block_comment, - [121537] = 5, + [121543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(2123), 1, + STATE(1074), 1, sym_block, STATE(4182), 2, sym_line_comment, sym_block_comment, - [121554] = 5, + [121560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(2124), 1, + STATE(2125), 1, sym_block, STATE(4183), 2, sym_line_comment, sym_block_comment, - [121571] = 5, + [121577] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(1401), 1, + STATE(2218), 1, sym_block, STATE(4184), 2, sym_line_comment, sym_block_comment, - [121588] = 5, + [121594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_block, + ACTIONS(7506), 1, + anon_sym_LPAREN, + STATE(1077), 1, + sym_argument_list, STATE(4185), 2, sym_line_comment, sym_block_comment, - [121605] = 5, + [121611] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - STATE(2252), 1, + STATE(2240), 1, sym_block, STATE(4186), 2, sym_line_comment, sym_block_comment, - [121622] = 5, + [121628] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, - anon_sym_LPAREN, - STATE(1076), 1, - sym_argument_list, + ACTIONS(7510), 1, + sym_identifier, + STATE(1774), 1, + sym_type_reference_expression, STATE(4187), 2, sym_line_comment, sym_block_comment, - [121639] = 5, + [121645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7508), 1, anon_sym_LBRACE, - STATE(2256), 1, + STATE(2249), 1, sym_block, STATE(4188), 2, sym_line_comment, sym_block_comment, - [121656] = 4, + [121662] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5329), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_block, STATE(4189), 2, sym_line_comment, sym_block_comment, - [121671] = 5, + [121679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - sym_identifier, - STATE(1770), 1, - sym_type_reference_expression, + ACTIONS(5327), 1, + anon_sym_LBRACE, + STATE(2213), 1, + sym_block, STATE(4190), 2, sym_line_comment, sym_block_comment, - [121688] = 5, + [121696] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4191), 2, sym_line_comment, sym_block_comment, - [121705] = 5, + [121713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, + ACTIONS(7514), 1, anon_sym_COMMA, - ACTIONS(7520), 1, + ACTIONS(7516), 1, anon_sym_RPAREN, STATE(4192), 2, sym_line_comment, sym_block_comment, - [121722] = 5, + [121730] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, - anon_sym_LBRACE, - STATE(1088), 1, - sym_block, + ACTIONS(7518), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4193), 2, sym_line_comment, sym_block_comment, - [121739] = 5, + [121745] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(2168), 1, + STATE(1089), 1, sym_block, STATE(4194), 2, sym_line_comment, sym_block_comment, - [121756] = 4, + [121762] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7522), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4195), 2, sym_line_comment, sym_block_comment, - [121771] = 5, + [121777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5329), 1, anon_sym_LBRACE, - STATE(1089), 1, + STATE(1401), 1, sym_block, STATE(4196), 2, sym_line_comment, sym_block_comment, - [121788] = 5, + [121794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7524), 1, - anon_sym_COMMA, - ACTIONS(7526), 1, - anon_sym_RPAREN, + ACTIONS(5317), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_block, STATE(4197), 2, sym_line_comment, sym_block_comment, - [121805] = 4, + [121811] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7277), 2, + ACTIONS(7272), 2, anon_sym_SEMI, anon_sym_RBRACK, STATE(4198), 2, sym_line_comment, sym_block_comment, - [121820] = 4, + [121826] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7528), 2, + ACTIONS(7520), 2, anon_sym_SEMI, anon_sym_RBRACK, STATE(4199), 2, sym_line_comment, sym_block_comment, - [121835] = 5, + [121841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - anon_sym_RBRACE, - ACTIONS(7366), 1, - aux_sym_format_specifier_token1, + ACTIONS(5331), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_block, STATE(4200), 2, sym_line_comment, sym_block_comment, - [121852] = 5, + [121858] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7530), 1, - anon_sym_COMMA, - ACTIONS(7532), 1, - anon_sym_RPAREN, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7522), 1, + sym_identifier, + STATE(1711), 1, + sym_type_reference_expression, STATE(4201), 2, sym_line_comment, sym_block_comment, - [121869] = 5, + [121875] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7534), 1, + ACTIONS(7524), 1, anon_sym_COMMA, - ACTIONS(7536), 1, + ACTIONS(7526), 1, anon_sym_RPAREN, STATE(4202), 2, sym_line_comment, sym_block_comment, - [121886] = 5, + [121892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_identifier, - STATE(3841), 1, - sym_generic_parameter, + ACTIONS(5002), 1, + anon_sym_LPAREN, + STATE(2204), 1, + sym_argument_list, STATE(4203), 2, sym_line_comment, sym_block_comment, - [121903] = 4, + [121909] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4643), 2, - anon_sym_SEMI, + ACTIONS(5327), 1, anon_sym_LBRACE, + STATE(2184), 1, + sym_block, STATE(4204), 2, sym_line_comment, sym_block_comment, - [121918] = 5, + [121926] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7538), 1, - sym_identifier, - STATE(1710), 1, - sym_type_reference_expression, + ACTIONS(4653), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(4205), 2, sym_line_comment, sym_block_comment, - [121935] = 4, + [121941] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5791), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(7367), 1, + anon_sym_RBRACE, + ACTIONS(7369), 1, + aux_sym_format_specifier_token1, STATE(4206), 2, sym_line_comment, sym_block_comment, - [121950] = 5, + [121958] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, - anon_sym_LPAREN, - STATE(2161), 1, - sym_argument_list, + ACTIONS(5751), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, STATE(4207), 2, sym_line_comment, sym_block_comment, - [121967] = 5, + [121973] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, - anon_sym_LBRACE, - STATE(2159), 1, - sym_block, + ACTIONS(6817), 2, + anon_sym_RBRACE, + sym_identifier, STATE(4208), 2, sym_line_comment, sym_block_comment, - [121984] = 4, + [121988] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 2, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(7528), 1, + anon_sym_COMMA, + ACTIONS(7530), 1, + anon_sym_RPAREN, STATE(4209), 2, sym_line_comment, sym_block_comment, - [121999] = 5, + [122005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(7230), 1, anon_sym_LBRACE, - STATE(348), 1, - sym_block, + STATE(2162), 1, + sym__content_block, STATE(4210), 2, sym_line_comment, sym_block_comment, - [122016] = 5, + [122022] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, - anon_sym_LBRACE, - STATE(2149), 1, - sym_block, + ACTIONS(7532), 1, + anon_sym_COMMA, + ACTIONS(7534), 1, + anon_sym_RPAREN, STATE(4211), 2, sym_line_comment, sym_block_comment, - [122033] = 5, + [122039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + STATE(2158), 1, + sym_block, STATE(4212), 2, sym_line_comment, sym_block_comment, - [122050] = 4, + [122056] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7540), 2, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6758), 1, + sym_identifier, + STATE(3842), 1, + sym_generic_parameter, STATE(4213), 2, sym_line_comment, sym_block_comment, - [122065] = 5, + [122073] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(2144), 1, - sym__content_block, + STATE(1999), 1, + sym_block, STATE(4214), 2, sym_line_comment, sym_block_comment, - [122082] = 5, + [122090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(2136), 1, - sym_block, + STATE(2142), 1, + sym_type_initializer_body, STATE(4215), 2, sym_line_comment, sym_block_comment, - [122099] = 5, + [122107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(7536), 1, anon_sym_LBRACE, - STATE(2008), 1, - sym_block, + STATE(2142), 1, + sym_type_initializer_body, STATE(4216), 2, sym_line_comment, sym_block_comment, - [122116] = 5, + [122124] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7542), 1, + ACTIONS(7538), 2, anon_sym_LBRACE, - STATE(2452), 1, - sym__struct_body, + anon_sym_COMMA, STATE(4217), 2, sym_line_comment, sym_block_comment, - [122133] = 5, + [122139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(7540), 1, anon_sym_LBRACE, - STATE(2127), 1, - sym_type_initializer_body, + STATE(3460), 1, + sym__struct_body, STATE(4218), 2, sym_line_comment, sym_block_comment, - [122150] = 5, + [122156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(333), 1, + STATE(367), 1, sym_block, STATE(4219), 2, sym_line_comment, sym_block_comment, - [122167] = 5, + [122173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(2127), 1, - sym_type_initializer_body, + STATE(348), 1, + sym_block, STATE(4220), 2, sym_line_comment, sym_block_comment, - [122184] = 5, + [122190] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(2819), 1, - sym_block, + STATE(370), 1, + sym_type_initializer_body, STATE(4221), 2, sym_line_comment, sym_block_comment, - [122201] = 5, + [122207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7546), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(3458), 1, - sym__struct_body, + STATE(2142), 1, + sym_type_initializer_body, STATE(4222), 2, sym_line_comment, sym_block_comment, - [122218] = 4, + [122224] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7548), 2, + ACTIONS(7542), 2, anon_sym_COMMA, anon_sym_RBRACK, STATE(4223), 2, sym_line_comment, sym_block_comment, - [122233] = 5, + [122239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - STATE(2820), 1, + STATE(2819), 1, sym_block, STATE(4224), 2, sym_line_comment, sym_block_comment, - [122250] = 5, + [122256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5329), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - STATE(1006), 1, + STATE(2820), 1, sym_block, STATE(4225), 2, sym_line_comment, sym_block_comment, - [122267] = 5, + [122273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - sym_identifier, - STATE(2258), 1, - sym_reference_expression, + ACTIONS(5327), 1, + anon_sym_LBRACE, + STATE(2149), 1, + sym_block, STATE(4226), 2, sym_line_comment, sym_block_comment, - [122284] = 5, + [122290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(7536), 1, anon_sym_LBRACE, - STATE(2127), 1, + STATE(2142), 1, sym_type_initializer_body, STATE(4227), 2, sym_line_comment, sym_block_comment, - [122301] = 4, + [122307] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7550), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5277), 1, + anon_sym_LBRACE, + STATE(2150), 1, + sym_block, STATE(4228), 2, sym_line_comment, sym_block_comment, - [122316] = 5, + [122324] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7552), 1, - sym_identifier, - STATE(2138), 1, - sym_type_reference_expression, + ACTIONS(7544), 1, + anon_sym_LBRACE, + STATE(2435), 1, + sym__struct_body, STATE(4229), 2, sym_line_comment, sym_block_comment, - [122333] = 5, + [122341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, - anon_sym_LBRACE, - STATE(2133), 1, - sym_block, + ACTIONS(7546), 1, + sym_identifier, + STATE(2156), 1, + sym_type_reference_expression, STATE(4230), 2, sym_line_comment, sym_block_comment, - [122350] = 5, + [122358] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7554), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, STATE(2824), 1, sym_argument_list, STATE(4231), 2, sym_line_comment, sym_block_comment, - [122367] = 4, + [122375] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7556), 2, + ACTIONS(7550), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(4232), 2, sym_line_comment, sym_block_comment, - [122382] = 5, + [122390] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - STATE(2127), 1, - sym_type_initializer_body, + STATE(2826), 1, + sym_block, STATE(4233), 2, sym_line_comment, sym_block_comment, - [122399] = 5, + [122407] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_LBRACE, - STATE(2826), 1, - sym_block, + ACTIONS(7552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4234), 2, sym_line_comment, sym_block_comment, - [122416] = 5, + [122422] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, + ACTIONS(5317), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + STATE(1060), 1, + sym_block, STATE(4235), 2, sym_line_comment, sym_block_comment, - [122433] = 4, + [122439] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5649), 2, + ACTIONS(7554), 1, anon_sym_LBRACE, - anon_sym_COMMA, + STATE(1227), 1, + sym_type_initializer_body, STATE(4236), 2, sym_line_comment, sym_block_comment, - [122448] = 5, + [122456] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5319), 1, + ACTIONS(5647), 2, anon_sym_LBRACE, - STATE(2939), 1, - sym_block, + anon_sym_COMMA, STATE(4237), 2, sym_line_comment, sym_block_comment, - [122465] = 5, + [122471] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(7502), 1, anon_sym_LBRACE, - STATE(1666), 1, - sym_block, + STATE(370), 1, + sym_type_initializer_body, STATE(4238), 2, sym_line_comment, sym_block_comment, - [122482] = 5, + [122488] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, - STATE(1135), 1, - sym_block, + ACTIONS(7556), 1, + anon_sym_LPAREN, + STATE(2085), 1, + sym_special_argument_list, STATE(4239), 2, sym_line_comment, sym_block_comment, - [122499] = 4, + [122505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7558), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6676), 1, + sym_identifier, + STATE(2059), 1, + sym_reference_expression, STATE(4240), 2, sym_line_comment, sym_block_comment, - [122514] = 5, + [122522] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7560), 1, - anon_sym_LPAREN, - STATE(2073), 1, - sym_special_argument_list, + ACTIONS(6831), 1, + sym_identifier, + STATE(2363), 1, + sym_reference_expression, STATE(4241), 2, sym_line_comment, sym_block_comment, - [122531] = 5, + [122539] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, - STATE(2049), 1, - sym_reference_expression, + ACTIONS(7558), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4242), 2, sym_line_comment, sym_block_comment, - [122548] = 4, + [122554] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7165), 1, + anon_sym_LBRACE, + STATE(2113), 1, + sym__content_block, STATE(4243), 2, sym_line_comment, sym_block_comment, - [122563] = 5, + [122571] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_type_initializer_body, + ACTIONS(7188), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4244), 2, sym_line_comment, sym_block_comment, - [122580] = 5, + [122586] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(2227), 1, - sym__content_block, + STATE(2145), 1, + sym_block, STATE(4245), 2, sym_line_comment, sym_block_comment, - [122597] = 4, + [122603] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7562), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5311), 1, + anon_sym_LBRACE, + STATE(2937), 1, + sym_block, STATE(4246), 2, sym_line_comment, sym_block_comment, - [122612] = 5, + [122620] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7564), 1, - anon_sym_LPAREN, - STATE(2342), 1, - sym_special_argument_list, + ACTIONS(7560), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4247), 2, sym_line_comment, sym_block_comment, - [122629] = 5, + [122635] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(2215), 1, - sym_block, + STATE(370), 1, + sym_type_initializer_body, STATE(4248), 2, sym_line_comment, sym_block_comment, - [122646] = 5, + [122652] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_block, + ACTIONS(2891), 1, + anon_sym_COMMA, + ACTIONS(7562), 1, + anon_sym_RPAREN, STATE(4249), 2, sym_line_comment, sym_block_comment, - [122663] = 5, + [122669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2883), 1, - anon_sym_COMMA, - ACTIONS(7566), 1, - anon_sym_RPAREN, + ACTIONS(5323), 1, + anon_sym_LBRACE, + STATE(257), 1, + sym_block, STATE(4250), 2, sym_line_comment, sym_block_comment, - [122680] = 5, + [122686] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(1988), 1, + STATE(2007), 1, sym_block, STATE(4251), 2, sym_line_comment, sym_block_comment, - [122697] = 5, + [122703] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(423), 1, + STATE(424), 1, sym_block, STATE(4252), 2, sym_line_comment, sym_block_comment, - [122714] = 5, + [122720] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - STATE(2729), 1, - sym_type_initializer_body, + STATE(427), 1, + sym__content_block, STATE(4253), 2, sym_line_comment, sym_block_comment, - [122731] = 5, + [122737] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym__content_block, + ACTIONS(2891), 1, + anon_sym_COMMA, + ACTIONS(7564), 1, + anon_sym_RPAREN, STATE(4254), 2, sym_line_comment, sym_block_comment, - [122748] = 5, + [122754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7568), 1, + ACTIONS(7566), 1, anon_sym_LBRACE, - STATE(2946), 1, + STATE(2947), 1, sym_type_initializer_body, STATE(4255), 2, sym_line_comment, sym_block_comment, - [122765] = 5, + [122771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2883), 1, - anon_sym_COMMA, - ACTIONS(7570), 1, - anon_sym_RPAREN, + ACTIONS(6758), 1, + sym_identifier, + STATE(3981), 1, + sym_generic_parameter, STATE(4256), 2, sym_line_comment, sym_block_comment, - [122782] = 4, + [122788] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7572), 2, + ACTIONS(7568), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(4257), 2, sym_line_comment, sym_block_comment, - [122797] = 5, + [122803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - anon_sym_LBRACE, - STATE(2729), 1, - sym_type_initializer_body, + ACTIONS(7570), 1, + anon_sym_LPAREN, + STATE(2047), 1, + sym_special_argument_list, STATE(4258), 2, sym_line_comment, sym_block_comment, - [122814] = 5, + [122820] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(2344), 1, - sym_block, + STATE(2729), 1, + sym_type_initializer_body, STATE(4259), 2, sym_line_comment, sym_block_comment, - [122831] = 5, + [122837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7574), 1, - anon_sym_RBRACE, - ACTIONS(7576), 1, - aux_sym_format_specifier_token1, + ACTIONS(7472), 1, + anon_sym_LBRACE, + STATE(2729), 1, + sym_type_initializer_body, STATE(4260), 2, sym_line_comment, sym_block_comment, - [122848] = 5, + [122854] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - sym_identifier, - STATE(1032), 1, - sym_reference_expression, + ACTIONS(7572), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4261), 2, sym_line_comment, sym_block_comment, - [122865] = 5, + [122869] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7578), 1, + ACTIONS(7574), 1, anon_sym_LBRACE, - STATE(2099), 1, + STATE(2121), 1, sym__struct_body, STATE(4262), 2, sym_line_comment, sym_block_comment, - [122882] = 4, + [122886] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5329), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym_block, STATE(4263), 2, sym_line_comment, sym_block_comment, - [122897] = 5, + [122903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_block, + ACTIONS(6849), 1, + sym_identifier, + STATE(1032), 1, + sym_reference_expression, STATE(4264), 2, sym_line_comment, sym_block_comment, - [122914] = 5, + [122920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(2729), 1, - sym_type_initializer_body, + STATE(1173), 1, + sym_block, STATE(4265), 2, sym_line_comment, sym_block_comment, - [122931] = 5, + [122937] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(2849), 1, - sym_block, + STATE(2729), 1, + sym_type_initializer_body, STATE(4266), 2, sym_line_comment, sym_block_comment, - [122948] = 4, + [122954] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(5313), 1, + anon_sym_LBRACE, + STATE(2849), 1, + sym_block, STATE(4267), 2, sym_line_comment, sym_block_comment, - [122963] = 4, + [122971] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6787), 2, + anon_sym_RPAREN, + sym_identifier, STATE(4268), 2, sym_line_comment, sym_block_comment, - [122978] = 5, + [122986] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_LBRACE, - STATE(2649), 1, - sym_type_initializer_body, + ACTIONS(7159), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4269), 2, sym_line_comment, sym_block_comment, - [122995] = 5, + [123001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, + ACTIONS(7000), 1, anon_sym_LBRACE, - STATE(1174), 1, - sym_block, + STATE(2651), 1, + sym_type_initializer_body, STATE(4270), 2, sym_line_comment, sym_block_comment, - [123012] = 5, + [123018] = 5, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7582), 1, + ACTIONS(7576), 1, anon_sym_SQUOTE, - ACTIONS(7584), 1, + ACTIONS(7578), 1, aux_sym_raw_string_literal_token1, STATE(4271), 2, sym_line_comment, sym_block_comment, - [123029] = 5, + [123035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7586), 1, - anon_sym_LPAREN, - STATE(2046), 1, - sym_special_argument_list, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2355), 1, + sym_block, STATE(4272), 2, sym_line_comment, sym_block_comment, - [123046] = 4, - ACTIONS(3), 1, + [123052] = 5, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(7580), 1, + anon_sym_DQUOTE, + ACTIONS(7582), 1, + aux_sym_raw_string_literal_token2, STATE(4273), 2, sym_line_comment, sym_block_comment, - [123061] = 5, - ACTIONS(311), 1, + [123069] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7588), 1, - anon_sym_DQUOTE, - ACTIONS(7590), 1, - aux_sym_raw_string_literal_token2, + ACTIONS(6806), 2, + anon_sym_RPAREN, + sym_identifier, STATE(4274), 2, sym_line_comment, sym_block_comment, - [123078] = 5, + [123084] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5279), 1, - anon_sym_LBRACE, - STATE(2089), 1, - sym_block, + ACTIONS(7584), 1, + anon_sym_RBRACE, + ACTIONS(7586), 1, + aux_sym_format_specifier_token1, STATE(4275), 2, sym_line_comment, sym_block_comment, - [123095] = 4, + [123101] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5132), 2, + ACTIONS(5133), 2, anon_sym_COMMA, anon_sym_in, STATE(4276), 2, sym_line_comment, sym_block_comment, - [123110] = 5, + [123116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7592), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - STATE(2363), 1, - sym_type_initializer_body, + STATE(2215), 1, + sym_block, STATE(4277), 2, sym_line_comment, sym_block_comment, - [123127] = 5, + [123133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(1803), 1, + STATE(1800), 1, sym_block, STATE(4278), 2, sym_line_comment, sym_block_comment, - [123144] = 5, + [123150] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7594), 1, + ACTIONS(7588), 1, anon_sym_LPAREN, - STATE(2893), 1, + STATE(2895), 1, sym_special_argument_list, STATE(4279), 2, sym_line_comment, sym_block_comment, - [123161] = 5, + [123167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(1799), 1, + STATE(1792), 1, sym_block, STATE(4280), 2, sym_line_comment, sym_block_comment, - [123178] = 5, + [123184] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7596), 1, + ACTIONS(7590), 1, anon_sym_LBRACE, - STATE(1791), 1, + STATE(1790), 1, sym__content_block, STATE(4281), 2, sym_line_comment, sym_block_comment, - [123195] = 5, + [123201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, + ACTIONS(7084), 1, sym_identifier, - STATE(3920), 1, + STATE(3924), 1, sym_reference_expression, STATE(4282), 2, sym_line_comment, sym_block_comment, - [123212] = 5, + [123218] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7598), 1, + ACTIONS(7592), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2435), 1, sym__struct_body, STATE(4283), 2, sym_line_comment, sym_block_comment, - [123229] = 5, + [123235] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(7594), 1, anon_sym_LBRACE, - STATE(2695), 1, - sym_block, + STATE(2336), 1, + sym_type_initializer_body, STATE(4284), 2, sym_line_comment, sym_block_comment, - [123246] = 4, + [123252] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7600), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4320), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4285), 2, sym_line_comment, sym_block_comment, - [123261] = 5, + [123267] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - sym_identifier, - STATE(1462), 1, - sym_reference_expression, + ACTIONS(7596), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4286), 2, sym_line_comment, sym_block_comment, - [123278] = 5, + [123282] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - sym_identifier, - STATE(2762), 1, - sym_reference_expression, + ACTIONS(5321), 1, + anon_sym_LBRACE, + STATE(2695), 1, + sym_block, STATE(4287), 2, sym_line_comment, sym_block_comment, - [123295] = 4, + [123299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6900), 1, + sym_identifier, + STATE(2891), 1, + sym_reference_expression, STATE(4288), 2, sym_line_comment, sym_block_comment, - [123310] = 5, + [123316] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7602), 1, - anon_sym_RBRACE, - ACTIONS(7604), 1, - aux_sym_format_specifier_token1, + ACTIONS(6810), 1, + sym_identifier, + STATE(2034), 1, + sym_reference_expression, STATE(4289), 2, sym_line_comment, sym_block_comment, - [123327] = 5, + [123333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7606), 1, + ACTIONS(7598), 1, anon_sym_COMMA, - ACTIONS(7608), 1, + ACTIONS(7600), 1, anon_sym_RPAREN, STATE(4290), 2, sym_line_comment, sym_block_comment, - [123344] = 5, + [123350] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, + ACTIONS(6692), 1, sym_identifier, - STATE(2033), 1, + STATE(2477), 1, sym_reference_expression, STATE(4291), 2, sym_line_comment, sym_block_comment, - [123361] = 5, + [123367] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_LBRACE, - STATE(2314), 1, - sym_block, + ACTIONS(7602), 1, + anon_sym_LPAREN, + STATE(2500), 1, + sym_special_argument_list, STATE(4292), 2, sym_line_comment, sym_block_comment, - [123378] = 5, + [123384] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7610), 1, + ACTIONS(7604), 1, anon_sym_LPAREN, - STATE(1465), 1, - sym_special_argument_list, + STATE(482), 1, + sym_argument_list, STATE(4293), 2, sym_line_comment, sym_block_comment, - [123395] = 5, + [123401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5327), 1, - anon_sym_LBRACE, - STATE(1377), 1, - sym_block, + ACTIONS(6708), 1, + sym_identifier, + STATE(1506), 1, + sym_reference_expression, STATE(4294), 2, sym_line_comment, sym_block_comment, - [123412] = 5, + [123418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 1, - sym_identifier, - STATE(2416), 1, - sym_reference_expression, + ACTIONS(7606), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_special_argument_list, STATE(4295), 2, sym_line_comment, sym_block_comment, - [123429] = 5, + [123435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7612), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_argument_list, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2329), 1, + sym_block, STATE(4296), 2, sym_line_comment, sym_block_comment, - [123446] = 5, + [123452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(2493), 1, - sym_block, + STATE(2336), 1, + sym_type_initializer_body, STATE(4297), 2, sym_line_comment, sym_block_comment, - [123463] = 5, + [123469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1200), 1, + STATE(1193), 1, sym_block, STATE(4298), 2, sym_line_comment, sym_block_comment, - [123480] = 5, + [123486] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(2363), 1, - sym_type_initializer_body, + STATE(1194), 1, + sym_block, STATE(4299), 2, sym_line_comment, sym_block_comment, - [123497] = 5, + [123503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_block, + ACTIONS(7608), 1, + sym_identifier, + STATE(2398), 1, + sym_type_reference_expression, STATE(4300), 2, sym_line_comment, sym_block_comment, - [123514] = 5, + [123520] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7614), 1, + ACTIONS(7610), 1, anon_sym_LBRACE, - STATE(1316), 1, + STATE(1315), 1, sym__struct_body, STATE(4301), 2, sym_line_comment, sym_block_comment, - [123531] = 5, + [123537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7616), 1, - sym_identifier, - STATE(2454), 1, - sym_type_reference_expression, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_type_initializer_body, STATE(4302), 2, sym_line_comment, sym_block_comment, - [123548] = 5, + [123554] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7618), 1, + ACTIONS(7594), 1, anon_sym_LBRACE, - STATE(1681), 1, + STATE(2336), 1, sym_type_initializer_body, STATE(4303), 2, sym_line_comment, sym_block_comment, - [123565] = 5, + [123571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(7614), 1, anon_sym_LBRACE, - STATE(2625), 1, - sym_block, + STATE(450), 1, + sym__struct_body, STATE(4304), 2, sym_line_comment, sym_block_comment, - [123582] = 5, + [123588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7592), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2363), 1, - sym_type_initializer_body, + STATE(2627), 1, + sym_block, STATE(4305), 2, sym_line_comment, sym_block_comment, - [123599] = 5, + [123605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7620), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(448), 1, - sym__struct_body, + STATE(2336), 1, + sym_type_initializer_body, STATE(4306), 2, sym_line_comment, sym_block_comment, - [123616] = 5, + [123622] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(6622), 1, anon_sym_LBRACE, - STATE(2363), 1, - sym_type_initializer_body, + STATE(1827), 1, + sym__interface_body, STATE(4307), 2, sym_line_comment, sym_block_comment, - [123633] = 5, + [123639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7622), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1481), 1, - sym_type_initializer_body, + STATE(1495), 1, + sym_block, STATE(4308), 2, sym_line_comment, sym_block_comment, - [123650] = 5, + [123656] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_LBRACE, - STATE(2239), 1, - sym_block, + ACTIONS(7616), 1, + sym_identifier, + STATE(1024), 1, + sym_type_reference_expression, STATE(4309), 2, sym_line_comment, sym_block_comment, - [123667] = 5, + [123673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7624), 1, - sym_identifier, - STATE(1025), 1, - sym_type_reference_expression, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2239), 1, + sym_block, STATE(4310), 2, sym_line_comment, sym_block_comment, - [123684] = 5, + [123690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, - anon_sym_LBRACE, - STATE(2390), 1, - sym_block, + ACTIONS(7618), 1, + anon_sym_LPAREN, + STATE(1197), 1, + sym_argument_list, STATE(4311), 2, sym_line_comment, sym_block_comment, - [123701] = 5, + [123707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1806), 1, - sym__interface_body, + STATE(1832), 1, + sym__enum_body, STATE(4312), 2, sym_line_comment, sym_block_comment, - [123718] = 5, + [123724] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(1807), 1, - sym__enum_body, + STATE(2389), 1, + sym_block, STATE(4313), 2, sym_line_comment, sym_block_comment, - [123735] = 5, + [123741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7626), 1, - anon_sym_LPAREN, - STATE(1205), 1, - sym_argument_list, + ACTIONS(6628), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym__struct_body, STATE(4314), 2, sym_line_comment, sym_block_comment, - [123752] = 5, + [123758] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1209), 1, + STATE(1199), 1, sym_block, STATE(4315), 2, sym_line_comment, sym_block_comment, - [123769] = 5, + [123775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(2285), 1, + STATE(2403), 1, sym_block, STATE(4316), 2, sym_line_comment, sym_block_comment, - [123786] = 5, + [123792] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - STATE(2397), 1, - sym_block, + STATE(2401), 1, + sym__content_block, STATE(4317), 2, sym_line_comment, sym_block_comment, - [123803] = 5, + [123809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7628), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, - anon_sym_RPAREN, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2315), 1, + sym_block, STATE(4318), 2, sym_line_comment, sym_block_comment, - [123820] = 4, + [123826] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(7620), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_type_initializer_body, STATE(4319), 2, sym_line_comment, sym_block_comment, - [123835] = 5, + [123843] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_block, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4320), 2, sym_line_comment, sym_block_comment, - [123852] = 5, + [123858] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_LBRACE, - STATE(2403), 1, - sym__content_block, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, + anon_sym_RPAREN, STATE(4321), 2, sym_line_comment, sym_block_comment, - [123869] = 5, + [123875] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - STATE(1220), 1, + STATE(1208), 1, sym__content_block, STATE(4322), 2, sym_line_comment, sym_block_comment, - [123886] = 5, + [123892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1826), 1, - sym__struct_body, + STATE(1211), 1, + sym_block, STATE(4323), 2, sym_line_comment, sym_block_comment, - [123903] = 5, + [123909] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1222), 1, + STATE(1135), 1, sym_block, STATE(4324), 2, sym_line_comment, sym_block_comment, - [123920] = 5, + [123926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, - anon_sym_LBRACE, - STATE(2694), 1, - sym_block, + ACTIONS(7626), 1, + anon_sym_RBRACE, + ACTIONS(7628), 1, + aux_sym_format_specifier_token1, STATE(4325), 2, sym_line_comment, sym_block_comment, - [123937] = 5, + [123943] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(2361), 1, - sym__content_block, + STATE(1227), 1, + sym_type_initializer_body, STATE(4326), 2, sym_line_comment, sym_block_comment, - [123954] = 5, + [123960] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(7140), 1, anon_sym_LBRACE, - STATE(1254), 1, - sym_type_initializer_body, + STATE(2313), 1, + sym__content_block, STATE(4327), 2, sym_line_comment, sym_block_comment, - [123971] = 5, + [123977] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7632), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(1254), 1, - sym_type_initializer_body, + STATE(2421), 1, + sym_block, STATE(4328), 2, sym_line_comment, sym_block_comment, - [123988] = 5, + [123994] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2455), 1, + STATE(2692), 1, sym_block, STATE(4329), 2, sym_line_comment, sym_block_comment, - [124005] = 5, + [124011] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_LPAREN, - STATE(2433), 1, - sym_argument_list, + ACTIONS(7630), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym__struct_body, STATE(4330), 2, sym_line_comment, sym_block_comment, - [124022] = 5, + [124028] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7634), 1, - sym_identifier, - STATE(3427), 1, - sym_type_reference_expression, + ACTIONS(5253), 1, + anon_sym_LPAREN, + STATE(2440), 1, + sym_argument_list, STATE(4331), 2, sym_line_comment, sym_block_comment, - [124039] = 5, + [124045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7636), 1, - anon_sym_LBRACE, - STATE(1723), 1, - sym__struct_body, + ACTIONS(7632), 1, + sym_identifier, + STATE(3424), 1, + sym_type_reference_expression, STATE(4332), 2, sym_line_comment, sym_block_comment, - [124056] = 5, + [124062] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(2466), 1, + STATE(2433), 1, sym_block, STATE(4333), 2, sym_line_comment, sym_block_comment, - [124073] = 5, + [124079] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(1481), 1, - sym_type_initializer_body, + STATE(2436), 1, + sym_block, STATE(4334), 2, sym_line_comment, sym_block_comment, - [124090] = 4, + [124096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(3310), 1, + anon_sym_LBRACE, + STATE(1227), 1, + sym_type_initializer_body, STATE(4335), 2, sym_line_comment, sym_block_comment, - [124105] = 5, + [124113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1254), 1, - sym_type_initializer_body, + STATE(1508), 1, + sym_block, STATE(4336), 2, sym_line_comment, sym_block_comment, - [124122] = 5, + [124130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1220), 1, sym_block, STATE(4337), 2, sym_line_comment, sym_block_comment, - [124139] = 5, + [124147] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7638), 1, - sym_identifier, - STATE(1458), 1, - sym_type_reference_expression, + ACTIONS(7554), 1, + anon_sym_LBRACE, + STATE(1227), 1, + sym_type_initializer_body, STATE(4338), 2, sym_line_comment, sym_block_comment, - [124156] = 5, + [124164] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7632), 1, + ACTIONS(3310), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(1471), 1, sym_type_initializer_body, STATE(4339), 2, sym_line_comment, sym_block_comment, - [124173] = 5, + [124181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5337), 1, - anon_sym_LPAREN, - STATE(2698), 1, - sym_argument_list, + ACTIONS(7634), 1, + sym_identifier, + STATE(1482), 1, + sym_type_reference_expression, STATE(4340), 2, sym_line_comment, sym_block_comment, - [124190] = 5, + [124198] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, - anon_sym_LBRACE, - STATE(2406), 1, - sym_block, + ACTIONS(5351), 1, + anon_sym_LPAREN, + STATE(2697), 1, + sym_argument_list, STATE(4341), 2, sym_line_comment, sym_block_comment, - [124207] = 5, + [124215] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7640), 1, + ACTIONS(5319), 1, anon_sym_LBRACE, - STATE(1238), 1, - sym__struct_body, + STATE(2286), 1, + sym_block, STATE(4342), 2, sym_line_comment, sym_block_comment, - [124224] = 5, + [124232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2310), 1, + STATE(2702), 1, sym_block, STATE(4343), 2, sym_line_comment, sym_block_comment, - [124241] = 5, + [124249] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(1507), 1, sym_block, STATE(4344), 2, sym_line_comment, sym_block_comment, - [124258] = 5, + [124266] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7642), 1, - anon_sym_LPAREN, - STATE(2325), 1, - sym_argument_list, + ACTIONS(7011), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, STATE(4345), 2, sym_line_comment, sym_block_comment, - [124275] = 5, + [124281] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7644), 1, - sym_identifier, - STATE(1362), 1, - sym_type_reference_expression, + ACTIONS(7636), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_argument_list, STATE(4346), 2, sym_line_comment, sym_block_comment, - [124292] = 5, + [124298] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, - anon_sym_LBRACE, - STATE(2253), 1, - sym_block, + ACTIONS(7638), 1, + anon_sym_COMMA, + ACTIONS(7640), 1, + anon_sym_RPAREN, STATE(4347), 2, sym_line_comment, sym_block_comment, - [124309] = 5, + [124315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7646), 1, - anon_sym_COMMA, - ACTIONS(7648), 1, - anon_sym_RPAREN, + ACTIONS(7508), 1, + anon_sym_LBRACE, + STATE(2246), 1, + sym_block, STATE(4348), 2, sym_line_comment, sym_block_comment, - [124326] = 5, + [124332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5321), 1, + ACTIONS(5325), 1, anon_sym_LBRACE, - STATE(2083), 1, + STATE(4658), 1, sym_block, STATE(4349), 2, sym_line_comment, sym_block_comment, - [124343] = 5, + [124349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7650), 1, - anon_sym_LPAREN, - STATE(1184), 1, - sym_special_argument_list, + ACTIONS(5327), 1, + anon_sym_LBRACE, + STATE(2092), 1, + sym_block, STATE(4350), 2, sym_line_comment, sym_block_comment, - [124360] = 5, + [124366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7622), 1, - anon_sym_LBRACE, - STATE(1481), 1, - sym_type_initializer_body, + ACTIONS(7642), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_special_argument_list, STATE(4351), 2, sym_line_comment, sym_block_comment, - [124377] = 5, + [124383] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6676), 1, + ACTIONS(6894), 1, sym_identifier, - STATE(1230), 1, + STATE(1248), 1, sym_reference_expression, STATE(4352), 2, sym_line_comment, sym_block_comment, - [124394] = 5, + [124400] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(7644), 1, anon_sym_LBRACE, - STATE(4657), 1, - sym_block, + STATE(1218), 1, + sym__struct_body, STATE(4353), 2, sym_line_comment, sym_block_comment, - [124411] = 5, + [124417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, + ACTIONS(6684), 1, sym_identifier, - STATE(3674), 1, + STATE(3671), 1, sym_import_name, STATE(4354), 2, sym_line_comment, sym_block_comment, - [124428] = 5, + [124434] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - sym_identifier, - STATE(3647), 1, - sym_reference_expression, + ACTIONS(7620), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_type_initializer_body, STATE(4355), 2, sym_line_comment, sym_block_comment, - [124445] = 5, + [124451] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, - anon_sym_LBRACE, - STATE(1481), 1, - sym_type_initializer_body, + ACTIONS(6849), 1, + sym_identifier, + STATE(3656), 1, + sym_reference_expression, STATE(4356), 2, sym_line_comment, sym_block_comment, - [124462] = 5, + [124468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym_block, + ACTIONS(7646), 1, + sym_identifier, + STATE(1378), 1, + sym_type_reference_expression, STATE(4357), 2, sym_line_comment, sym_block_comment, - [124479] = 5, + [124485] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - STATE(3614), 1, - sym_import_name, + ACTIONS(3302), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_type_initializer_body, STATE(4358), 2, sym_line_comment, sym_block_comment, - [124496] = 5, + [124502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_LBRACE, - STATE(2266), 1, - sym_block, + ACTIONS(6684), 1, + sym_identifier, + STATE(3518), 1, + sym_import_name, STATE(4359), 2, sym_line_comment, sym_block_comment, - [124513] = 5, + [124519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5319), 1, anon_sym_LBRACE, - STATE(2267), 1, + STATE(2266), 1, sym_block, STATE(4360), 2, sym_line_comment, sym_block_comment, - [124530] = 5, + [124536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(5319), 1, anon_sym_LBRACE, - STATE(1423), 1, + STATE(2267), 1, sym_block, STATE(4361), 2, sym_line_comment, sym_block_comment, - [124547] = 5, + [124553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1490), 1, + STATE(1424), 1, sym_block, STATE(4362), 2, sym_line_comment, sym_block_comment, - [124564] = 5, + [124570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1492), 1, - sym__content_block, + STATE(1439), 1, + sym_block, STATE(4363), 2, sym_line_comment, sym_block_comment, - [124581] = 5, + [124587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - anon_sym_LBRACE, - STATE(2657), 1, - sym__content_block, + ACTIONS(7648), 1, + anon_sym_COMMA, + ACTIONS(7650), 1, + anon_sym_RPAREN, STATE(4364), 2, sym_line_comment, sym_block_comment, - [124598] = 5, + [124604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7652), 1, - anon_sym_COMMA, - ACTIONS(7654), 1, - anon_sym_RPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACE, + STATE(2492), 1, + sym_block, STATE(4365), 2, sym_line_comment, sym_block_comment, - [124615] = 5, + [124621] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5333), 1, + ACTIONS(6970), 1, anon_sym_LBRACE, - STATE(2490), 1, - sym_block, + STATE(2659), 1, + sym__content_block, STATE(4366), 2, sym_line_comment, sym_block_comment, - [124632] = 5, + [124638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7656), 1, + ACTIONS(7652), 1, anon_sym_COMMA, - ACTIONS(7658), 1, + ACTIONS(7654), 1, anon_sym_RPAREN, STATE(4367), 2, sym_line_comment, sym_block_comment, - [124649] = 5, + [124655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7660), 1, - anon_sym_COMMA, - ACTIONS(7662), 1, - anon_sym_RPAREN, + ACTIONS(7656), 1, + anon_sym_LPAREN, + STATE(2357), 1, + sym_special_argument_list, STATE(4368), 2, sym_line_comment, sym_block_comment, - [124666] = 5, + [124672] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_block, + ACTIONS(7658), 1, + anon_sym_COMMA, + ACTIONS(7660), 1, + anon_sym_RPAREN, STATE(4369), 2, sym_line_comment, sym_block_comment, - [124683] = 5, + [124689] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_identifier, - STATE(3982), 1, - sym_generic_parameter, + ACTIONS(5321), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_block, STATE(4370), 2, sym_line_comment, sym_block_comment, - [124700] = 5, + [124706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - STATE(2565), 1, + STATE(1603), 1, sym_block, STATE(4371), 2, sym_line_comment, sym_block_comment, - [124717] = 5, + [124723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(7090), 1, anon_sym_LBRACE, - STATE(1606), 1, - sym_block, + STATE(1442), 1, + sym__content_block, STATE(4372), 2, sym_line_comment, sym_block_comment, - [124734] = 5, + [124740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(6622), 1, anon_sym_LBRACE, - STATE(478), 1, - sym_block, + STATE(1866), 1, + sym__interface_body, STATE(4373), 2, sym_line_comment, sym_block_comment, - [124751] = 5, + [124757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2291), 1, + STATE(2549), 1, sym_block, STATE(4374), 2, sym_line_comment, sym_block_comment, - [124768] = 5, + [124774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_block, + ACTIONS(7662), 1, + anon_sym_LPAREN, + STATE(1664), 1, + sym_special_argument_list, STATE(4375), 2, sym_line_comment, sym_block_comment, - [124785] = 5, + [124791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(1861), 1, - sym__interface_body, + STATE(479), 1, + sym_block, STATE(4376), 2, sym_line_comment, sym_block_comment, - [124802] = 5, + [124808] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(1657), 1, + STATE(1660), 1, sym_reference_expression, STATE(4377), 2, sym_line_comment, sym_block_comment, - [124819] = 5, + [124825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7664), 1, - anon_sym_LPAREN, - STATE(1659), 1, - sym_special_argument_list, + ACTIONS(5319), 1, + anon_sym_LBRACE, + STATE(2292), 1, + sym_block, STATE(4378), 2, sym_line_comment, sym_block_comment, - [124836] = 4, + [124842] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 2, + ACTIONS(7177), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(4379), 2, sym_line_comment, sym_block_comment, - [124851] = 5, + [124857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(5309), 1, anon_sym_LBRACE, - STATE(1467), 1, + STATE(1242), 1, sym_block, STATE(4380), 2, sym_line_comment, sym_block_comment, - [124868] = 5, + [124874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(2449), 1, - sym_type_initializer_body, + STATE(1474), 1, + sym_block, STATE(4381), 2, sym_line_comment, sym_block_comment, - [124885] = 5, + [124891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, + ACTIONS(6780), 1, sym_identifier, STATE(2778), 1, sym_reference_expression, STATE(4382), 2, sym_line_comment, sym_block_comment, - [124902] = 5, + [124908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(6664), 1, anon_sym_LBRACE, - STATE(1676), 1, - sym_block, + STATE(2419), 1, + sym_type_initializer_body, STATE(4383), 2, sym_line_comment, sym_block_comment, - [124919] = 5, + [124925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - STATE(1873), 1, - sym__enum_body, + STATE(1666), 1, + sym_block, STATE(4384), 2, sym_line_comment, sym_block_comment, - [124936] = 5, + [124942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7666), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1545), 1, - sym__struct_body, + STATE(1885), 1, + sym__enum_body, STATE(4385), 2, sym_line_comment, sym_block_comment, - [124953] = 5, + [124959] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_type_initializer_body, + ACTIONS(7664), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4386), 2, sym_line_comment, sym_block_comment, - [124970] = 4, + [124974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7668), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6692), 1, + sym_identifier, + STATE(4223), 1, + sym_reference_expression, STATE(4387), 2, sym_line_comment, sym_block_comment, - [124985] = 5, + [124991] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 1, - sym_identifier, - STATE(4223), 1, - sym_reference_expression, + ACTIONS(3310), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_type_initializer_body, STATE(4388), 2, sym_line_comment, sym_block_comment, - [125002] = 5, + [125008] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, + ACTIONS(7666), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1531), 1, sym__struct_body, STATE(4389), 2, sym_line_comment, sym_block_comment, - [125019] = 5, + [125025] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(6628), 1, anon_sym_LBRACE, - STATE(1506), 1, - sym_block, + STATE(1850), 1, + sym__struct_body, STATE(4390), 2, sym_line_comment, sym_block_comment, - [125036] = 5, + [125042] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7670), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1067), 1, - sym__struct_body, + STATE(1472), 1, + sym_block, STATE(4391), 2, sym_line_comment, sym_block_comment, - [125053] = 5, + [125059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, - anon_sym_LBRACE, - STATE(1505), 1, - sym_block, + ACTIONS(7084), 1, + sym_identifier, + STATE(4096), 1, + sym_reference_expression, STATE(4392), 2, sym_line_comment, sym_block_comment, - [125070] = 5, + [125076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7672), 1, + ACTIONS(7668), 1, anon_sym_COMMA, - ACTIONS(7674), 1, + ACTIONS(7670), 1, anon_sym_RPAREN, STATE(4393), 2, sym_line_comment, sym_block_comment, - [125087] = 5, + [125093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7618), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_type_initializer_body, + ACTIONS(7672), 1, + anon_sym_LPAREN, + STATE(2751), 1, + sym_special_argument_list, STATE(4394), 2, sym_line_comment, sym_block_comment, - [125104] = 5, + [125110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(7674), 1, anon_sym_LBRACE, - STATE(438), 1, - sym_block, + STATE(1067), 1, + sym__struct_body, STATE(4395), 2, sym_line_comment, sym_block_comment, - [125121] = 5, + [125127] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5325), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(1637), 1, sym_block, STATE(4396), 2, sym_line_comment, sym_block_comment, - [125138] = 5, + [125144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, STATE(1638), 1, sym_block, STATE(4397), 2, sym_line_comment, sym_block_comment, - [125155] = 5, + [125161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(1639), 1, + STATE(428), 1, sym_block, STATE(4398), 2, sym_line_comment, sym_block_comment, - [125172] = 5, + [125178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5315), 1, + ACTIONS(7440), 1, anon_sym_LBRACE, - STATE(431), 1, - sym_block, + STATE(2186), 1, + sym_type_initializer_body, STATE(4399), 2, sym_line_comment, sym_block_comment, - [125189] = 5, + [125195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, + ACTIONS(5323), 1, anon_sym_LBRACE, - STATE(2172), 1, - sym_type_initializer_body, + STATE(425), 1, + sym_block, STATE(4400), 2, sym_line_comment, sym_block_comment, - [125206] = 5, + [125212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7676), 1, - anon_sym_LPAREN, - STATE(1503), 1, - sym_argument_list, + ACTIONS(7612), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_type_initializer_body, STATE(4401), 2, sym_line_comment, sym_block_comment, - [125223] = 5, + [125229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3302), 1, + ACTIONS(5315), 1, anon_sym_LBRACE, - STATE(1681), 1, - sym_type_initializer_body, + STATE(1454), 1, + sym_block, STATE(4402), 2, sym_line_comment, sym_block_comment, - [125240] = 5, + [125246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_block, + ACTIONS(7676), 1, + sym_identifier, + STATE(359), 1, + sym_type_reference_expression, STATE(4403), 2, sym_line_comment, sym_block_comment, - [125257] = 5, + [125263] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - sym_identifier, - STATE(4131), 1, - sym_reference_expression, + ACTIONS(3302), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_type_initializer_body, STATE(4404), 2, sym_line_comment, sym_block_comment, - [125274] = 5, + [125280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7678), 1, - sym_identifier, - STATE(1206), 1, - sym_type_reference_expression, + ACTIONS(5331), 1, + anon_sym_LBRACE, + STATE(1557), 1, + sym_block, STATE(4405), 2, sym_line_comment, sym_block_comment, - [125291] = 5, + [125297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(1662), 1, sym_block, STATE(4406), 2, sym_line_comment, sym_block_comment, - [125308] = 5, + [125314] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7680), 1, - sym_identifier, - STATE(359), 1, - sym_type_reference_expression, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(1644), 1, + sym__content_block, STATE(4407), 2, sym_line_comment, sym_block_comment, - [125325] = 5, + [125331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4229), 1, - anon_sym_LPAREN, - STATE(1641), 1, - sym_argument_list, + ACTIONS(5157), 1, + anon_sym_COLON, + ACTIONS(7678), 1, + anon_sym_mut, STATE(4408), 2, sym_line_comment, sym_block_comment, - [125342] = 5, + [125348] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, - anon_sym_LBRACE, - STATE(2647), 1, - sym_block, + ACTIONS(4227), 1, + anon_sym_LPAREN, + STATE(1640), 1, + sym_argument_list, STATE(4409), 2, sym_line_comment, sym_block_comment, - [125359] = 5, + [125365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7682), 1, - anon_sym_LPAREN, - STATE(2753), 1, - sym_special_argument_list, + ACTIONS(5331), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_block, STATE(4410), 2, sym_line_comment, sym_block_comment, - [125376] = 5, + [125382] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5313), 1, - anon_sym_LBRACE, - STATE(1611), 1, - sym_block, + ACTIONS(7680), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_argument_list, STATE(4411), 2, sym_line_comment, sym_block_comment, - [125393] = 5, + [125399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(1662), 1, - sym__content_block, + STATE(2649), 1, + sym_block, STATE(4412), 2, sym_line_comment, sym_block_comment, - [125410] = 5, + [125416] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_COLON, - ACTIONS(7684), 1, - anon_sym_mut, + ACTIONS(7682), 1, + sym_identifier, + STATE(1261), 1, + sym_type_reference_expression, STATE(4413), 2, sym_line_comment, sym_block_comment, - [125427] = 4, + [125433] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, + ACTIONS(7684), 1, anon_sym_RBRACE, STATE(4414), 2, sym_line_comment, sym_block_comment, - [125441] = 4, + [125447] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7686), 1, - anon_sym_RBRACK, + ACTIONS(7584), 1, + anon_sym_RBRACE, STATE(4415), 2, sym_line_comment, sym_block_comment, - [125455] = 4, + [125461] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7688), 1, - anon_sym_LBRACE, + ACTIONS(7686), 1, + anon_sym_RBRACE, STATE(4416), 2, sym_line_comment, sym_block_comment, - [125469] = 4, + [125475] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7690), 1, - anon_sym_RBRACK, + ACTIONS(5157), 1, + anon_sym_COLON, STATE(4417), 2, sym_line_comment, sym_block_comment, - [125483] = 4, + [125489] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7692), 1, - anon_sym_RBRACE, + ACTIONS(7688), 1, + anon_sym_COLON, STATE(4418), 2, sym_line_comment, sym_block_comment, - [125497] = 4, - ACTIONS(3), 1, + [125503] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7694), 1, - anon_sym_RBRACE, + ACTIONS(7690), 1, + aux_sym__content_block_token1, STATE(4419), 2, sym_line_comment, sym_block_comment, - [125511] = 4, - ACTIONS(311), 1, + [125517] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7696), 1, - aux_sym__content_block_token1, + ACTIONS(7692), 1, + anon_sym_LBRACE, STATE(4420), 2, sym_line_comment, sym_block_comment, - [125525] = 4, + [125531] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7698), 1, - anon_sym_DOT, + ACTIONS(7694), 1, + anon_sym_LBRACE, STATE(4421), 2, sym_line_comment, sym_block_comment, - [125539] = 4, + [125545] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7700), 1, + ACTIONS(7696), 1, anon_sym_LBRACE, STATE(4422), 2, sym_line_comment, sym_block_comment, - [125553] = 4, + [125559] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5671), 1, - anon_sym_LBRACE, + ACTIONS(7698), 1, + anon_sym_DOT, STATE(4423), 2, sym_line_comment, sym_block_comment, - [125567] = 4, + [125573] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -325704,267 +325946,267 @@ static const uint16_t ts_small_parse_table[] = { STATE(4424), 2, sym_line_comment, sym_block_comment, - [125581] = 4, + [125587] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7702), 1, - anon_sym_LBRACE, + ACTIONS(7700), 1, + anon_sym_DOT, STATE(4425), 2, sym_line_comment, sym_block_comment, - [125595] = 4, - ACTIONS(311), 1, + [125601] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7704), 1, - aux_sym__content_block_token1, + ACTIONS(5663), 1, + anon_sym_LBRACE, STATE(4426), 2, sym_line_comment, sym_block_comment, - [125609] = 4, + [125615] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7706), 1, - anon_sym_DOT, + ACTIONS(7702), 1, + anon_sym_LBRACE, STATE(4427), 2, sym_line_comment, sym_block_comment, - [125623] = 4, - ACTIONS(3), 1, + [125629] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7708), 1, - anon_sym_RBRACE, + ACTIONS(7704), 1, + aux_sym__content_block_token1, STATE(4428), 2, sym_line_comment, sym_block_comment, - [125637] = 4, + [125643] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7710), 1, - anon_sym_RBRACE, + ACTIONS(7706), 1, + anon_sym_RBRACK, STATE(4429), 2, sym_line_comment, sym_block_comment, - [125651] = 4, + [125657] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1257), 1, + ACTIONS(6880), 1, anon_sym_RBRACE, STATE(4430), 2, sym_line_comment, sym_block_comment, - [125665] = 4, + [125671] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, + ACTIONS(7708), 1, anon_sym_RBRACE, STATE(4431), 2, sym_line_comment, sym_block_comment, - [125679] = 4, + [125685] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7712), 1, + ACTIONS(7710), 1, anon_sym_RBRACE, STATE(4432), 2, sym_line_comment, sym_block_comment, - [125693] = 4, + [125699] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7570), 1, - anon_sym_RPAREN, + ACTIONS(7712), 1, + sym_int_literal, STATE(4433), 2, sym_line_comment, sym_block_comment, - [125707] = 4, + [125713] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1981), 1, - anon_sym_RPAREN, + ACTIONS(1219), 1, + anon_sym_RBRACE, STATE(4434), 2, sym_line_comment, sym_block_comment, - [125721] = 4, + [125727] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7714), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(4435), 2, sym_line_comment, sym_block_comment, - [125735] = 4, + [125741] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7716), 1, - anon_sym_RBRACE, + ACTIONS(1784), 1, + anon_sym_RPAREN, STATE(4436), 2, sym_line_comment, sym_block_comment, - [125749] = 4, + [125755] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7718), 1, - anon_sym_RBRACK, + ACTIONS(7716), 1, + anon_sym_RBRACE, STATE(4437), 2, sym_line_comment, sym_block_comment, - [125763] = 4, + [125769] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7720), 1, - sym_int_literal, + ACTIONS(7564), 1, + anon_sym_RPAREN, STATE(4438), 2, sym_line_comment, sym_block_comment, - [125777] = 4, + [125783] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7722), 1, + ACTIONS(7718), 1, aux_sym__content_block_token1, STATE(4439), 2, sym_line_comment, sym_block_comment, - [125791] = 4, + [125797] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7724), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, STATE(4440), 2, sym_line_comment, sym_block_comment, - [125805] = 4, + [125811] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4979), 1, - sym_identifier, + ACTIONS(5673), 1, + anon_sym_LBRACE, STATE(4441), 2, sym_line_comment, sym_block_comment, - [125819] = 4, + [125825] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7726), 1, - anon_sym_DOT, + ACTIONS(7722), 1, + anon_sym_RBRACE, STATE(4442), 2, sym_line_comment, sym_block_comment, - [125833] = 4, + [125839] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7728), 1, - anon_sym_RBRACE, + ACTIONS(4961), 1, + sym_identifier, STATE(4443), 2, sym_line_comment, sym_block_comment, - [125847] = 4, + [125853] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7730), 1, - anon_sym_RBRACE, + ACTIONS(7724), 1, + anon_sym_DOT, STATE(4444), 2, sym_line_comment, sym_block_comment, - [125861] = 4, + [125867] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, - anon_sym_LBRACE, + ACTIONS(7726), 1, + anon_sym_RBRACK, STATE(4445), 2, sym_line_comment, sym_block_comment, - [125875] = 4, + [125881] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7732), 1, - anon_sym_LBRACE, + ACTIONS(7728), 1, + anon_sym_RBRACE, STATE(4446), 2, sym_line_comment, sym_block_comment, - [125889] = 4, - ACTIONS(311), 1, + [125895] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7734), 1, - aux_sym__content_block_token1, + ACTIONS(5657), 1, + anon_sym_LBRACE, STATE(4447), 2, sym_line_comment, sym_block_comment, - [125903] = 4, + [125909] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5673), 1, + ACTIONS(7730), 1, anon_sym_LBRACE, STATE(4448), 2, sym_line_comment, sym_block_comment, - [125917] = 4, - ACTIONS(3), 1, + [125923] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - anon_sym_RBRACE, + ACTIONS(7732), 1, + aux_sym__content_block_token1, STATE(4449), 2, sym_line_comment, sym_block_comment, - [125931] = 4, + [125937] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7736), 1, + ACTIONS(7734), 1, anon_sym_RBRACE, STATE(4450), 2, sym_line_comment, sym_block_comment, - [125945] = 4, + [125951] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -325974,2727 +326216,2747 @@ static const uint16_t ts_small_parse_table[] = { STATE(4451), 2, sym_line_comment, sym_block_comment, - [125959] = 4, + [125965] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7738), 1, - anon_sym_RBRACE, + ACTIONS(7736), 1, + anon_sym_LBRACE, STATE(4452), 2, sym_line_comment, sym_block_comment, - [125973] = 4, + [125979] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7740), 1, + ACTIONS(7738), 1, anon_sym_RBRACE, STATE(4453), 2, sym_line_comment, sym_block_comment, - [125987] = 4, + [125993] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7742), 1, - anon_sym_RBRACE, + ACTIONS(7740), 1, + anon_sym_DOT, STATE(4454), 2, sym_line_comment, sym_block_comment, - [126001] = 4, + [126007] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7744), 1, + ACTIONS(7742), 1, anon_sym_RBRACE, STATE(4455), 2, sym_line_comment, sym_block_comment, - [126015] = 4, + [126021] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7746), 1, + ACTIONS(7744), 1, anon_sym_RBRACE, STATE(4456), 2, sym_line_comment, sym_block_comment, - [126029] = 4, + [126035] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7748), 1, - anon_sym_DOT, + ACTIONS(7746), 1, + anon_sym_RBRACE, STATE(4457), 2, sym_line_comment, sym_block_comment, - [126043] = 4, + [126049] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7750), 1, + ACTIONS(7748), 1, anon_sym_RBRACE, STATE(4458), 2, sym_line_comment, sym_block_comment, - [126057] = 4, + [126063] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7752), 1, + ACTIONS(1267), 1, anon_sym_RBRACE, STATE(4459), 2, sym_line_comment, sym_block_comment, - [126071] = 4, + [126077] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7754), 1, + ACTIONS(7750), 1, anon_sym_RBRACE, STATE(4460), 2, sym_line_comment, sym_block_comment, - [126085] = 4, + [126091] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7756), 1, - anon_sym_LBRACE, + ACTIONS(7752), 1, + anon_sym_RBRACE, STATE(4461), 2, sym_line_comment, sym_block_comment, - [126099] = 4, + [126105] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7758), 1, - anon_sym_LBRACE, + ACTIONS(1283), 1, + anon_sym_RBRACE, STATE(4462), 2, sym_line_comment, sym_block_comment, - [126113] = 4, + [126119] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7760), 1, - anon_sym_DOT, + ACTIONS(7754), 1, + anon_sym_RBRACE, STATE(4463), 2, sym_line_comment, sym_block_comment, - [126127] = 4, + [126133] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7762), 1, - anon_sym_RBRACE, + ACTIONS(7756), 1, + anon_sym_LBRACE, STATE(4464), 2, sym_line_comment, sym_block_comment, - [126141] = 4, + [126147] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1293), 1, - anon_sym_RBRACE, + ACTIONS(7758), 1, + anon_sym_DOT, STATE(4465), 2, sym_line_comment, sym_block_comment, - [126155] = 4, + [126161] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5599), 1, - anon_sym_LBRACE, + ACTIONS(7760), 1, + anon_sym_RBRACK, STATE(4466), 2, sym_line_comment, sym_block_comment, - [126169] = 4, + [126175] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7764), 1, - anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_RBRACE, STATE(4467), 2, sym_line_comment, sym_block_comment, - [126183] = 4, - ACTIONS(311), 1, + [126189] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7766), 1, - aux_sym__content_block_token1, + ACTIONS(5613), 1, + anon_sym_LBRACE, STATE(4468), 2, sym_line_comment, sym_block_comment, - [126197] = 4, + [126203] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7768), 1, - anon_sym_EQ, + ACTIONS(7762), 1, + anon_sym_LBRACE, STATE(4469), 2, sym_line_comment, sym_block_comment, - [126211] = 4, - ACTIONS(3), 1, + [126217] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7770), 1, - anon_sym_RBRACE, + ACTIONS(7764), 1, + aux_sym__content_block_token1, STATE(4470), 2, sym_line_comment, sym_block_comment, - [126225] = 4, + [126231] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7772), 1, - anon_sym_RBRACE, + ACTIONS(7766), 1, + anon_sym_EQ, STATE(4471), 2, sym_line_comment, sym_block_comment, - [126239] = 4, + [126245] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7774), 1, - anon_sym_RBRACK, + ACTIONS(7768), 1, + anon_sym_RBRACE, STATE(4472), 2, sym_line_comment, sym_block_comment, - [126253] = 4, + [126259] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7776), 1, + ACTIONS(7770), 1, anon_sym_RBRACE, STATE(4473), 2, sym_line_comment, sym_block_comment, - [126267] = 4, + [126273] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1854), 1, + ACTIONS(1563), 1, anon_sym_RPAREN, STATE(4474), 2, sym_line_comment, sym_block_comment, - [126281] = 4, + [126287] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7778), 1, - anon_sym_LBRACE, + ACTIONS(1782), 1, + anon_sym_RPAREN, STATE(4475), 2, sym_line_comment, sym_block_comment, - [126295] = 4, + [126301] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1231), 1, + ACTIONS(7772), 1, anon_sym_RBRACE, STATE(4476), 2, sym_line_comment, sym_block_comment, - [126309] = 4, + [126315] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7780), 1, + ACTIONS(7774), 1, anon_sym_RBRACE, STATE(4477), 2, sym_line_comment, sym_block_comment, - [126323] = 4, + [126329] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7782), 1, - anon_sym_RBRACE, + ACTIONS(7776), 1, + sym_identifier, STATE(4478), 2, sym_line_comment, sym_block_comment, - [126337] = 4, + [126343] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7784), 1, - anon_sym_RBRACE, + ACTIONS(7778), 1, + anon_sym_RBRACK, STATE(4479), 2, sym_line_comment, sym_block_comment, - [126351] = 4, + [126357] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7786), 1, + ACTIONS(7780), 1, anon_sym_RBRACE, STATE(4480), 2, sym_line_comment, sym_block_comment, - [126365] = 4, + [126371] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, + ACTIONS(7782), 1, anon_sym_RBRACE, STATE(4481), 2, sym_line_comment, sym_block_comment, - [126379] = 4, + [126385] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7788), 1, + ACTIONS(1227), 1, anon_sym_RBRACE, STATE(4482), 2, sym_line_comment, sym_block_comment, - [126393] = 4, + [126399] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7790), 1, + ACTIONS(7784), 1, anon_sym_RBRACE, STATE(4483), 2, sym_line_comment, sym_block_comment, - [126407] = 4, + [126413] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7792), 1, - anon_sym_DOT, + ACTIONS(7786), 1, + anon_sym_RBRACE, STATE(4484), 2, sym_line_comment, sym_block_comment, - [126421] = 4, - ACTIONS(3), 1, + [126427] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7794), 1, - anon_sym_RBRACE, + ACTIONS(7788), 1, + aux_sym__content_block_token1, STATE(4485), 2, sym_line_comment, sym_block_comment, - [126435] = 4, + [126441] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7796), 1, - anon_sym_RBRACE, + ACTIONS(7790), 1, + anon_sym_DOT, STATE(4486), 2, sym_line_comment, sym_block_comment, - [126449] = 4, + [126455] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_LBRACE, + ACTIONS(7792), 1, + anon_sym_RBRACE, STATE(4487), 2, sym_line_comment, sym_block_comment, - [126463] = 4, + [126469] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7798), 1, - anon_sym_LBRACE, + ACTIONS(7794), 1, + anon_sym_RBRACE, STATE(4488), 2, sym_line_comment, sym_block_comment, - [126477] = 4, - ACTIONS(311), 1, + [126483] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7800), 1, - aux_sym__content_block_token1, + ACTIONS(5639), 1, + anon_sym_LBRACE, STATE(4489), 2, sym_line_comment, sym_block_comment, - [126491] = 4, + [126497] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7802), 1, - anon_sym_RBRACE, + ACTIONS(7796), 1, + anon_sym_LBRACE, STATE(4490), 2, sym_line_comment, sym_block_comment, - [126505] = 4, + [126511] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7804), 1, - anon_sym_RBRACK, + ACTIONS(7798), 1, + anon_sym_RBRACE, STATE(4491), 2, sym_line_comment, sym_block_comment, - [126519] = 4, + [126525] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1844), 1, - anon_sym_RPAREN, + ACTIONS(7800), 1, + anon_sym_LBRACE, STATE(4492), 2, sym_line_comment, sym_block_comment, - [126533] = 4, - ACTIONS(311), 1, + [126539] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7806), 1, - aux_sym__content_block_token1, + ACTIONS(7802), 1, + anon_sym_RBRACK, STATE(4493), 2, sym_line_comment, sym_block_comment, - [126547] = 4, + [126553] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7808), 1, - anon_sym_RBRACE, + ACTIONS(1786), 1, + anon_sym_RPAREN, STATE(4494), 2, sym_line_comment, sym_block_comment, - [126561] = 4, + [126567] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7810), 1, - anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_RBRACE, STATE(4495), 2, sym_line_comment, sym_block_comment, - [126575] = 4, + [126581] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_LBRACE, + ACTIONS(7806), 1, + anon_sym_RBRACE, STATE(4496), 2, sym_line_comment, sym_block_comment, - [126589] = 4, + [126595] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1245), 1, - anon_sym_RBRACE, + ACTIONS(5675), 1, + anon_sym_LBRACE, STATE(4497), 2, sym_line_comment, sym_block_comment, - [126603] = 4, + [126609] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7812), 1, - anon_sym_RBRACK, + ACTIONS(7808), 1, + anon_sym_RBRACE, STATE(4498), 2, sym_line_comment, sym_block_comment, - [126617] = 4, + [126623] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7814), 1, - anon_sym_DOT, + ACTIONS(1237), 1, + anon_sym_RBRACE, STATE(4499), 2, sym_line_comment, sym_block_comment, - [126631] = 4, + [126637] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7816), 1, - sym_identifier, + ACTIONS(7810), 1, + anon_sym_DOT, STATE(4500), 2, sym_line_comment, sym_block_comment, - [126645] = 4, + [126651] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7818), 1, - anon_sym_RBRACE, + ACTIONS(7812), 1, + anon_sym_RBRACK, STATE(4501), 2, sym_line_comment, sym_block_comment, - [126659] = 4, + [126665] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6195), 1, + ACTIONS(6193), 1, anon_sym_LBRACE, STATE(4502), 2, sym_line_comment, sym_block_comment, - [126673] = 4, + [126679] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1239), 1, + ACTIONS(7814), 1, anon_sym_RBRACE, STATE(4503), 2, sym_line_comment, sym_block_comment, - [126687] = 4, + [126693] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7820), 1, - anon_sym_COLON_EQ, + ACTIONS(1285), 1, + anon_sym_RBRACE, STATE(4504), 2, sym_line_comment, sym_block_comment, - [126701] = 4, + [126707] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7822), 1, - anon_sym_DOT, + ACTIONS(7816), 1, + anon_sym_COLON_EQ, STATE(4505), 2, sym_line_comment, sym_block_comment, - [126715] = 4, + [126721] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7824), 1, + ACTIONS(7818), 1, anon_sym_RBRACE, STATE(4506), 2, sym_line_comment, sym_block_comment, - [126729] = 4, + [126735] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1858), 1, - anon_sym_RPAREN, + ACTIONS(7820), 1, + anon_sym_DOT, STATE(4507), 2, sym_line_comment, sym_block_comment, - [126743] = 4, + [126749] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7822), 1, + anon_sym_RBRACE, + STATE(4508), 2, + sym_line_comment, + sym_block_comment, + [126763] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_SLASH, + ACTIONS(313), 1, + anon_sym_SLASH_STAR, + ACTIONS(7824), 1, + aux_sym__content_block_token1, + STATE(4509), 2, + sym_line_comment, + sym_block_comment, + [126777] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5641), 1, anon_sym_LBRACE, - STATE(4508), 2, + STATE(4510), 2, sym_line_comment, sym_block_comment, - [126757] = 4, + [126791] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7826), 1, - anon_sym_RBRACE, - STATE(4509), 2, + anon_sym_LBRACE, + STATE(4511), 2, sym_line_comment, sym_block_comment, - [126771] = 4, + [126805] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(7828), 1, aux_sym__content_block_token1, - STATE(4510), 2, + STATE(4512), 2, sym_line_comment, sym_block_comment, - [126785] = 4, + [126819] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1281), 1, + ACTIONS(1273), 1, anon_sym_RBRACE, - STATE(4511), 2, + STATE(4513), 2, sym_line_comment, sym_block_comment, - [126799] = 4, + [126833] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7830), 1, - anon_sym_RBRACE, - STATE(4512), 2, + anon_sym_RBRACK, + STATE(4514), 2, sym_line_comment, sym_block_comment, - [126813] = 4, + [126847] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7832), 1, - anon_sym_RBRACK, - STATE(4513), 2, + anon_sym_RBRACE, + STATE(4515), 2, sym_line_comment, sym_block_comment, - [126827] = 4, + [126861] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7834), 1, anon_sym_RBRACE, - STATE(4514), 2, + STATE(4516), 2, sym_line_comment, sym_block_comment, - [126841] = 4, + [126875] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, + ACTIONS(1289), 1, anon_sym_RBRACE, - STATE(4515), 2, + STATE(4517), 2, sym_line_comment, sym_block_comment, - [126855] = 4, - ACTIONS(311), 1, + [126889] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7836), 1, - aux_sym__content_block_token1, - STATE(4516), 2, + anon_sym_LBRACE, + STATE(4518), 2, sym_line_comment, sym_block_comment, - [126869] = 4, + [126903] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7838), 1, sym_identifier, - STATE(4517), 2, + STATE(4519), 2, sym_line_comment, sym_block_comment, - [126883] = 4, + [126917] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7840), 1, sym_identifier, - STATE(4518), 2, + STATE(4520), 2, sym_line_comment, sym_block_comment, - [126897] = 4, + [126931] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7842), 1, sym_identifier, - STATE(4519), 2, + STATE(4521), 2, sym_line_comment, sym_block_comment, - [126911] = 4, + [126945] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7844), 1, + ACTIONS(5681), 1, anon_sym_LBRACE, - STATE(4520), 2, + STATE(4522), 2, sym_line_comment, sym_block_comment, - [126925] = 4, + [126959] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5681), 1, - anon_sym_LBRACE, - STATE(4521), 2, + ACTIONS(7844), 1, + anon_sym_DOT, + STATE(4523), 2, sym_line_comment, sym_block_comment, - [126939] = 4, + [126973] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7846), 1, anon_sym_RBRACK, - STATE(4522), 2, + STATE(4524), 2, sym_line_comment, sym_block_comment, - [126953] = 4, + [126987] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7848), 1, anon_sym_RBRACE, - STATE(4523), 2, + STATE(4525), 2, sym_line_comment, sym_block_comment, - [126967] = 4, + [127001] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7850), 1, - anon_sym_DOT, - STATE(4524), 2, + anon_sym_RBRACE, + STATE(4526), 2, sym_line_comment, sym_block_comment, - [126981] = 4, + [127015] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7852), 1, + ACTIONS(1221), 1, anon_sym_RBRACE, - STATE(4525), 2, + STATE(4527), 2, sym_line_comment, sym_block_comment, - [126995] = 4, + [127029] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7854), 1, + ACTIONS(7852), 1, anon_sym_DOT, - STATE(4526), 2, + STATE(4528), 2, sym_line_comment, sym_block_comment, - [127009] = 4, + [127043] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7856), 1, + ACTIONS(7854), 1, anon_sym_RBRACE, - STATE(4527), 2, + STATE(4529), 2, sym_line_comment, sym_block_comment, - [127023] = 4, + [127057] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1287), 1, - anon_sym_RBRACE, - STATE(4528), 2, + ACTIONS(7856), 1, + anon_sym_RBRACK, + STATE(4530), 2, sym_line_comment, sym_block_comment, - [127037] = 4, + [127071] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5643), 1, anon_sym_LBRACE, - STATE(4529), 2, + STATE(4531), 2, sym_line_comment, sym_block_comment, - [127051] = 4, + [127085] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7858), 1, anon_sym_LBRACE, - STATE(4530), 2, + STATE(4532), 2, sym_line_comment, sym_block_comment, - [127065] = 4, + [127099] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(7860), 1, aux_sym__content_block_token1, - STATE(4531), 2, + STATE(4533), 2, sym_line_comment, sym_block_comment, - [127079] = 4, + [127113] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7862), 1, - anon_sym_RBRACK, - STATE(4532), 2, + ACTIONS(1909), 1, + anon_sym_RPAREN, + STATE(4534), 2, sym_line_comment, sym_block_comment, - [127093] = 4, + [127127] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7864), 1, + ACTIONS(7862), 1, sym_identifier, - STATE(4533), 2, + STATE(4535), 2, sym_line_comment, sym_block_comment, - [127107] = 4, + [127141] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7866), 1, - anon_sym_RBRACE, - STATE(4534), 2, + ACTIONS(7864), 1, + anon_sym_RBRACK, + STATE(4536), 2, sym_line_comment, sym_block_comment, - [127121] = 4, + [127155] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1848), 1, + ACTIONS(1788), 1, anon_sym_RPAREN, - STATE(4535), 2, + STATE(4537), 2, sym_line_comment, sym_block_comment, - [127135] = 4, + [127169] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7868), 1, + ACTIONS(7866), 1, sym_identifier, - STATE(4536), 2, + STATE(4538), 2, sym_line_comment, sym_block_comment, - [127149] = 4, + [127183] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7870), 1, + ACTIONS(7868), 1, sym_identifier, - STATE(4537), 2, + STATE(4539), 2, sym_line_comment, sym_block_comment, - [127163] = 4, + [127197] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7872), 1, + ACTIONS(7870), 1, sym_identifier, - STATE(4538), 2, + STATE(4540), 2, sym_line_comment, sym_block_comment, - [127177] = 4, + [127211] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1983), 1, - anon_sym_RPAREN, - STATE(4539), 2, + ACTIONS(7872), 1, + anon_sym_RBRACK, + STATE(4541), 2, sym_line_comment, sym_block_comment, - [127191] = 4, + [127225] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7874), 1, sym_identifier, - STATE(4540), 2, + STATE(4542), 2, sym_line_comment, sym_block_comment, - [127205] = 4, + [127239] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7876), 1, - anon_sym_RBRACK, - STATE(4541), 2, + anon_sym_RBRACE, + STATE(4543), 2, sym_line_comment, sym_block_comment, - [127219] = 4, + [127253] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7878), 1, - anon_sym_RBRACK, - STATE(4542), 2, + anon_sym_RBRACE, + STATE(4544), 2, sym_line_comment, sym_block_comment, - [127233] = 4, + [127267] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7880), 1, anon_sym_DOT, - STATE(4543), 2, + STATE(4545), 2, sym_line_comment, sym_block_comment, - [127247] = 4, + [127281] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7882), 1, - anon_sym_RBRACE, - STATE(4544), 2, + anon_sym_DOT, + STATE(4546), 2, sym_line_comment, sym_block_comment, - [127261] = 4, + [127295] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5651), 1, anon_sym_LBRACE, - STATE(4545), 2, + STATE(4547), 2, sym_line_comment, sym_block_comment, - [127275] = 4, + [127309] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7884), 1, anon_sym_LBRACE, - STATE(4546), 2, + STATE(4548), 2, sym_line_comment, sym_block_comment, - [127289] = 4, + [127323] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(7886), 1, aux_sym__content_block_token1, - STATE(4547), 2, + STATE(4549), 2, sym_line_comment, sym_block_comment, - [127303] = 4, + [127337] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7888), 1, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4550), 2, sym_line_comment, sym_block_comment, - [127317] = 4, + [127351] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7890), 1, - anon_sym_DOT, - STATE(4549), 2, + anon_sym_RBRACE, + STATE(4551), 2, sym_line_comment, sym_block_comment, - [127331] = 4, + [127365] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7892), 1, + ACTIONS(1259), 1, anon_sym_RBRACE, - STATE(4550), 2, + STATE(4552), 2, sym_line_comment, sym_block_comment, - [127345] = 4, + [127379] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7894), 1, + ACTIONS(7892), 1, anon_sym_DOT, - STATE(4551), 2, + STATE(4553), 2, sym_line_comment, sym_block_comment, - [127359] = 4, + [127393] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7896), 1, + ACTIONS(7894), 1, aux_sym__content_block_token1, - STATE(4552), 2, + STATE(4554), 2, sym_line_comment, sym_block_comment, - [127373] = 4, + [127407] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7898), 1, - anon_sym_RBRACE, - STATE(4553), 2, + ACTIONS(5223), 1, + sym_identifier, + STATE(4555), 2, sym_line_comment, sym_block_comment, - [127387] = 4, + [127421] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7900), 1, + ACTIONS(7896), 1, anon_sym_RBRACE, - STATE(4554), 2, + STATE(4556), 2, sym_line_comment, sym_block_comment, - [127401] = 4, + [127435] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7902), 1, + ACTIONS(7898), 1, anon_sym_DOT, - STATE(4555), 2, + STATE(4557), 2, sym_line_comment, sym_block_comment, - [127415] = 4, + [127449] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7904), 1, + ACTIONS(7900), 1, aux_sym__content_block_token1, - STATE(4556), 2, - sym_line_comment, - sym_block_comment, - [127429] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1269), 1, - anon_sym_RBRACE, - STATE(4557), 2, - sym_line_comment, - sym_block_comment, - [127443] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7906), 1, - anon_sym_RBRACE, STATE(4558), 2, sym_line_comment, sym_block_comment, - [127457] = 4, + [127463] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7908), 1, + ACTIONS(7902), 1, anon_sym_RBRACE, STATE(4559), 2, sym_line_comment, sym_block_comment, - [127471] = 4, + [127477] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7910), 1, + ACTIONS(7904), 1, anon_sym_RBRACE, STATE(4560), 2, sym_line_comment, sym_block_comment, - [127485] = 4, + [127491] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7912), 1, - anon_sym_RBRACE, + ACTIONS(7906), 1, + anon_sym_DOT, STATE(4561), 2, sym_line_comment, sym_block_comment, - [127499] = 4, + [127505] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7914), 1, - anon_sym_DOT, + ACTIONS(7908), 1, + anon_sym_RBRACE, STATE(4562), 2, sym_line_comment, sym_block_comment, - [127513] = 4, + [127519] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7916), 1, + ACTIONS(7910), 1, anon_sym_RBRACE, STATE(4563), 2, sym_line_comment, sym_block_comment, - [127527] = 4, + [127533] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7918), 1, + ACTIONS(7912), 1, anon_sym_RBRACE, STATE(4564), 2, sym_line_comment, sym_block_comment, - [127541] = 4, + [127547] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_COLON, + ACTIONS(7914), 1, + anon_sym_RBRACE, STATE(4565), 2, sym_line_comment, sym_block_comment, - [127555] = 4, - ACTIONS(3), 1, + [127561] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7920), 1, - anon_sym_LBRACE, + ACTIONS(7916), 1, + aux_sym__content_block_token1, STATE(4566), 2, sym_line_comment, sym_block_comment, - [127569] = 4, + [127575] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7922), 1, + ACTIONS(7918), 1, anon_sym_RBRACE, STATE(4567), 2, sym_line_comment, sym_block_comment, - [127583] = 4, + [127589] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7602), 1, - anon_sym_RBRACE, + ACTIONS(7920), 1, + sym_identifier, STATE(4568), 2, sym_line_comment, sym_block_comment, - [127597] = 4, + [127603] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7924), 1, + ACTIONS(7922), 1, sym_identifier, STATE(4569), 2, sym_line_comment, sym_block_comment, - [127611] = 4, + [127617] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7926), 1, - sym_identifier, + ACTIONS(7626), 1, + anon_sym_RBRACE, STATE(4570), 2, sym_line_comment, sym_block_comment, - [127625] = 4, + [127631] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1856), 1, - anon_sym_RPAREN, + ACTIONS(7924), 1, + sym_identifier, STATE(4571), 2, sym_line_comment, sym_block_comment, - [127639] = 4, + [127645] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7928), 1, - anon_sym_RBRACK, + ACTIONS(1263), 1, + anon_sym_RBRACE, STATE(4572), 2, sym_line_comment, sym_block_comment, - [127653] = 4, + [127659] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7930), 1, - anon_sym_SEMI, + ACTIONS(7926), 1, + anon_sym_RBRACE, STATE(4573), 2, sym_line_comment, sym_block_comment, - [127667] = 4, + [127673] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7932), 1, - anon_sym_RBRACE, + ACTIONS(1911), 1, + anon_sym_RPAREN, STATE(4574), 2, sym_line_comment, sym_block_comment, - [127681] = 4, + [127687] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7934), 1, - anon_sym_RBRACE, + ACTIONS(7928), 1, + anon_sym_SEMI, STATE(4575), 2, sym_line_comment, sym_block_comment, - [127695] = 4, + [127701] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7936), 1, - anon_sym_in, + ACTIONS(7930), 1, + anon_sym_RBRACK, STATE(4576), 2, sym_line_comment, sym_block_comment, - [127709] = 4, + [127715] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7938), 1, - anon_sym_RBRACE, + ACTIONS(7932), 1, + sym_int_literal, STATE(4577), 2, sym_line_comment, sym_block_comment, - [127723] = 4, + [127729] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7940), 1, - sym_identifier, + ACTIONS(7934), 1, + anon_sym_in, STATE(4578), 2, sym_line_comment, sym_block_comment, - [127737] = 4, + [127743] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7942), 1, - anon_sym_RBRACK, + ACTIONS(7936), 1, + anon_sym_RBRACE, STATE(4579), 2, sym_line_comment, sym_block_comment, - [127751] = 4, + [127757] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7944), 1, - sym_int_literal, + ACTIONS(7938), 1, + sym_identifier, STATE(4580), 2, sym_line_comment, sym_block_comment, - [127765] = 4, + [127771] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1247), 1, - anon_sym_RBRACE, + ACTIONS(7940), 1, + anon_sym_RBRACK, STATE(4581), 2, sym_line_comment, sym_block_comment, - [127779] = 4, + [127785] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7946), 1, + ACTIONS(7942), 1, anon_sym_RBRACE, STATE(4582), 2, sym_line_comment, sym_block_comment, - [127793] = 4, + [127799] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7948), 1, + ACTIONS(1239), 1, anon_sym_RBRACE, STATE(4583), 2, sym_line_comment, sym_block_comment, - [127807] = 4, + [127813] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7950), 1, + ACTIONS(7944), 1, anon_sym_RBRACE, STATE(4584), 2, sym_line_comment, sym_block_comment, - [127821] = 4, + [127827] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7952), 1, + ACTIONS(7946), 1, anon_sym_RBRACE, STATE(4585), 2, sym_line_comment, sym_block_comment, - [127835] = 4, + [127841] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1251), 1, - anon_sym_RBRACE, + ACTIONS(7948), 1, + anon_sym_COLON, STATE(4586), 2, sym_line_comment, sym_block_comment, - [127849] = 4, - ACTIONS(311), 1, + [127855] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7954), 1, - aux_sym__content_block_token1, + ACTIONS(7950), 1, + anon_sym_RBRACK, STATE(4587), 2, sym_line_comment, sym_block_comment, - [127863] = 4, - ACTIONS(3), 1, + [127869] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7956), 1, - anon_sym_RBRACE, + ACTIONS(7952), 1, + aux_sym__content_block_token1, STATE(4588), 2, sym_line_comment, sym_block_comment, - [127877] = 4, + [127883] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_RBRACE, + ACTIONS(7954), 1, + anon_sym_LBRACE, STATE(4589), 2, sym_line_comment, sym_block_comment, - [127891] = 4, + [127897] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7958), 1, - anon_sym_LBRACE, + ACTIONS(7956), 1, + anon_sym_RBRACE, STATE(4590), 2, sym_line_comment, sym_block_comment, - [127905] = 4, - ACTIONS(311), 1, + [127911] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7960), 1, - aux_sym__content_block_token1, + ACTIONS(1243), 1, + anon_sym_RBRACE, STATE(4591), 2, sym_line_comment, sym_block_comment, - [127919] = 4, + [127925] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5695), 1, + ACTIONS(5693), 1, anon_sym_LBRACE, STATE(4592), 2, sym_line_comment, sym_block_comment, - [127933] = 4, - ACTIONS(3), 1, + [127939] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(7962), 1, - anon_sym_LBRACE, + ACTIONS(7958), 1, + aux_sym__content_block_token1, STATE(4593), 2, sym_line_comment, sym_block_comment, - [127947] = 4, + [127953] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_LBRACE, + ACTIONS(7960), 1, + anon_sym_RBRACE, STATE(4594), 2, sym_line_comment, sym_block_comment, - [127961] = 4, + [127967] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7964), 1, - anon_sym_RBRACE, + ACTIONS(7962), 1, + anon_sym_LBRACE, STATE(4595), 2, sym_line_comment, sym_block_comment, - [127975] = 4, + [127981] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7966), 1, - anon_sym_RBRACE, + ACTIONS(5699), 1, + anon_sym_LBRACE, STATE(4596), 2, sym_line_comment, sym_block_comment, - [127989] = 4, + [127995] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6295), 1, - anon_sym_COLON_EQ, + ACTIONS(7964), 1, + anon_sym_RBRACE, STATE(4597), 2, sym_line_comment, sym_block_comment, - [128003] = 4, + [128009] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7968), 1, - anon_sym_DOT, + ACTIONS(1241), 1, + anon_sym_RBRACE, STATE(4598), 2, sym_line_comment, sym_block_comment, - [128017] = 4, + [128023] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7970), 1, - anon_sym_RBRACE, + ACTIONS(6295), 1, + anon_sym_COLON_EQ, STATE(4599), 2, sym_line_comment, sym_block_comment, - [128031] = 4, + [128037] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7574), 1, + ACTIONS(7966), 1, anon_sym_RBRACE, STATE(4600), 2, sym_line_comment, sym_block_comment, - [128045] = 4, + [128051] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7972), 1, - anon_sym_EQ, + ACTIONS(7968), 1, + anon_sym_DOT, STATE(4601), 2, sym_line_comment, sym_block_comment, - [128059] = 4, + [128065] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7974), 1, - sym_identifier, + ACTIONS(7970), 1, + anon_sym_RBRACE, STATE(4602), 2, sym_line_comment, sym_block_comment, - [128073] = 4, + [128079] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7976), 1, - anon_sym_RBRACE, + ACTIONS(7972), 1, + anon_sym_EQ, STATE(4603), 2, sym_line_comment, sym_block_comment, - [128087] = 4, + [128093] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7978), 1, - anon_sym_RBRACK, + ACTIONS(7974), 1, + anon_sym_RBRACE, STATE(4604), 2, sym_line_comment, sym_block_comment, - [128101] = 4, + [128107] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7980), 1, - anon_sym_RBRACE, + ACTIONS(7976), 1, + sym_identifier, STATE(4605), 2, sym_line_comment, sym_block_comment, - [128115] = 4, + [128121] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7982), 1, - anon_sym_RBRACK, + ACTIONS(7978), 1, + anon_sym_RBRACE, STATE(4606), 2, sym_line_comment, sym_block_comment, - [128129] = 4, + [128135] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7984), 1, - anon_sym_DOT, + ACTIONS(7980), 1, + anon_sym_RBRACE, STATE(4607), 2, sym_line_comment, sym_block_comment, - [128143] = 4, + [128149] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1860), 1, - anon_sym_RPAREN, + ACTIONS(7982), 1, + anon_sym_RBRACE, STATE(4608), 2, sym_line_comment, sym_block_comment, - [128157] = 4, + [128163] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7986), 1, - anon_sym_RBRACE, + ACTIONS(7984), 1, + anon_sym_DOT, STATE(4609), 2, sym_line_comment, sym_block_comment, - [128171] = 4, + [128177] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7988), 1, + ACTIONS(7986), 1, anon_sym_RBRACE, STATE(4610), 2, sym_line_comment, sym_block_comment, - [128185] = 4, + [128191] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7990), 1, - anon_sym_COLON, + ACTIONS(7988), 1, + anon_sym_RBRACK, STATE(4611), 2, sym_line_comment, sym_block_comment, - [128199] = 4, + [128205] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7992), 1, - anon_sym_RBRACE, + ACTIONS(7990), 1, + anon_sym_RBRACK, STATE(4612), 2, sym_line_comment, sym_block_comment, - [128213] = 4, + [128219] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - anon_sym_RBRACE, + ACTIONS(1915), 1, + anon_sym_RPAREN, STATE(4613), 2, sym_line_comment, sym_block_comment, - [128227] = 4, + [128233] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7994), 1, + ACTIONS(1257), 1, anon_sym_RBRACE, STATE(4614), 2, sym_line_comment, sym_block_comment, - [128241] = 4, + [128247] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7996), 1, + ACTIONS(7992), 1, anon_sym_RBRACE, STATE(4615), 2, sym_line_comment, sym_block_comment, - [128255] = 4, + [128261] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7998), 1, + ACTIONS(7994), 1, anon_sym_RBRACE, STATE(4616), 2, sym_line_comment, sym_block_comment, - [128269] = 4, + [128275] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8000), 1, + ACTIONS(7996), 1, anon_sym_RBRACE, STATE(4617), 2, sym_line_comment, sym_block_comment, - [128283] = 4, + [128289] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8002), 1, + ACTIONS(7998), 1, anon_sym_RBRACE, STATE(4618), 2, sym_line_comment, sym_block_comment, - [128297] = 4, + [128303] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8004), 1, - anon_sym_DOT, + ACTIONS(8000), 1, + anon_sym_RBRACE, STATE(4619), 2, sym_line_comment, sym_block_comment, - [128311] = 4, + [128317] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1255), 1, + ACTIONS(8002), 1, anon_sym_RBRACE, STATE(4620), 2, sym_line_comment, sym_block_comment, - [128325] = 4, + [128331] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8006), 1, - anon_sym_RBRACE, + ACTIONS(8004), 1, + anon_sym_DOT, STATE(4621), 2, sym_line_comment, sym_block_comment, - [128339] = 4, + [128345] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8008), 1, + ACTIONS(8006), 1, anon_sym_RBRACE, STATE(4622), 2, sym_line_comment, sym_block_comment, - [128353] = 4, + [128359] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8010), 1, - anon_sym_RBRACK, + ACTIONS(8008), 1, + anon_sym_RBRACE, STATE(4623), 2, sym_line_comment, sym_block_comment, - [128367] = 4, - ACTIONS(311), 1, + [128373] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8012), 1, - aux_sym_shebang_token1, + ACTIONS(8010), 1, + anon_sym_RBRACK, STATE(4624), 2, sym_line_comment, sym_block_comment, - [128381] = 4, + [128387] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8014), 1, - anon_sym_RBRACK, + ACTIONS(8012), 1, + anon_sym_RBRACE, STATE(4625), 2, sym_line_comment, sym_block_comment, - [128395] = 4, - ACTIONS(3), 1, + [128401] = 4, + ACTIONS(311), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(8016), 1, - anon_sym_RBRACK, + ACTIONS(8014), 1, + aux_sym_shebang_token1, STATE(4626), 2, sym_line_comment, sym_block_comment, - [128409] = 4, + [128415] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8018), 1, - anon_sym_DOT, + ACTIONS(8016), 1, + anon_sym_COLON, STATE(4627), 2, sym_line_comment, sym_block_comment, - [128423] = 4, + [128429] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8020), 1, - anon_sym_LBRACE, + ACTIONS(8018), 1, + anon_sym_RBRACK, STATE(4628), 2, sym_line_comment, sym_block_comment, - [128437] = 4, + [128443] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1842), 1, - anon_sym_RPAREN, + ACTIONS(8020), 1, + anon_sym_DOT, STATE(4629), 2, sym_line_comment, sym_block_comment, - [128451] = 4, + [128457] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1913), 1, anon_sym_RPAREN, STATE(4630), 2, sym_line_comment, sym_block_comment, - [128465] = 4, + [128471] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8022), 1, - sym_identifier, + ACTIONS(1633), 1, + anon_sym_RPAREN, STATE(4631), 2, sym_line_comment, sym_block_comment, - [128479] = 4, + [128485] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8024), 1, + ACTIONS(8022), 1, anon_sym_RBRACE, STATE(4632), 2, sym_line_comment, sym_block_comment, - [128493] = 4, + [128499] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8026), 1, + ACTIONS(1247), 1, anon_sym_RBRACE, STATE(4633), 2, sym_line_comment, sym_block_comment, - [128507] = 4, + [128513] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_RBRACE, + ACTIONS(8024), 1, + anon_sym_RBRACK, STATE(4634), 2, sym_line_comment, sym_block_comment, - [128521] = 4, + [128527] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(8026), 1, anon_sym_RBRACE, STATE(4635), 2, sym_line_comment, sym_block_comment, - [128535] = 4, + [128541] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8028), 1, - sym_int_literal, + anon_sym_LBRACE, STATE(4636), 2, sym_line_comment, sym_block_comment, - [128549] = 4, + [128555] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8030), 1, + ACTIONS(1293), 1, anon_sym_RBRACE, STATE(4637), 2, sym_line_comment, sym_block_comment, - [128563] = 4, + [128569] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8032), 1, + ACTIONS(1279), 1, anon_sym_RBRACE, STATE(4638), 2, sym_line_comment, sym_block_comment, - [128577] = 4, + [128583] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8034), 1, + ACTIONS(8030), 1, anon_sym_RBRACE, STATE(4639), 2, sym_line_comment, sym_block_comment, - [128591] = 4, + [128597] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8036), 1, + ACTIONS(8032), 1, anon_sym_RBRACE, STATE(4640), 2, sym_line_comment, sym_block_comment, - [128605] = 4, + [128611] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8038), 1, - anon_sym_RBRACK, + ACTIONS(8034), 1, + anon_sym_RBRACE, STATE(4641), 2, sym_line_comment, sym_block_comment, - [128619] = 4, + [128625] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, + ACTIONS(1231), 1, anon_sym_RBRACE, STATE(4642), 2, sym_line_comment, sym_block_comment, - [128633] = 4, + [128639] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - anon_sym_RBRACE, + ACTIONS(8036), 1, + anon_sym_RBRACK, STATE(4643), 2, sym_line_comment, sym_block_comment, - [128647] = 4, + [128653] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8040), 1, - anon_sym_EQ, + ACTIONS(8038), 1, + sym_int_literal, STATE(4644), 2, sym_line_comment, sym_block_comment, - [128661] = 4, + [128667] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8042), 1, + ACTIONS(8040), 1, anon_sym_RBRACE, STATE(4645), 2, sym_line_comment, sym_block_comment, - [128675] = 4, + [128681] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8044), 1, - anon_sym_RBRACE, + ACTIONS(8042), 1, + anon_sym_EQ, STATE(4646), 2, sym_line_comment, sym_block_comment, - [128689] = 4, + [128695] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8046), 1, + ACTIONS(8044), 1, anon_sym_RBRACE, STATE(4647), 2, sym_line_comment, sym_block_comment, - [128703] = 4, + [128709] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, STATE(4648), 2, sym_line_comment, sym_block_comment, - [128717] = 4, + [128723] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8048), 1, + ACTIONS(8046), 1, anon_sym_RBRACE, STATE(4649), 2, sym_line_comment, sym_block_comment, - [128731] = 4, + [128737] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8050), 1, + ACTIONS(8048), 1, anon_sym_RBRACE, STATE(4650), 2, sym_line_comment, sym_block_comment, - [128745] = 4, + [128751] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8052), 1, + ACTIONS(8050), 1, anon_sym_RBRACK, STATE(4651), 2, sym_line_comment, sym_block_comment, - [128759] = 4, + [128765] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(8052), 1, + anon_sym_RBRACK, + STATE(4652), 2, + sym_line_comment, + sym_block_comment, + [128779] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8054), 1, anon_sym_RBRACE, - STATE(4652), 2, + STATE(4653), 2, + sym_line_comment, + sym_block_comment, + [128793] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(8056), 1, + anon_sym_RBRACE, + STATE(4654), 2, sym_line_comment, sym_block_comment, - [128773] = 4, + [128807] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, - ACTIONS(8056), 1, + ACTIONS(8058), 1, aux_sym_shebang_token1, - STATE(4653), 2, + STATE(4655), 2, sym_line_comment, sym_block_comment, - [128787] = 4, + [128821] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8058), 1, - anon_sym_RBRACK, - STATE(4654), 2, + ACTIONS(7367), 1, + anon_sym_RBRACE, + STATE(4656), 2, sym_line_comment, sym_block_comment, - [128801] = 4, + [128835] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8060), 1, sym_identifier, - STATE(4655), 2, + STATE(4657), 2, sym_line_comment, sym_block_comment, - [128815] = 4, + [128849] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8062), 1, anon_sym_RBRACE, - STATE(4656), 2, + STATE(4658), 2, sym_line_comment, sym_block_comment, - [128829] = 4, + [128863] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8064), 1, anon_sym_RBRACE, - STATE(4657), 2, + STATE(4659), 2, sym_line_comment, sym_block_comment, - [128843] = 4, + [128877] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8066), 1, anon_sym_RBRACE, - STATE(4658), 2, + STATE(4660), 2, sym_line_comment, sym_block_comment, - [128857] = 4, + [128891] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1235), 1, + ACTIONS(8068), 1, anon_sym_RBRACE, - STATE(4659), 2, + STATE(4661), 2, sym_line_comment, sym_block_comment, - [128871] = 4, + [128905] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8068), 1, + ACTIONS(8070), 1, anon_sym_RBRACK, - STATE(4660), 2, + STATE(4662), 2, sym_line_comment, sym_block_comment, - [128885] = 4, + [128919] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8070), 1, + ACTIONS(8072), 1, anon_sym_LBRACE, - STATE(4661), 2, + STATE(4663), 2, sym_line_comment, sym_block_comment, - [128899] = 4, + [128933] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8072), 1, + ACTIONS(1235), 1, anon_sym_RBRACE, - STATE(4662), 2, + STATE(4664), 2, sym_line_comment, sym_block_comment, - [128913] = 4, + [128947] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8074), 1, anon_sym_RBRACE, - STATE(4663), 2, + STATE(4665), 2, sym_line_comment, sym_block_comment, - [128927] = 4, + [128961] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(1225), 1, anon_sym_RBRACE, - STATE(4664), 2, + STATE(4666), 2, sym_line_comment, sym_block_comment, - [128941] = 4, + [128975] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8076), 1, ts_builtin_sym_end, - STATE(4665), 2, + STATE(4667), 2, sym_line_comment, sym_block_comment, - [128955] = 4, + [128989] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8078), 1, anon_sym_RBRACE, - STATE(4666), 2, + STATE(4668), 2, sym_line_comment, sym_block_comment, - [128969] = 4, + [129003] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8080), 1, anon_sym_RBRACE, - STATE(4667), 2, + STATE(4669), 2, sym_line_comment, sym_block_comment, - [128983] = 4, + [129017] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8082), 1, + ACTIONS(1223), 1, anon_sym_RBRACE, - STATE(4668), 2, + STATE(4670), 2, sym_line_comment, sym_block_comment, - [128997] = 4, + [129031] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8084), 1, + ACTIONS(8082), 1, sym_identifier, - STATE(4669), 2, + STATE(4671), 2, sym_line_comment, sym_block_comment, - [129011] = 4, + [129045] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1285), 1, - anon_sym_RBRACE, - STATE(4670), 2, + ACTIONS(8084), 1, + sym_identifier, + STATE(4672), 2, sym_line_comment, sym_block_comment, - [129025] = 4, + [129059] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(8086), 1, aux_sym_hash_statement_token1, - STATE(4671), 2, + STATE(4673), 2, sym_line_comment, sym_block_comment, - [129039] = 4, + [129073] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1852), 1, + ACTIONS(1565), 1, anon_sym_RPAREN, - STATE(4672), 2, + STATE(4674), 2, sym_line_comment, sym_block_comment, - [129053] = 4, + [129087] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8088), 1, anon_sym_RBRACK, - STATE(4673), 2, + STATE(4675), 2, sym_line_comment, sym_block_comment, - [129067] = 4, + [129101] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8090), 1, anon_sym_RBRACE, - STATE(4674), 2, + STATE(4676), 2, sym_line_comment, sym_block_comment, - [129081] = 4, + [129115] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8092), 1, anon_sym_RBRACE, - STATE(4675), 2, + STATE(4677), 2, sym_line_comment, sym_block_comment, - [129095] = 4, + [129129] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8094), 1, - sym_identifier, - STATE(4676), 2, + anon_sym_RBRACE, + STATE(4678), 2, sym_line_comment, sym_block_comment, - [129109] = 4, + [129143] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8096), 1, anon_sym_RBRACE, - STATE(4677), 2, + STATE(4679), 2, sym_line_comment, sym_block_comment, - [129123] = 4, + [129157] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4678), 2, + anon_sym_RBRACK, + STATE(4680), 2, sym_line_comment, sym_block_comment, - [129137] = 4, + [129171] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4679), 2, + anon_sym_RBRACK, + STATE(4681), 2, sym_line_comment, sym_block_comment, - [129151] = 4, + [129185] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8102), 1, - anon_sym_RBRACK, - STATE(4680), 2, + anon_sym_RBRACE, + STATE(4682), 2, sym_line_comment, sym_block_comment, - [129165] = 4, + [129199] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4681), 2, + STATE(4683), 2, sym_line_comment, sym_block_comment, - [129179] = 4, + [129213] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8106), 1, anon_sym_RBRACK, - STATE(4682), 2, + STATE(4684), 2, sym_line_comment, sym_block_comment, - [129193] = 4, + [129227] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8108), 1, anon_sym_PIPE2, - STATE(4683), 2, + STATE(4685), 2, sym_line_comment, sym_block_comment, - [129207] = 4, + [129241] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8110), 1, anon_sym_LBRACE, - STATE(4684), 2, + STATE(4686), 2, sym_line_comment, sym_block_comment, - [129221] = 4, + [129255] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8112), 1, - anon_sym_RBRACK, - STATE(4685), 2, + anon_sym_LBRACE, + STATE(4687), 2, sym_line_comment, sym_block_comment, - [129235] = 4, + [129269] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8114), 1, anon_sym_RBRACE, - STATE(4686), 2, + STATE(4688), 2, sym_line_comment, sym_block_comment, - [129249] = 4, + [129283] = 4, ACTIONS(311), 1, anon_sym_SLASH_SLASH, ACTIONS(313), 1, anon_sym_SLASH_STAR, ACTIONS(8116), 1, aux_sym_hash_statement_token1, - STATE(4687), 2, + STATE(4689), 2, sym_line_comment, sym_block_comment, - [129263] = 4, + [129297] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8118), 1, anon_sym_RBRACE, - STATE(4688), 2, - sym_line_comment, - sym_block_comment, - [129277] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5229), 1, - sym_identifier, - STATE(4689), 2, + STATE(4690), 2, sym_line_comment, sym_block_comment, - [129291] = 4, + [129311] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1261), 1, anon_sym_RBRACE, - STATE(4690), 2, + STATE(4691), 2, sym_line_comment, sym_block_comment, - [129305] = 4, + [129325] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8120), 1, anon_sym_RBRACE, - STATE(4691), 2, + STATE(4692), 2, sym_line_comment, sym_block_comment, - [129319] = 4, + [129339] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8122), 1, - anon_sym_DOT, - STATE(4692), 2, + anon_sym_RBRACE, + STATE(4693), 2, sym_line_comment, sym_block_comment, - [129333] = 4, + [129353] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8124), 1, - anon_sym_RBRACE, - STATE(4693), 2, + anon_sym_DOT, + STATE(4694), 2, sym_line_comment, sym_block_comment, - [129347] = 4, + [129367] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8126), 1, anon_sym_RBRACK, - STATE(4694), 2, + STATE(4695), 2, sym_line_comment, sym_block_comment, - [129361] = 4, + [129381] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8128), 1, anon_sym_RBRACK, - STATE(4695), 2, + STATE(4696), 2, sym_line_comment, sym_block_comment, - [129375] = 4, + [129395] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8130), 1, anon_sym_EQ, - STATE(4696), 2, + STATE(4697), 2, sym_line_comment, sym_block_comment, - [129389] = 4, + [129409] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8132), 1, sym_identifier, - STATE(4697), 2, + STATE(4698), 2, sym_line_comment, sym_block_comment, - [129403] = 4, + [129423] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8134), 1, sym_identifier, - STATE(4698), 2, + STATE(4699), 2, sym_line_comment, sym_block_comment, - [129417] = 4, + [129437] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8136), 1, + ACTIONS(5249), 1, sym_identifier, - STATE(4699), 2, + STATE(4700), 2, sym_line_comment, sym_block_comment, - [129431] = 4, + [129451] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5267), 1, + ACTIONS(8136), 1, sym_identifier, - STATE(4700), 2, + STATE(4701), 2, sym_line_comment, sym_block_comment, - [129445] = 4, + [129465] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8138), 1, anon_sym_RBRACE, - STATE(4701), 2, + STATE(4702), 2, sym_line_comment, sym_block_comment, - [129459] = 4, + [129479] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, + ACTIONS(8140), 1, + anon_sym_RBRACE, + STATE(4703), 2, + sym_line_comment, + sym_block_comment, + [129493] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7422), 1, sym_identifier, - STATE(4702), 2, + STATE(4704), 2, sym_line_comment, sym_block_comment, - [129473] = 4, + [129507] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7566), 1, + ACTIONS(7562), 1, anon_sym_RPAREN, - STATE(4703), 2, + STATE(4705), 2, sym_line_comment, sym_block_comment, - [129487] = 4, + [129521] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8140), 1, + ACTIONS(8142), 1, anon_sym_RBRACE, - STATE(4704), 2, + STATE(4706), 2, sym_line_comment, sym_block_comment, - [129501] = 4, + [129535] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8142), 1, + ACTIONS(8144), 1, anon_sym_RBRACE, - STATE(4705), 2, + STATE(4707), 2, sym_line_comment, sym_block_comment, - [129515] = 4, + [129549] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8144), 1, + ACTIONS(1281), 1, anon_sym_RBRACE, - STATE(4706), 2, + STATE(4708), 2, sym_line_comment, sym_block_comment, - [129529] = 4, + [129563] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8146), 1, sym_identifier, - STATE(4707), 2, + STATE(4709), 2, sym_line_comment, sym_block_comment, - [129543] = 4, + [129577] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(8148), 1, anon_sym_RBRACE, - STATE(4708), 2, + STATE(4710), 2, sym_line_comment, sym_block_comment, - [129557] = 4, + [129591] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1289), 1, + ACTIONS(8150), 1, anon_sym_RBRACE, - STATE(4709), 2, + STATE(4711), 2, sym_line_comment, sym_block_comment, - [129571] = 4, + [129605] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8150), 1, + ACTIONS(8152), 1, anon_sym_RBRACE, - STATE(4710), 2, + STATE(4712), 2, sym_line_comment, sym_block_comment, - [129585] = 4, + [129619] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(8152), 1, + ACTIONS(8154), 1, anon_sym_RBRACE, - STATE(4711), 2, + STATE(4713), 2, sym_line_comment, sym_block_comment, - [129599] = 1, - ACTIONS(8154), 1, - ts_builtin_sym_end, - [129603] = 1, + [129633] = 1, ACTIONS(8156), 1, ts_builtin_sym_end, - [129607] = 1, + [129637] = 1, ACTIONS(8158), 1, ts_builtin_sym_end, + [129641] = 1, + ACTIONS(8160), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1962)] = 0, - [SMALL_STATE(1963)] = 127, + [SMALL_STATE(1963)] = 73, [SMALL_STATE(1964)] = 200, [SMALL_STATE(1965)] = 327, [SMALL_STATE(1966)] = 420, - [SMALL_STATE(1967)] = 541, - [SMALL_STATE(1968)] = 636, - [SMALL_STATE(1969)] = 727, - [SMALL_STATE(1970)] = 828, - [SMALL_STATE(1971)] = 931, - [SMALL_STATE(1972)] = 1022, - [SMALL_STATE(1973)] = 1117, - [SMALL_STATE(1974)] = 1232, - [SMALL_STATE(1975)] = 1347, - [SMALL_STATE(1976)] = 1438, - [SMALL_STATE(1977)] = 1531, - [SMALL_STATE(1978)] = 1646, - [SMALL_STATE(1979)] = 1737, - [SMALL_STATE(1980)] = 1852, - [SMALL_STATE(1981)] = 1971, - [SMALL_STATE(1982)] = 2062, - [SMALL_STATE(1983)] = 2157, + [SMALL_STATE(1967)] = 535, + [SMALL_STATE(1968)] = 626, + [SMALL_STATE(1969)] = 721, + [SMALL_STATE(1970)] = 822, + [SMALL_STATE(1971)] = 913, + [SMALL_STATE(1972)] = 1004, + [SMALL_STATE(1973)] = 1119, + [SMALL_STATE(1974)] = 1234, + [SMALL_STATE(1975)] = 1329, + [SMALL_STATE(1976)] = 1424, + [SMALL_STATE(1977)] = 1545, + [SMALL_STATE(1978)] = 1648, + [SMALL_STATE(1979)] = 1767, + [SMALL_STATE(1980)] = 1886, + [SMALL_STATE(1981)] = 2001, + [SMALL_STATE(1982)] = 2094, + [SMALL_STATE(1983)] = 2185, [SMALL_STATE(1984)] = 2276, - [SMALL_STATE(1985)] = 2377, - [SMALL_STATE(1986)] = 2480, - [SMALL_STATE(1987)] = 2575, + [SMALL_STATE(1985)] = 2371, + [SMALL_STATE(1986)] = 2462, + [SMALL_STATE(1987)] = 2565, [SMALL_STATE(1988)] = 2666, - [SMALL_STATE(1989)] = 2740, - [SMALL_STATE(1990)] = 2810, - [SMALL_STATE(1991)] = 2912, - [SMALL_STATE(1992)] = 2982, - [SMALL_STATE(1993)] = 3096, - [SMALL_STATE(1994)] = 3166, - [SMALL_STATE(1995)] = 3266, - [SMALL_STATE(1996)] = 3340, - [SMALL_STATE(1997)] = 3454, - [SMALL_STATE(1998)] = 3524, - [SMALL_STATE(1999)] = 3594, - [SMALL_STATE(2000)] = 3664, - [SMALL_STATE(2001)] = 3778, - [SMALL_STATE(2002)] = 3848, - [SMALL_STATE(2003)] = 3942, - [SMALL_STATE(2004)] = 4012, - [SMALL_STATE(2005)] = 4126, - [SMALL_STATE(2006)] = 4196, - [SMALL_STATE(2007)] = 4274, - [SMALL_STATE(2008)] = 4368, - [SMALL_STATE(2009)] = 4442, - [SMALL_STATE(2010)] = 4516, + [SMALL_STATE(1989)] = 2736, + [SMALL_STATE(1990)] = 2850, + [SMALL_STATE(1991)] = 2920, + [SMALL_STATE(1992)] = 2990, + [SMALL_STATE(1993)] = 3084, + [SMALL_STATE(1994)] = 3198, + [SMALL_STATE(1995)] = 3268, + [SMALL_STATE(1996)] = 3368, + [SMALL_STATE(1997)] = 3442, + [SMALL_STATE(1998)] = 3536, + [SMALL_STATE(1999)] = 3628, + [SMALL_STATE(2000)] = 3702, + [SMALL_STATE(2001)] = 3816, + [SMALL_STATE(2002)] = 3890, + [SMALL_STATE(2003)] = 3960, + [SMALL_STATE(2004)] = 4030, + [SMALL_STATE(2005)] = 4100, + [SMALL_STATE(2006)] = 4202, + [SMALL_STATE(2007)] = 4272, + [SMALL_STATE(2008)] = 4346, + [SMALL_STATE(2009)] = 4424, + [SMALL_STATE(2010)] = 4494, [SMALL_STATE(2011)] = 4608, - [SMALL_STATE(2012)] = 4679, + [SMALL_STATE(2012)] = 4721, [SMALL_STATE(2013)] = 4792, - [SMALL_STATE(2014)] = 4863, - [SMALL_STATE(2015)] = 4934, + [SMALL_STATE(2014)] = 4869, + [SMALL_STATE(2015)] = 4940, [SMALL_STATE(2016)] = 5011, [SMALL_STATE(2017)] = 5082, - [SMALL_STATE(2018)] = 5195, - [SMALL_STATE(2019)] = 5308, - [SMALL_STATE(2020)] = 5379, - [SMALL_STATE(2021)] = 5450, - [SMALL_STATE(2022)] = 5519, + [SMALL_STATE(2018)] = 5153, + [SMALL_STATE(2019)] = 5220, + [SMALL_STATE(2020)] = 5291, + [SMALL_STATE(2021)] = 5404, + [SMALL_STATE(2022)] = 5517, [SMALL_STATE(2023)] = 5586, [SMALL_STATE(2024)] = 5699, [SMALL_STATE(2025)] = 5767, [SMALL_STATE(2026)] = 5835, [SMALL_STATE(2027)] = 5903, [SMALL_STATE(2028)] = 5971, - [SMALL_STATE(2029)] = 6039, - [SMALL_STATE(2030)] = 6107, - [SMALL_STATE(2031)] = 6175, - [SMALL_STATE(2032)] = 6243, + [SMALL_STATE(2029)] = 6041, + [SMALL_STATE(2030)] = 6109, + [SMALL_STATE(2031)] = 6177, + [SMALL_STATE(2032)] = 6245, [SMALL_STATE(2033)] = 6313, [SMALL_STATE(2034)] = 6381, [SMALL_STATE(2035)] = 6449, - [SMALL_STATE(2036)] = 6517, - [SMALL_STATE(2037)] = 6585, - [SMALL_STATE(2038)] = 6653, - [SMALL_STATE(2039)] = 6721, - [SMALL_STATE(2040)] = 6789, - [SMALL_STATE(2041)] = 6857, - [SMALL_STATE(2042)] = 6925, - [SMALL_STATE(2043)] = 6993, - [SMALL_STATE(2044)] = 7061, - [SMALL_STATE(2045)] = 7129, - [SMALL_STATE(2046)] = 7197, - [SMALL_STATE(2047)] = 7265, - [SMALL_STATE(2048)] = 7333, - [SMALL_STATE(2049)] = 7401, - [SMALL_STATE(2050)] = 7469, - [SMALL_STATE(2051)] = 7537, - [SMALL_STATE(2052)] = 7605, - [SMALL_STATE(2053)] = 7673, - [SMALL_STATE(2054)] = 7741, - [SMALL_STATE(2055)] = 7809, - [SMALL_STATE(2056)] = 7877, - [SMALL_STATE(2057)] = 7945, - [SMALL_STATE(2058)] = 8013, - [SMALL_STATE(2059)] = 8081, - [SMALL_STATE(2060)] = 8149, - [SMALL_STATE(2061)] = 8217, - [SMALL_STATE(2062)] = 8285, - [SMALL_STATE(2063)] = 8353, - [SMALL_STATE(2064)] = 8421, - [SMALL_STATE(2065)] = 8489, - [SMALL_STATE(2066)] = 8557, - [SMALL_STATE(2067)] = 8625, - [SMALL_STATE(2068)] = 8693, - [SMALL_STATE(2069)] = 8761, - [SMALL_STATE(2070)] = 8829, + [SMALL_STATE(2036)] = 6519, + [SMALL_STATE(2037)] = 6587, + [SMALL_STATE(2038)] = 6655, + [SMALL_STATE(2039)] = 6723, + [SMALL_STATE(2040)] = 6791, + [SMALL_STATE(2041)] = 6859, + [SMALL_STATE(2042)] = 6927, + [SMALL_STATE(2043)] = 6995, + [SMALL_STATE(2044)] = 7063, + [SMALL_STATE(2045)] = 7131, + [SMALL_STATE(2046)] = 7199, + [SMALL_STATE(2047)] = 7267, + [SMALL_STATE(2048)] = 7335, + [SMALL_STATE(2049)] = 7403, + [SMALL_STATE(2050)] = 7471, + [SMALL_STATE(2051)] = 7539, + [SMALL_STATE(2052)] = 7607, + [SMALL_STATE(2053)] = 7675, + [SMALL_STATE(2054)] = 7743, + [SMALL_STATE(2055)] = 7811, + [SMALL_STATE(2056)] = 7879, + [SMALL_STATE(2057)] = 7947, + [SMALL_STATE(2058)] = 8015, + [SMALL_STATE(2059)] = 8083, + [SMALL_STATE(2060)] = 8151, + [SMALL_STATE(2061)] = 8219, + [SMALL_STATE(2062)] = 8287, + [SMALL_STATE(2063)] = 8355, + [SMALL_STATE(2064)] = 8423, + [SMALL_STATE(2065)] = 8491, + [SMALL_STATE(2066)] = 8559, + [SMALL_STATE(2067)] = 8627, + [SMALL_STATE(2068)] = 8695, + [SMALL_STATE(2069)] = 8763, + [SMALL_STATE(2070)] = 8831, [SMALL_STATE(2071)] = 8899, [SMALL_STATE(2072)] = 8967, [SMALL_STATE(2073)] = 9035, @@ -328718,7 +328980,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2091)] = 10259, [SMALL_STATE(2092)] = 10327, [SMALL_STATE(2093)] = 10395, - [SMALL_STATE(2094)] = 10465, + [SMALL_STATE(2094)] = 10463, [SMALL_STATE(2095)] = 10533, [SMALL_STATE(2096)] = 10601, [SMALL_STATE(2097)] = 10669, @@ -328726,9 +328988,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2099)] = 10809, [SMALL_STATE(2100)] = 10877, [SMALL_STATE(2101)] = 10945, - [SMALL_STATE(2102)] = 11013, - [SMALL_STATE(2103)] = 11081, - [SMALL_STATE(2104)] = 11149, + [SMALL_STATE(2102)] = 11017, + [SMALL_STATE(2103)] = 11085, + [SMALL_STATE(2104)] = 11153, [SMALL_STATE(2105)] = 11221, [SMALL_STATE(2106)] = 11289, [SMALL_STATE(2107)] = 11357, @@ -328759,26 +329021,26 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2132)] = 13057, [SMALL_STATE(2133)] = 13125, [SMALL_STATE(2134)] = 13193, - [SMALL_STATE(2135)] = 13263, - [SMALL_STATE(2136)] = 13331, - [SMALL_STATE(2137)] = 13399, - [SMALL_STATE(2138)] = 13467, - [SMALL_STATE(2139)] = 13535, - [SMALL_STATE(2140)] = 13603, - [SMALL_STATE(2141)] = 13671, - [SMALL_STATE(2142)] = 13741, - [SMALL_STATE(2143)] = 13809, - [SMALL_STATE(2144)] = 13881, - [SMALL_STATE(2145)] = 13949, - [SMALL_STATE(2146)] = 14017, - [SMALL_STATE(2147)] = 14085, - [SMALL_STATE(2148)] = 14153, - [SMALL_STATE(2149)] = 14223, - [SMALL_STATE(2150)] = 14291, - [SMALL_STATE(2151)] = 14359, - [SMALL_STATE(2152)] = 14427, - [SMALL_STATE(2153)] = 14495, - [SMALL_STATE(2154)] = 14563, + [SMALL_STATE(2135)] = 13261, + [SMALL_STATE(2136)] = 13329, + [SMALL_STATE(2137)] = 13397, + [SMALL_STATE(2138)] = 13465, + [SMALL_STATE(2139)] = 13533, + [SMALL_STATE(2140)] = 13601, + [SMALL_STATE(2141)] = 13669, + [SMALL_STATE(2142)] = 13737, + [SMALL_STATE(2143)] = 13805, + [SMALL_STATE(2144)] = 13873, + [SMALL_STATE(2145)] = 13945, + [SMALL_STATE(2146)] = 14013, + [SMALL_STATE(2147)] = 14081, + [SMALL_STATE(2148)] = 14149, + [SMALL_STATE(2149)] = 14217, + [SMALL_STATE(2150)] = 14285, + [SMALL_STATE(2151)] = 14353, + [SMALL_STATE(2152)] = 14421, + [SMALL_STATE(2153)] = 14489, + [SMALL_STATE(2154)] = 14561, [SMALL_STATE(2155)] = 14631, [SMALL_STATE(2156)] = 14699, [SMALL_STATE(2157)] = 14767, @@ -328788,69 +329050,69 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2161)] = 15039, [SMALL_STATE(2162)] = 15107, [SMALL_STATE(2163)] = 15175, - [SMALL_STATE(2164)] = 15247, - [SMALL_STATE(2165)] = 15315, - [SMALL_STATE(2166)] = 15383, - [SMALL_STATE(2167)] = 15451, - [SMALL_STATE(2168)] = 15519, - [SMALL_STATE(2169)] = 15587, + [SMALL_STATE(2164)] = 15245, + [SMALL_STATE(2165)] = 15313, + [SMALL_STATE(2166)] = 15381, + [SMALL_STATE(2167)] = 15449, + [SMALL_STATE(2168)] = 15517, + [SMALL_STATE(2169)] = 15585, [SMALL_STATE(2170)] = 15655, [SMALL_STATE(2171)] = 15723, - [SMALL_STATE(2172)] = 15791, - [SMALL_STATE(2173)] = 15859, - [SMALL_STATE(2174)] = 15927, - [SMALL_STATE(2175)] = 15995, - [SMALL_STATE(2176)] = 16063, - [SMALL_STATE(2177)] = 16131, - [SMALL_STATE(2178)] = 16201, - [SMALL_STATE(2179)] = 16269, - [SMALL_STATE(2180)] = 16337, - [SMALL_STATE(2181)] = 16405, - [SMALL_STATE(2182)] = 16473, - [SMALL_STATE(2183)] = 16541, - [SMALL_STATE(2184)] = 16609, - [SMALL_STATE(2185)] = 16677, - [SMALL_STATE(2186)] = 16745, - [SMALL_STATE(2187)] = 16813, - [SMALL_STATE(2188)] = 16881, - [SMALL_STATE(2189)] = 16949, - [SMALL_STATE(2190)] = 17017, - [SMALL_STATE(2191)] = 17087, - [SMALL_STATE(2192)] = 17155, - [SMALL_STATE(2193)] = 17223, - [SMALL_STATE(2194)] = 17291, - [SMALL_STATE(2195)] = 17359, - [SMALL_STATE(2196)] = 17427, - [SMALL_STATE(2197)] = 17495, - [SMALL_STATE(2198)] = 17563, - [SMALL_STATE(2199)] = 17631, - [SMALL_STATE(2200)] = 17699, - [SMALL_STATE(2201)] = 17767, - [SMALL_STATE(2202)] = 17835, - [SMALL_STATE(2203)] = 17903, - [SMALL_STATE(2204)] = 17971, - [SMALL_STATE(2205)] = 18041, - [SMALL_STATE(2206)] = 18109, - [SMALL_STATE(2207)] = 18177, - [SMALL_STATE(2208)] = 18245, - [SMALL_STATE(2209)] = 18313, - [SMALL_STATE(2210)] = 18381, - [SMALL_STATE(2211)] = 18449, - [SMALL_STATE(2212)] = 18517, - [SMALL_STATE(2213)] = 18589, - [SMALL_STATE(2214)] = 18657, - [SMALL_STATE(2215)] = 18725, - [SMALL_STATE(2216)] = 18793, - [SMALL_STATE(2217)] = 18861, - [SMALL_STATE(2218)] = 18929, - [SMALL_STATE(2219)] = 18997, - [SMALL_STATE(2220)] = 19065, - [SMALL_STATE(2221)] = 19133, - [SMALL_STATE(2222)] = 19201, - [SMALL_STATE(2223)] = 19269, - [SMALL_STATE(2224)] = 19337, - [SMALL_STATE(2225)] = 19405, - [SMALL_STATE(2226)] = 19473, + [SMALL_STATE(2172)] = 15793, + [SMALL_STATE(2173)] = 15861, + [SMALL_STATE(2174)] = 15931, + [SMALL_STATE(2175)] = 15999, + [SMALL_STATE(2176)] = 16067, + [SMALL_STATE(2177)] = 16135, + [SMALL_STATE(2178)] = 16203, + [SMALL_STATE(2179)] = 16271, + [SMALL_STATE(2180)] = 16339, + [SMALL_STATE(2181)] = 16407, + [SMALL_STATE(2182)] = 16475, + [SMALL_STATE(2183)] = 16543, + [SMALL_STATE(2184)] = 16611, + [SMALL_STATE(2185)] = 16679, + [SMALL_STATE(2186)] = 16747, + [SMALL_STATE(2187)] = 16815, + [SMALL_STATE(2188)] = 16883, + [SMALL_STATE(2189)] = 16951, + [SMALL_STATE(2190)] = 17021, + [SMALL_STATE(2191)] = 17089, + [SMALL_STATE(2192)] = 17161, + [SMALL_STATE(2193)] = 17229, + [SMALL_STATE(2194)] = 17297, + [SMALL_STATE(2195)] = 17365, + [SMALL_STATE(2196)] = 17433, + [SMALL_STATE(2197)] = 17501, + [SMALL_STATE(2198)] = 17569, + [SMALL_STATE(2199)] = 17637, + [SMALL_STATE(2200)] = 17705, + [SMALL_STATE(2201)] = 17775, + [SMALL_STATE(2202)] = 17843, + [SMALL_STATE(2203)] = 17911, + [SMALL_STATE(2204)] = 17979, + [SMALL_STATE(2205)] = 18047, + [SMALL_STATE(2206)] = 18115, + [SMALL_STATE(2207)] = 18183, + [SMALL_STATE(2208)] = 18251, + [SMALL_STATE(2209)] = 18319, + [SMALL_STATE(2210)] = 18387, + [SMALL_STATE(2211)] = 18455, + [SMALL_STATE(2212)] = 18523, + [SMALL_STATE(2213)] = 18591, + [SMALL_STATE(2214)] = 18659, + [SMALL_STATE(2215)] = 18727, + [SMALL_STATE(2216)] = 18795, + [SMALL_STATE(2217)] = 18863, + [SMALL_STATE(2218)] = 18931, + [SMALL_STATE(2219)] = 18999, + [SMALL_STATE(2220)] = 19067, + [SMALL_STATE(2221)] = 19135, + [SMALL_STATE(2222)] = 19203, + [SMALL_STATE(2223)] = 19271, + [SMALL_STATE(2224)] = 19339, + [SMALL_STATE(2225)] = 19407, + [SMALL_STATE(2226)] = 19475, [SMALL_STATE(2227)] = 19543, [SMALL_STATE(2228)] = 19611, [SMALL_STATE(2229)] = 19678, @@ -328866,152 +329128,152 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2239)] = 20402, [SMALL_STATE(2240)] = 20471, [SMALL_STATE(2241)] = 20535, - [SMALL_STATE(2242)] = 20599, + [SMALL_STATE(2242)] = 20601, [SMALL_STATE(2243)] = 20665, [SMALL_STATE(2244)] = 20729, - [SMALL_STATE(2245)] = 20793, - [SMALL_STATE(2246)] = 20857, - [SMALL_STATE(2247)] = 20921, + [SMALL_STATE(2245)] = 20795, + [SMALL_STATE(2246)] = 20859, + [SMALL_STATE(2247)] = 20923, [SMALL_STATE(2248)] = 20987, - [SMALL_STATE(2249)] = 21095, - [SMALL_STATE(2250)] = 21159, - [SMALL_STATE(2251)] = 21225, - [SMALL_STATE(2252)] = 21293, - [SMALL_STATE(2253)] = 21357, - [SMALL_STATE(2254)] = 21421, - [SMALL_STATE(2255)] = 21485, - [SMALL_STATE(2256)] = 21549, + [SMALL_STATE(2249)] = 21055, + [SMALL_STATE(2250)] = 21119, + [SMALL_STATE(2251)] = 21183, + [SMALL_STATE(2252)] = 21291, + [SMALL_STATE(2253)] = 21355, + [SMALL_STATE(2254)] = 21419, + [SMALL_STATE(2255)] = 21483, + [SMALL_STATE(2256)] = 21547, [SMALL_STATE(2257)] = 21613, [SMALL_STATE(2258)] = 21679, [SMALL_STATE(2259)] = 21742, - [SMALL_STATE(2260)] = 21825, - [SMALL_STATE(2261)] = 21888, - [SMALL_STATE(2262)] = 21951, - [SMALL_STATE(2263)] = 22014, - [SMALL_STATE(2264)] = 22077, - [SMALL_STATE(2265)] = 22140, - [SMALL_STATE(2266)] = 22203, - [SMALL_STATE(2267)] = 22266, - [SMALL_STATE(2268)] = 22329, - [SMALL_STATE(2269)] = 22392, - [SMALL_STATE(2270)] = 22455, - [SMALL_STATE(2271)] = 22518, - [SMALL_STATE(2272)] = 22581, - [SMALL_STATE(2273)] = 22644, - [SMALL_STATE(2274)] = 22707, - [SMALL_STATE(2275)] = 22770, - [SMALL_STATE(2276)] = 22833, - [SMALL_STATE(2277)] = 22896, - [SMALL_STATE(2278)] = 22959, - [SMALL_STATE(2279)] = 23022, - [SMALL_STATE(2280)] = 23123, - [SMALL_STATE(2281)] = 23186, - [SMALL_STATE(2282)] = 23249, - [SMALL_STATE(2283)] = 23312, - [SMALL_STATE(2284)] = 23375, - [SMALL_STATE(2285)] = 23438, - [SMALL_STATE(2286)] = 23501, - [SMALL_STATE(2287)] = 23564, - [SMALL_STATE(2288)] = 23627, - [SMALL_STATE(2289)] = 23690, - [SMALL_STATE(2290)] = 23791, - [SMALL_STATE(2291)] = 23854, - [SMALL_STATE(2292)] = 23917, - [SMALL_STATE(2293)] = 23980, - [SMALL_STATE(2294)] = 24043, - [SMALL_STATE(2295)] = 24106, - [SMALL_STATE(2296)] = 24169, - [SMALL_STATE(2297)] = 24232, - [SMALL_STATE(2298)] = 24295, - [SMALL_STATE(2299)] = 24358, - [SMALL_STATE(2300)] = 24421, - [SMALL_STATE(2301)] = 24484, - [SMALL_STATE(2302)] = 24547, - [SMALL_STATE(2303)] = 24610, - [SMALL_STATE(2304)] = 24673, - [SMALL_STATE(2305)] = 24736, - [SMALL_STATE(2306)] = 24799, - [SMALL_STATE(2307)] = 24862, - [SMALL_STATE(2308)] = 24973, - [SMALL_STATE(2309)] = 25036, - [SMALL_STATE(2310)] = 25099, - [SMALL_STATE(2311)] = 25162, - [SMALL_STATE(2312)] = 25225, - [SMALL_STATE(2313)] = 25288, - [SMALL_STATE(2314)] = 25351, - [SMALL_STATE(2315)] = 25414, - [SMALL_STATE(2316)] = 25477, - [SMALL_STATE(2317)] = 25540, - [SMALL_STATE(2318)] = 25603, - [SMALL_STATE(2319)] = 25666, - [SMALL_STATE(2320)] = 25729, - [SMALL_STATE(2321)] = 25792, - [SMALL_STATE(2322)] = 25857, - [SMALL_STATE(2323)] = 25920, - [SMALL_STATE(2324)] = 25983, - [SMALL_STATE(2325)] = 26064, - [SMALL_STATE(2326)] = 26127, - [SMALL_STATE(2327)] = 26190, - [SMALL_STATE(2328)] = 26253, - [SMALL_STATE(2329)] = 26316, - [SMALL_STATE(2330)] = 26379, - [SMALL_STATE(2331)] = 26442, - [SMALL_STATE(2332)] = 26505, - [SMALL_STATE(2333)] = 26570, - [SMALL_STATE(2334)] = 26633, - [SMALL_STATE(2335)] = 26696, - [SMALL_STATE(2336)] = 26759, - [SMALL_STATE(2337)] = 26822, - [SMALL_STATE(2338)] = 26885, - [SMALL_STATE(2339)] = 26972, - [SMALL_STATE(2340)] = 27061, - [SMALL_STATE(2341)] = 27124, - [SMALL_STATE(2342)] = 27187, - [SMALL_STATE(2343)] = 27250, - [SMALL_STATE(2344)] = 27313, - [SMALL_STATE(2345)] = 27376, - [SMALL_STATE(2346)] = 27439, - [SMALL_STATE(2347)] = 27502, - [SMALL_STATE(2348)] = 27565, - [SMALL_STATE(2349)] = 27628, - [SMALL_STATE(2350)] = 27691, - [SMALL_STATE(2351)] = 27754, - [SMALL_STATE(2352)] = 27817, - [SMALL_STATE(2353)] = 27880, - [SMALL_STATE(2354)] = 27943, - [SMALL_STATE(2355)] = 28006, - [SMALL_STATE(2356)] = 28069, - [SMALL_STATE(2357)] = 28132, - [SMALL_STATE(2358)] = 28195, - [SMALL_STATE(2359)] = 28258, - [SMALL_STATE(2360)] = 28321, - [SMALL_STATE(2361)] = 28384, - [SMALL_STATE(2362)] = 28447, - [SMALL_STATE(2363)] = 28530, - [SMALL_STATE(2364)] = 28593, - [SMALL_STATE(2365)] = 28658, + [SMALL_STATE(2260)] = 21805, + [SMALL_STATE(2261)] = 21868, + [SMALL_STATE(2262)] = 21931, + [SMALL_STATE(2263)] = 21994, + [SMALL_STATE(2264)] = 22057, + [SMALL_STATE(2265)] = 22120, + [SMALL_STATE(2266)] = 22183, + [SMALL_STATE(2267)] = 22246, + [SMALL_STATE(2268)] = 22309, + [SMALL_STATE(2269)] = 22372, + [SMALL_STATE(2270)] = 22435, + [SMALL_STATE(2271)] = 22498, + [SMALL_STATE(2272)] = 22561, + [SMALL_STATE(2273)] = 22624, + [SMALL_STATE(2274)] = 22687, + [SMALL_STATE(2275)] = 22750, + [SMALL_STATE(2276)] = 22813, + [SMALL_STATE(2277)] = 22876, + [SMALL_STATE(2278)] = 22939, + [SMALL_STATE(2279)] = 23002, + [SMALL_STATE(2280)] = 23065, + [SMALL_STATE(2281)] = 23128, + [SMALL_STATE(2282)] = 23191, + [SMALL_STATE(2283)] = 23254, + [SMALL_STATE(2284)] = 23317, + [SMALL_STATE(2285)] = 23380, + [SMALL_STATE(2286)] = 23443, + [SMALL_STATE(2287)] = 23506, + [SMALL_STATE(2288)] = 23569, + [SMALL_STATE(2289)] = 23632, + [SMALL_STATE(2290)] = 23695, + [SMALL_STATE(2291)] = 23758, + [SMALL_STATE(2292)] = 23821, + [SMALL_STATE(2293)] = 23884, + [SMALL_STATE(2294)] = 23947, + [SMALL_STATE(2295)] = 24010, + [SMALL_STATE(2296)] = 24073, + [SMALL_STATE(2297)] = 24136, + [SMALL_STATE(2298)] = 24199, + [SMALL_STATE(2299)] = 24262, + [SMALL_STATE(2300)] = 24325, + [SMALL_STATE(2301)] = 24388, + [SMALL_STATE(2302)] = 24451, + [SMALL_STATE(2303)] = 24514, + [SMALL_STATE(2304)] = 24577, + [SMALL_STATE(2305)] = 24640, + [SMALL_STATE(2306)] = 24703, + [SMALL_STATE(2307)] = 24766, + [SMALL_STATE(2308)] = 24829, + [SMALL_STATE(2309)] = 24892, + [SMALL_STATE(2310)] = 24955, + [SMALL_STATE(2311)] = 25018, + [SMALL_STATE(2312)] = 25081, + [SMALL_STATE(2313)] = 25144, + [SMALL_STATE(2314)] = 25207, + [SMALL_STATE(2315)] = 25290, + [SMALL_STATE(2316)] = 25353, + [SMALL_STATE(2317)] = 25418, + [SMALL_STATE(2318)] = 25481, + [SMALL_STATE(2319)] = 25544, + [SMALL_STATE(2320)] = 25645, + [SMALL_STATE(2321)] = 25708, + [SMALL_STATE(2322)] = 25771, + [SMALL_STATE(2323)] = 25834, + [SMALL_STATE(2324)] = 25897, + [SMALL_STATE(2325)] = 25978, + [SMALL_STATE(2326)] = 26061, + [SMALL_STATE(2327)] = 26124, + [SMALL_STATE(2328)] = 26187, + [SMALL_STATE(2329)] = 26250, + [SMALL_STATE(2330)] = 26313, + [SMALL_STATE(2331)] = 26376, + [SMALL_STATE(2332)] = 26441, + [SMALL_STATE(2333)] = 26504, + [SMALL_STATE(2334)] = 26567, + [SMALL_STATE(2335)] = 26654, + [SMALL_STATE(2336)] = 26717, + [SMALL_STATE(2337)] = 26780, + [SMALL_STATE(2338)] = 26843, + [SMALL_STATE(2339)] = 26906, + [SMALL_STATE(2340)] = 26995, + [SMALL_STATE(2341)] = 27058, + [SMALL_STATE(2342)] = 27121, + [SMALL_STATE(2343)] = 27184, + [SMALL_STATE(2344)] = 27295, + [SMALL_STATE(2345)] = 27358, + [SMALL_STATE(2346)] = 27421, + [SMALL_STATE(2347)] = 27484, + [SMALL_STATE(2348)] = 27547, + [SMALL_STATE(2349)] = 27610, + [SMALL_STATE(2350)] = 27711, + [SMALL_STATE(2351)] = 27774, + [SMALL_STATE(2352)] = 27837, + [SMALL_STATE(2353)] = 27900, + [SMALL_STATE(2354)] = 27963, + [SMALL_STATE(2355)] = 28026, + [SMALL_STATE(2356)] = 28089, + [SMALL_STATE(2357)] = 28152, + [SMALL_STATE(2358)] = 28215, + [SMALL_STATE(2359)] = 28278, + [SMALL_STATE(2360)] = 28341, + [SMALL_STATE(2361)] = 28406, + [SMALL_STATE(2362)] = 28469, + [SMALL_STATE(2363)] = 28532, + [SMALL_STATE(2364)] = 28595, + [SMALL_STATE(2365)] = 28660, [SMALL_STATE(2366)] = 28723, [SMALL_STATE(2367)] = 28786, [SMALL_STATE(2368)] = 28851, [SMALL_STATE(2369)] = 28914, [SMALL_STATE(2370)] = 28977, - [SMALL_STATE(2371)] = 29061, - [SMALL_STATE(2372)] = 29145, - [SMALL_STATE(2373)] = 29225, - [SMALL_STATE(2374)] = 29325, - [SMALL_STATE(2375)] = 29407, - [SMALL_STATE(2376)] = 29493, - [SMALL_STATE(2377)] = 29593, - [SMALL_STATE(2378)] = 29681, - [SMALL_STATE(2379)] = 29743, - [SMALL_STATE(2380)] = 29843, - [SMALL_STATE(2381)] = 29905, - [SMALL_STATE(2382)] = 29987, - [SMALL_STATE(2383)] = 30049, - [SMALL_STATE(2384)] = 30111, - [SMALL_STATE(2385)] = 30211, - [SMALL_STATE(2386)] = 30275, - [SMALL_STATE(2387)] = 30359, + [SMALL_STATE(2371)] = 29059, + [SMALL_STATE(2372)] = 29159, + [SMALL_STATE(2373)] = 29221, + [SMALL_STATE(2374)] = 29283, + [SMALL_STATE(2375)] = 29345, + [SMALL_STATE(2376)] = 29429, + [SMALL_STATE(2377)] = 29529, + [SMALL_STATE(2378)] = 29593, + [SMALL_STATE(2379)] = 29677, + [SMALL_STATE(2380)] = 29741, + [SMALL_STATE(2381)] = 29827, + [SMALL_STATE(2382)] = 29907, + [SMALL_STATE(2383)] = 30007, + [SMALL_STATE(2384)] = 30091, + [SMALL_STATE(2385)] = 30191, + [SMALL_STATE(2386)] = 30279, + [SMALL_STATE(2387)] = 30341, [SMALL_STATE(2388)] = 30423, [SMALL_STATE(2389)] = 30528, [SMALL_STATE(2390)] = 30593, @@ -329021,230 +329283,230 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2394)] = 30844, [SMALL_STATE(2395)] = 30906, [SMALL_STATE(2396)] = 30968, - [SMALL_STATE(2397)] = 31027, - [SMALL_STATE(2398)] = 31086, - [SMALL_STATE(2399)] = 31145, - [SMALL_STATE(2400)] = 31204, - [SMALL_STATE(2401)] = 31263, - [SMALL_STATE(2402)] = 31322, - [SMALL_STATE(2403)] = 31383, - [SMALL_STATE(2404)] = 31442, - [SMALL_STATE(2405)] = 31501, - [SMALL_STATE(2406)] = 31614, - [SMALL_STATE(2407)] = 31673, + [SMALL_STATE(2397)] = 31081, + [SMALL_STATE(2398)] = 31140, + [SMALL_STATE(2399)] = 31199, + [SMALL_STATE(2400)] = 31258, + [SMALL_STATE(2401)] = 31317, + [SMALL_STATE(2402)] = 31376, + [SMALL_STATE(2403)] = 31435, + [SMALL_STATE(2404)] = 31494, + [SMALL_STATE(2405)] = 31553, + [SMALL_STATE(2406)] = 31612, + [SMALL_STATE(2407)] = 31671, [SMALL_STATE(2408)] = 31732, - [SMALL_STATE(2409)] = 31791, - [SMALL_STATE(2410)] = 31850, - [SMALL_STATE(2411)] = 31909, - [SMALL_STATE(2412)] = 31968, - [SMALL_STATE(2413)] = 32027, - [SMALL_STATE(2414)] = 32086, - [SMALL_STATE(2415)] = 32145, - [SMALL_STATE(2416)] = 32204, - [SMALL_STATE(2417)] = 32263, - [SMALL_STATE(2418)] = 32322, - [SMALL_STATE(2419)] = 32381, - [SMALL_STATE(2420)] = 32494, - [SMALL_STATE(2421)] = 32553, - [SMALL_STATE(2422)] = 32612, - [SMALL_STATE(2423)] = 32671, - [SMALL_STATE(2424)] = 32730, - [SMALL_STATE(2425)] = 32789, - [SMALL_STATE(2426)] = 32902, + [SMALL_STATE(2409)] = 31845, + [SMALL_STATE(2410)] = 31904, + [SMALL_STATE(2411)] = 31963, + [SMALL_STATE(2412)] = 32076, + [SMALL_STATE(2413)] = 32135, + [SMALL_STATE(2414)] = 32194, + [SMALL_STATE(2415)] = 32253, + [SMALL_STATE(2416)] = 32366, + [SMALL_STATE(2417)] = 32425, + [SMALL_STATE(2418)] = 32484, + [SMALL_STATE(2419)] = 32543, + [SMALL_STATE(2420)] = 32602, + [SMALL_STATE(2421)] = 32661, + [SMALL_STATE(2422)] = 32720, + [SMALL_STATE(2423)] = 32779, + [SMALL_STATE(2424)] = 32838, + [SMALL_STATE(2425)] = 32897, + [SMALL_STATE(2426)] = 32956, [SMALL_STATE(2427)] = 33015, [SMALL_STATE(2428)] = 33074, [SMALL_STATE(2429)] = 33133, - [SMALL_STATE(2430)] = 33246, - [SMALL_STATE(2431)] = 33307, - [SMALL_STATE(2432)] = 33420, - [SMALL_STATE(2433)] = 33479, - [SMALL_STATE(2434)] = 33538, - [SMALL_STATE(2435)] = 33597, - [SMALL_STATE(2436)] = 33656, - [SMALL_STATE(2437)] = 33769, - [SMALL_STATE(2438)] = 33828, - [SMALL_STATE(2439)] = 33887, - [SMALL_STATE(2440)] = 33946, - [SMALL_STATE(2441)] = 34059, - [SMALL_STATE(2442)] = 34172, - [SMALL_STATE(2443)] = 34231, - [SMALL_STATE(2444)] = 34290, - [SMALL_STATE(2445)] = 34349, - [SMALL_STATE(2446)] = 34408, - [SMALL_STATE(2447)] = 34467, - [SMALL_STATE(2448)] = 34528, - [SMALL_STATE(2449)] = 34587, - [SMALL_STATE(2450)] = 34646, - [SMALL_STATE(2451)] = 34705, - [SMALL_STATE(2452)] = 34764, - [SMALL_STATE(2453)] = 34823, - [SMALL_STATE(2454)] = 34882, - [SMALL_STATE(2455)] = 34941, - [SMALL_STATE(2456)] = 35000, - [SMALL_STATE(2457)] = 35059, - [SMALL_STATE(2458)] = 35118, - [SMALL_STATE(2459)] = 35231, - [SMALL_STATE(2460)] = 35290, - [SMALL_STATE(2461)] = 35349, - [SMALL_STATE(2462)] = 35408, - [SMALL_STATE(2463)] = 35467, - [SMALL_STATE(2464)] = 35526, - [SMALL_STATE(2465)] = 35585, - [SMALL_STATE(2466)] = 35698, - [SMALL_STATE(2467)] = 35757, - [SMALL_STATE(2468)] = 35816, - [SMALL_STATE(2469)] = 35875, - [SMALL_STATE(2470)] = 35934, - [SMALL_STATE(2471)] = 35993, - [SMALL_STATE(2472)] = 36106, - [SMALL_STATE(2473)] = 36165, - [SMALL_STATE(2474)] = 36224, - [SMALL_STATE(2475)] = 36283, - [SMALL_STATE(2476)] = 36342, - [SMALL_STATE(2477)] = 36401, - [SMALL_STATE(2478)] = 36460, - [SMALL_STATE(2479)] = 36519, - [SMALL_STATE(2480)] = 36578, - [SMALL_STATE(2481)] = 36637, - [SMALL_STATE(2482)] = 36696, - [SMALL_STATE(2483)] = 36755, - [SMALL_STATE(2484)] = 36814, - [SMALL_STATE(2485)] = 36873, - [SMALL_STATE(2486)] = 36932, + [SMALL_STATE(2430)] = 33192, + [SMALL_STATE(2431)] = 33251, + [SMALL_STATE(2432)] = 33310, + [SMALL_STATE(2433)] = 33369, + [SMALL_STATE(2434)] = 33428, + [SMALL_STATE(2435)] = 33541, + [SMALL_STATE(2436)] = 33600, + [SMALL_STATE(2437)] = 33659, + [SMALL_STATE(2438)] = 33718, + [SMALL_STATE(2439)] = 33777, + [SMALL_STATE(2440)] = 33890, + [SMALL_STATE(2441)] = 33949, + [SMALL_STATE(2442)] = 34008, + [SMALL_STATE(2443)] = 34067, + [SMALL_STATE(2444)] = 34180, + [SMALL_STATE(2445)] = 34239, + [SMALL_STATE(2446)] = 34298, + [SMALL_STATE(2447)] = 34357, + [SMALL_STATE(2448)] = 34418, + [SMALL_STATE(2449)] = 34477, + [SMALL_STATE(2450)] = 34536, + [SMALL_STATE(2451)] = 34595, + [SMALL_STATE(2452)] = 34654, + [SMALL_STATE(2453)] = 34767, + [SMALL_STATE(2454)] = 34826, + [SMALL_STATE(2455)] = 34939, + [SMALL_STATE(2456)] = 34998, + [SMALL_STATE(2457)] = 35057, + [SMALL_STATE(2458)] = 35116, + [SMALL_STATE(2459)] = 35175, + [SMALL_STATE(2460)] = 35234, + [SMALL_STATE(2461)] = 35347, + [SMALL_STATE(2462)] = 35406, + [SMALL_STATE(2463)] = 35465, + [SMALL_STATE(2464)] = 35524, + [SMALL_STATE(2465)] = 35583, + [SMALL_STATE(2466)] = 35642, + [SMALL_STATE(2467)] = 35701, + [SMALL_STATE(2468)] = 35760, + [SMALL_STATE(2469)] = 35819, + [SMALL_STATE(2470)] = 35878, + [SMALL_STATE(2471)] = 35937, + [SMALL_STATE(2472)] = 35996, + [SMALL_STATE(2473)] = 36055, + [SMALL_STATE(2474)] = 36116, + [SMALL_STATE(2475)] = 36175, + [SMALL_STATE(2476)] = 36234, + [SMALL_STATE(2477)] = 36293, + [SMALL_STATE(2478)] = 36352, + [SMALL_STATE(2479)] = 36411, + [SMALL_STATE(2480)] = 36524, + [SMALL_STATE(2481)] = 36583, + [SMALL_STATE(2482)] = 36642, + [SMALL_STATE(2483)] = 36701, + [SMALL_STATE(2484)] = 36760, + [SMALL_STATE(2485)] = 36819, + [SMALL_STATE(2486)] = 36878, [SMALL_STATE(2487)] = 36991, [SMALL_STATE(2488)] = 37050, [SMALL_STATE(2489)] = 37109, [SMALL_STATE(2490)] = 37168, - [SMALL_STATE(2491)] = 37227, - [SMALL_STATE(2492)] = 37340, - [SMALL_STATE(2493)] = 37399, - [SMALL_STATE(2494)] = 37458, - [SMALL_STATE(2495)] = 37517, - [SMALL_STATE(2496)] = 37580, - [SMALL_STATE(2497)] = 37639, - [SMALL_STATE(2498)] = 37698, - [SMALL_STATE(2499)] = 37757, - [SMALL_STATE(2500)] = 37816, - [SMALL_STATE(2501)] = 37875, - [SMALL_STATE(2502)] = 37934, + [SMALL_STATE(2491)] = 37231, + [SMALL_STATE(2492)] = 37290, + [SMALL_STATE(2493)] = 37349, + [SMALL_STATE(2494)] = 37408, + [SMALL_STATE(2495)] = 37467, + [SMALL_STATE(2496)] = 37526, + [SMALL_STATE(2497)] = 37585, + [SMALL_STATE(2498)] = 37644, + [SMALL_STATE(2499)] = 37703, + [SMALL_STATE(2500)] = 37762, + [SMALL_STATE(2501)] = 37821, + [SMALL_STATE(2502)] = 37880, [SMALL_STATE(2503)] = 37993, [SMALL_STATE(2504)] = 38052, - [SMALL_STATE(2505)] = 38136, - [SMALL_STATE(2506)] = 38242, - [SMALL_STATE(2507)] = 38334, - [SMALL_STATE(2508)] = 38428, - [SMALL_STATE(2509)] = 38522, - [SMALL_STATE(2510)] = 38610, - [SMALL_STATE(2511)] = 38716, - [SMALL_STATE(2512)] = 38810, - [SMALL_STATE(2513)] = 38884, - [SMALL_STATE(2514)] = 38978, - [SMALL_STATE(2515)] = 39058, - [SMALL_STATE(2516)] = 39132, - [SMALL_STATE(2517)] = 39228, + [SMALL_STATE(2505)] = 38128, + [SMALL_STATE(2506)] = 38236, + [SMALL_STATE(2507)] = 38342, + [SMALL_STATE(2508)] = 38430, + [SMALL_STATE(2509)] = 38524, + [SMALL_STATE(2510)] = 38616, + [SMALL_STATE(2511)] = 38704, + [SMALL_STATE(2512)] = 38782, + [SMALL_STATE(2513)] = 38866, + [SMALL_STATE(2514)] = 38946, + [SMALL_STATE(2515)] = 39052, + [SMALL_STATE(2516)] = 39148, + [SMALL_STATE(2517)] = 39208, [SMALL_STATE(2518)] = 39316, [SMALL_STATE(2519)] = 39390, - [SMALL_STATE(2520)] = 39498, - [SMALL_STATE(2521)] = 39606, - [SMALL_STATE(2522)] = 39690, - [SMALL_STATE(2523)] = 39778, - [SMALL_STATE(2524)] = 39858, - [SMALL_STATE(2525)] = 39956, - [SMALL_STATE(2526)] = 40050, - [SMALL_STATE(2527)] = 40146, - [SMALL_STATE(2528)] = 40208, - [SMALL_STATE(2529)] = 40292, - [SMALL_STATE(2530)] = 40380, - [SMALL_STATE(2531)] = 40440, - [SMALL_STATE(2532)] = 40500, - [SMALL_STATE(2533)] = 40596, - [SMALL_STATE(2534)] = 40692, - [SMALL_STATE(2535)] = 40788, - [SMALL_STATE(2536)] = 40864, - [SMALL_STATE(2537)] = 40942, - [SMALL_STATE(2538)] = 41024, - [SMALL_STATE(2539)] = 41084, - [SMALL_STATE(2540)] = 41164, + [SMALL_STATE(2520)] = 39452, + [SMALL_STATE(2521)] = 39532, + [SMALL_STATE(2522)] = 39592, + [SMALL_STATE(2523)] = 39676, + [SMALL_STATE(2524)] = 39758, + [SMALL_STATE(2525)] = 39818, + [SMALL_STATE(2526)] = 39916, + [SMALL_STATE(2527)] = 39996, + [SMALL_STATE(2528)] = 40092, + [SMALL_STATE(2529)] = 40166, + [SMALL_STATE(2530)] = 40260, + [SMALL_STATE(2531)] = 40338, + [SMALL_STATE(2532)] = 40434, + [SMALL_STATE(2533)] = 40528, + [SMALL_STATE(2534)] = 40622, + [SMALL_STATE(2535)] = 40706, + [SMALL_STATE(2536)] = 40780, + [SMALL_STATE(2537)] = 40868, + [SMALL_STATE(2538)] = 40962, + [SMALL_STATE(2539)] = 41058, + [SMALL_STATE(2540)] = 41154, [SMALL_STATE(2541)] = 41242, - [SMALL_STATE(2542)] = 41331, - [SMALL_STATE(2543)] = 41418, - [SMALL_STATE(2544)] = 41479, - [SMALL_STATE(2545)] = 41586, - [SMALL_STATE(2546)] = 41643, - [SMALL_STATE(2547)] = 41728, - [SMALL_STATE(2548)] = 41831, - [SMALL_STATE(2549)] = 41888, - [SMALL_STATE(2550)] = 41991, - [SMALL_STATE(2551)] = 42050, - [SMALL_STATE(2552)] = 42157, - [SMALL_STATE(2553)] = 42248, - [SMALL_STATE(2554)] = 42309, - [SMALL_STATE(2555)] = 42368, - [SMALL_STATE(2556)] = 42425, - [SMALL_STATE(2557)] = 42510, - [SMALL_STATE(2558)] = 42617, - [SMALL_STATE(2559)] = 42674, - [SMALL_STATE(2560)] = 42755, - [SMALL_STATE(2561)] = 42858, - [SMALL_STATE(2562)] = 42965, - [SMALL_STATE(2563)] = 43056, - [SMALL_STATE(2564)] = 43145, - [SMALL_STATE(2565)] = 43254, - [SMALL_STATE(2566)] = 43315, - [SMALL_STATE(2567)] = 43376, - [SMALL_STATE(2568)] = 43463, - [SMALL_STATE(2569)] = 43566, - [SMALL_STATE(2570)] = 43647, - [SMALL_STATE(2571)] = 43742, - [SMALL_STATE(2572)] = 43835, - [SMALL_STATE(2573)] = 43920, - [SMALL_STATE(2574)] = 43981, - [SMALL_STATE(2575)] = 44084, - [SMALL_STATE(2576)] = 44167, + [SMALL_STATE(2542)] = 41327, + [SMALL_STATE(2543)] = 41430, + [SMALL_STATE(2544)] = 41515, + [SMALL_STATE(2545)] = 41606, + [SMALL_STATE(2546)] = 41663, + [SMALL_STATE(2547)] = 41752, + [SMALL_STATE(2548)] = 41837, + [SMALL_STATE(2549)] = 41898, + [SMALL_STATE(2550)] = 41959, + [SMALL_STATE(2551)] = 42020, + [SMALL_STATE(2552)] = 42129, + [SMALL_STATE(2553)] = 42210, + [SMALL_STATE(2554)] = 42271, + [SMALL_STATE(2555)] = 42374, + [SMALL_STATE(2556)] = 42463, + [SMALL_STATE(2557)] = 42524, + [SMALL_STATE(2558)] = 42631, + [SMALL_STATE(2559)] = 42738, + [SMALL_STATE(2560)] = 42841, + [SMALL_STATE(2561)] = 42926, + [SMALL_STATE(2562)] = 42985, + [SMALL_STATE(2563)] = 43088, + [SMALL_STATE(2564)] = 43169, + [SMALL_STATE(2565)] = 43228, + [SMALL_STATE(2566)] = 43335, + [SMALL_STATE(2567)] = 43418, + [SMALL_STATE(2568)] = 43505, + [SMALL_STATE(2569)] = 43598, + [SMALL_STATE(2570)] = 43655, + [SMALL_STATE(2571)] = 43746, + [SMALL_STATE(2572)] = 43803, + [SMALL_STATE(2573)] = 43860, + [SMALL_STATE(2574)] = 43955, + [SMALL_STATE(2575)] = 44062, + [SMALL_STATE(2576)] = 44165, [SMALL_STATE(2577)] = 44252, [SMALL_STATE(2578)] = 44356, - [SMALL_STATE(2579)] = 44458, - [SMALL_STATE(2580)] = 44516, - [SMALL_STATE(2581)] = 44622, - [SMALL_STATE(2582)] = 44682, - [SMALL_STATE(2583)] = 44744, - [SMALL_STATE(2584)] = 44846, - [SMALL_STATE(2585)] = 44952, - [SMALL_STATE(2586)] = 45056, - [SMALL_STATE(2587)] = 45160, - [SMALL_STATE(2588)] = 45262, - [SMALL_STATE(2589)] = 45368, - [SMALL_STATE(2590)] = 45426, - [SMALL_STATE(2591)] = 45530, - [SMALL_STATE(2592)] = 45588, - [SMALL_STATE(2593)] = 45694, - [SMALL_STATE(2594)] = 45800, - [SMALL_STATE(2595)] = 45906, - [SMALL_STATE(2596)] = 46012, - [SMALL_STATE(2597)] = 46116, + [SMALL_STATE(2579)] = 44462, + [SMALL_STATE(2580)] = 44524, + [SMALL_STATE(2581)] = 44626, + [SMALL_STATE(2582)] = 44730, + [SMALL_STATE(2583)] = 44836, + [SMALL_STATE(2584)] = 44940, + [SMALL_STATE(2585)] = 45046, + [SMALL_STATE(2586)] = 45104, + [SMALL_STATE(2587)] = 45208, + [SMALL_STATE(2588)] = 45310, + [SMALL_STATE(2589)] = 45416, + [SMALL_STATE(2590)] = 45474, + [SMALL_STATE(2591)] = 45578, + [SMALL_STATE(2592)] = 45636, + [SMALL_STATE(2593)] = 45742, + [SMALL_STATE(2594)] = 45848, + [SMALL_STATE(2595)] = 45952, + [SMALL_STATE(2596)] = 46056, + [SMALL_STATE(2597)] = 46118, [SMALL_STATE(2598)] = 46222, [SMALL_STATE(2599)] = 46324, - [SMALL_STATE(2600)] = 46428, - [SMALL_STATE(2601)] = 46532, - [SMALL_STATE(2602)] = 46638, - [SMALL_STATE(2603)] = 46742, - [SMALL_STATE(2604)] = 46846, - [SMALL_STATE(2605)] = 46950, - [SMALL_STATE(2606)] = 47056, - [SMALL_STATE(2607)] = 47114, - [SMALL_STATE(2608)] = 47172, + [SMALL_STATE(2600)] = 46380, + [SMALL_STATE(2601)] = 46484, + [SMALL_STATE(2602)] = 46542, + [SMALL_STATE(2603)] = 46646, + [SMALL_STATE(2604)] = 46752, + [SMALL_STATE(2605)] = 46858, + [SMALL_STATE(2606)] = 46964, + [SMALL_STATE(2607)] = 47020, + [SMALL_STATE(2608)] = 47126, [SMALL_STATE(2609)] = 47230, - [SMALL_STATE(2610)] = 47336, - [SMALL_STATE(2611)] = 47440, - [SMALL_STATE(2612)] = 47544, - [SMALL_STATE(2613)] = 47650, - [SMALL_STATE(2614)] = 47752, - [SMALL_STATE(2615)] = 47856, - [SMALL_STATE(2616)] = 47918, - [SMALL_STATE(2617)] = 47974, - [SMALL_STATE(2618)] = 48030, - [SMALL_STATE(2619)] = 48134, - [SMALL_STATE(2620)] = 48240, + [SMALL_STATE(2610)] = 47288, + [SMALL_STATE(2611)] = 47392, + [SMALL_STATE(2612)] = 47450, + [SMALL_STATE(2613)] = 47554, + [SMALL_STATE(2614)] = 47660, + [SMALL_STATE(2615)] = 47764, + [SMALL_STATE(2616)] = 47866, + [SMALL_STATE(2617)] = 47972, + [SMALL_STATE(2618)] = 48032, + [SMALL_STATE(2619)] = 48090, + [SMALL_STATE(2620)] = 48196, [SMALL_STATE(2621)] = 48298, [SMALL_STATE(2622)] = 48353, [SMALL_STATE(2623)] = 48408, @@ -329261,30 +329523,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2634)] = 49013, [SMALL_STATE(2635)] = 49068, [SMALL_STATE(2636)] = 49123, - [SMALL_STATE(2637)] = 49224, - [SMALL_STATE(2638)] = 49281, - [SMALL_STATE(2639)] = 49382, - [SMALL_STATE(2640)] = 49437, + [SMALL_STATE(2637)] = 49178, + [SMALL_STATE(2638)] = 49233, + [SMALL_STATE(2639)] = 49290, + [SMALL_STATE(2640)] = 49391, [SMALL_STATE(2641)] = 49492, - [SMALL_STATE(2642)] = 49593, - [SMALL_STATE(2643)] = 49694, - [SMALL_STATE(2644)] = 49795, - [SMALL_STATE(2645)] = 49896, - [SMALL_STATE(2646)] = 49997, - [SMALL_STATE(2647)] = 50052, + [SMALL_STATE(2642)] = 49547, + [SMALL_STATE(2643)] = 49602, + [SMALL_STATE(2644)] = 49703, + [SMALL_STATE(2645)] = 49804, + [SMALL_STATE(2646)] = 49905, + [SMALL_STATE(2647)] = 50006, [SMALL_STATE(2648)] = 50107, [SMALL_STATE(2649)] = 50162, [SMALL_STATE(2650)] = 50217, - [SMALL_STATE(2651)] = 50318, - [SMALL_STATE(2652)] = 50373, + [SMALL_STATE(2651)] = 50272, + [SMALL_STATE(2652)] = 50327, [SMALL_STATE(2653)] = 50428, - [SMALL_STATE(2654)] = 50529, - [SMALL_STATE(2655)] = 50630, - [SMALL_STATE(2656)] = 50687, - [SMALL_STATE(2657)] = 50742, + [SMALL_STATE(2654)] = 50483, + [SMALL_STATE(2655)] = 50538, + [SMALL_STATE(2656)] = 50639, + [SMALL_STATE(2657)] = 50740, [SMALL_STATE(2658)] = 50797, - [SMALL_STATE(2659)] = 50854, - [SMALL_STATE(2660)] = 50909, + [SMALL_STATE(2659)] = 50852, + [SMALL_STATE(2660)] = 50907, [SMALL_STATE(2661)] = 50964, [SMALL_STATE(2662)] = 51019, [SMALL_STATE(2663)] = 51074, @@ -329295,393 +329557,393 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2668)] = 51349, [SMALL_STATE(2669)] = 51404, [SMALL_STATE(2670)] = 51459, - [SMALL_STATE(2671)] = 51514, - [SMALL_STATE(2672)] = 51569, - [SMALL_STATE(2673)] = 51624, - [SMALL_STATE(2674)] = 51679, - [SMALL_STATE(2675)] = 51734, - [SMALL_STATE(2676)] = 51789, - [SMALL_STATE(2677)] = 51844, - [SMALL_STATE(2678)] = 51899, - [SMALL_STATE(2679)] = 51954, - [SMALL_STATE(2680)] = 52009, - [SMALL_STATE(2681)] = 52064, - [SMALL_STATE(2682)] = 52119, - [SMALL_STATE(2683)] = 52174, - [SMALL_STATE(2684)] = 52229, - [SMALL_STATE(2685)] = 52284, - [SMALL_STATE(2686)] = 52339, - [SMALL_STATE(2687)] = 52398, + [SMALL_STATE(2671)] = 51560, + [SMALL_STATE(2672)] = 51615, + [SMALL_STATE(2673)] = 51670, + [SMALL_STATE(2674)] = 51725, + [SMALL_STATE(2675)] = 51780, + [SMALL_STATE(2676)] = 51835, + [SMALL_STATE(2677)] = 51890, + [SMALL_STATE(2678)] = 51945, + [SMALL_STATE(2679)] = 52000, + [SMALL_STATE(2680)] = 52055, + [SMALL_STATE(2681)] = 52110, + [SMALL_STATE(2682)] = 52165, + [SMALL_STATE(2683)] = 52220, + [SMALL_STATE(2684)] = 52275, + [SMALL_STATE(2685)] = 52330, + [SMALL_STATE(2686)] = 52385, + [SMALL_STATE(2687)] = 52440, [SMALL_STATE(2688)] = 52499, [SMALL_STATE(2689)] = 52600, - [SMALL_STATE(2690)] = 52655, - [SMALL_STATE(2691)] = 52710, - [SMALL_STATE(2692)] = 52765, - [SMALL_STATE(2693)] = 52820, - [SMALL_STATE(2694)] = 52877, - [SMALL_STATE(2695)] = 52932, - [SMALL_STATE(2696)] = 52987, - [SMALL_STATE(2697)] = 53042, + [SMALL_STATE(2690)] = 52701, + [SMALL_STATE(2691)] = 52756, + [SMALL_STATE(2692)] = 52811, + [SMALL_STATE(2693)] = 52866, + [SMALL_STATE(2694)] = 52921, + [SMALL_STATE(2695)] = 52978, + [SMALL_STATE(2696)] = 53033, + [SMALL_STATE(2697)] = 53088, [SMALL_STATE(2698)] = 53143, - [SMALL_STATE(2699)] = 53198, + [SMALL_STATE(2699)] = 53244, [SMALL_STATE(2700)] = 53299, [SMALL_STATE(2701)] = 53400, - [SMALL_STATE(2702)] = 53455, + [SMALL_STATE(2702)] = 53501, [SMALL_STATE(2703)] = 53556, - [SMALL_STATE(2704)] = 53613, - [SMALL_STATE(2705)] = 53668, - [SMALL_STATE(2706)] = 53723, - [SMALL_STATE(2707)] = 53778, - [SMALL_STATE(2708)] = 53833, - [SMALL_STATE(2709)] = 53934, + [SMALL_STATE(2704)] = 53657, + [SMALL_STATE(2705)] = 53758, + [SMALL_STATE(2706)] = 53813, + [SMALL_STATE(2707)] = 53868, + [SMALL_STATE(2708)] = 53923, + [SMALL_STATE(2709)] = 53980, [SMALL_STATE(2710)] = 54035, - [SMALL_STATE(2711)] = 54090, - [SMALL_STATE(2712)] = 54145, - [SMALL_STATE(2713)] = 54200, - [SMALL_STATE(2714)] = 54255, - [SMALL_STATE(2715)] = 54310, - [SMALL_STATE(2716)] = 54365, - [SMALL_STATE(2717)] = 54422, - [SMALL_STATE(2718)] = 54479, - [SMALL_STATE(2719)] = 54580, - [SMALL_STATE(2720)] = 54681, - [SMALL_STATE(2721)] = 54782, - [SMALL_STATE(2722)] = 54837, - [SMALL_STATE(2723)] = 54892, - [SMALL_STATE(2724)] = 54947, - [SMALL_STATE(2725)] = 55002, + [SMALL_STATE(2711)] = 54136, + [SMALL_STATE(2712)] = 54191, + [SMALL_STATE(2713)] = 54246, + [SMALL_STATE(2714)] = 54301, + [SMALL_STATE(2715)] = 54356, + [SMALL_STATE(2716)] = 54411, + [SMALL_STATE(2717)] = 54468, + [SMALL_STATE(2718)] = 54525, + [SMALL_STATE(2719)] = 54626, + [SMALL_STATE(2720)] = 54727, + [SMALL_STATE(2721)] = 54828, + [SMALL_STATE(2722)] = 54883, + [SMALL_STATE(2723)] = 54938, + [SMALL_STATE(2724)] = 54993, + [SMALL_STATE(2725)] = 55048, [SMALL_STATE(2726)] = 55103, - [SMALL_STATE(2727)] = 55158, - [SMALL_STATE(2728)] = 55213, - [SMALL_STATE(2729)] = 55314, - [SMALL_STATE(2730)] = 55369, - [SMALL_STATE(2731)] = 55424, - [SMALL_STATE(2732)] = 55479, - [SMALL_STATE(2733)] = 55534, - [SMALL_STATE(2734)] = 55589, - [SMALL_STATE(2735)] = 55644, - [SMALL_STATE(2736)] = 55699, - [SMALL_STATE(2737)] = 55754, - [SMALL_STATE(2738)] = 55809, - [SMALL_STATE(2739)] = 55864, - [SMALL_STATE(2740)] = 55919, - [SMALL_STATE(2741)] = 55974, - [SMALL_STATE(2742)] = 56029, + [SMALL_STATE(2727)] = 55204, + [SMALL_STATE(2728)] = 55259, + [SMALL_STATE(2729)] = 55360, + [SMALL_STATE(2730)] = 55415, + [SMALL_STATE(2731)] = 55470, + [SMALL_STATE(2732)] = 55525, + [SMALL_STATE(2733)] = 55580, + [SMALL_STATE(2734)] = 55635, + [SMALL_STATE(2735)] = 55690, + [SMALL_STATE(2736)] = 55745, + [SMALL_STATE(2737)] = 55800, + [SMALL_STATE(2738)] = 55855, + [SMALL_STATE(2739)] = 55910, + [SMALL_STATE(2740)] = 55965, + [SMALL_STATE(2741)] = 56020, + [SMALL_STATE(2742)] = 56075, [SMALL_STATE(2743)] = 56130, [SMALL_STATE(2744)] = 56231, [SMALL_STATE(2745)] = 56332, - [SMALL_STATE(2746)] = 56387, - [SMALL_STATE(2747)] = 56442, - [SMALL_STATE(2748)] = 56497, - [SMALL_STATE(2749)] = 56554, - [SMALL_STATE(2750)] = 56613, - [SMALL_STATE(2751)] = 56672, - [SMALL_STATE(2752)] = 56727, - [SMALL_STATE(2753)] = 56828, - [SMALL_STATE(2754)] = 56883, - [SMALL_STATE(2755)] = 56984, - [SMALL_STATE(2756)] = 57085, - [SMALL_STATE(2757)] = 57140, - [SMALL_STATE(2758)] = 57241, - [SMALL_STATE(2759)] = 57342, - [SMALL_STATE(2760)] = 57397, - [SMALL_STATE(2761)] = 57452, - [SMALL_STATE(2762)] = 57507, - [SMALL_STATE(2763)] = 57562, - [SMALL_STATE(2764)] = 57617, - [SMALL_STATE(2765)] = 57718, - [SMALL_STATE(2766)] = 57819, - [SMALL_STATE(2767)] = 57874, - [SMALL_STATE(2768)] = 57975, - [SMALL_STATE(2769)] = 58030, - [SMALL_STATE(2770)] = 58085, - [SMALL_STATE(2771)] = 58140, - [SMALL_STATE(2772)] = 58195, - [SMALL_STATE(2773)] = 58250, - [SMALL_STATE(2774)] = 58351, - [SMALL_STATE(2775)] = 58406, - [SMALL_STATE(2776)] = 58461, - [SMALL_STATE(2777)] = 58562, - [SMALL_STATE(2778)] = 58663, - [SMALL_STATE(2779)] = 58718, - [SMALL_STATE(2780)] = 58819, - [SMALL_STATE(2781)] = 58874, - [SMALL_STATE(2782)] = 58929, - [SMALL_STATE(2783)] = 58984, - [SMALL_STATE(2784)] = 59071, - [SMALL_STATE(2785)] = 59128, - [SMALL_STATE(2786)] = 59183, - [SMALL_STATE(2787)] = 59238, - [SMALL_STATE(2788)] = 59293, - [SMALL_STATE(2789)] = 59348, - [SMALL_STATE(2790)] = 59403, - [SMALL_STATE(2791)] = 59458, - [SMALL_STATE(2792)] = 59513, - [SMALL_STATE(2793)] = 59568, - [SMALL_STATE(2794)] = 59623, - [SMALL_STATE(2795)] = 59678, - [SMALL_STATE(2796)] = 59733, - [SMALL_STATE(2797)] = 59834, - [SMALL_STATE(2798)] = 59935, - [SMALL_STATE(2799)] = 60036, - [SMALL_STATE(2800)] = 60119, - [SMALL_STATE(2801)] = 60208, - [SMALL_STATE(2802)] = 60263, - [SMALL_STATE(2803)] = 60318, - [SMALL_STATE(2804)] = 60373, - [SMALL_STATE(2805)] = 60428, - [SMALL_STATE(2806)] = 60485, - [SMALL_STATE(2807)] = 60586, - [SMALL_STATE(2808)] = 60641, - [SMALL_STATE(2809)] = 60696, - [SMALL_STATE(2810)] = 60751, - [SMALL_STATE(2811)] = 60806, - [SMALL_STATE(2812)] = 60861, - [SMALL_STATE(2813)] = 60916, - [SMALL_STATE(2814)] = 60971, - [SMALL_STATE(2815)] = 61072, - [SMALL_STATE(2816)] = 61127, - [SMALL_STATE(2817)] = 61182, - [SMALL_STATE(2818)] = 61237, - [SMALL_STATE(2819)] = 61292, - [SMALL_STATE(2820)] = 61347, - [SMALL_STATE(2821)] = 61402, - [SMALL_STATE(2822)] = 61457, - [SMALL_STATE(2823)] = 61512, - [SMALL_STATE(2824)] = 61567, - [SMALL_STATE(2825)] = 61622, - [SMALL_STATE(2826)] = 61677, - [SMALL_STATE(2827)] = 61732, - [SMALL_STATE(2828)] = 61787, - [SMALL_STATE(2829)] = 61844, - [SMALL_STATE(2830)] = 61899, - [SMALL_STATE(2831)] = 61956, - [SMALL_STATE(2832)] = 62011, - [SMALL_STATE(2833)] = 62068, - [SMALL_STATE(2834)] = 62169, - [SMALL_STATE(2835)] = 62270, - [SMALL_STATE(2836)] = 62325, - [SMALL_STATE(2837)] = 62380, - [SMALL_STATE(2838)] = 62435, - [SMALL_STATE(2839)] = 62492, - [SMALL_STATE(2840)] = 62547, - [SMALL_STATE(2841)] = 62604, - [SMALL_STATE(2842)] = 62659, - [SMALL_STATE(2843)] = 62714, - [SMALL_STATE(2844)] = 62815, - [SMALL_STATE(2845)] = 62870, - [SMALL_STATE(2846)] = 62925, - [SMALL_STATE(2847)] = 62980, - [SMALL_STATE(2848)] = 63035, - [SMALL_STATE(2849)] = 63090, - [SMALL_STATE(2850)] = 63145, - [SMALL_STATE(2851)] = 63202, - [SMALL_STATE(2852)] = 63261, - [SMALL_STATE(2853)] = 63318, - [SMALL_STATE(2854)] = 63419, - [SMALL_STATE(2855)] = 63474, - [SMALL_STATE(2856)] = 63529, - [SMALL_STATE(2857)] = 63584, - [SMALL_STATE(2858)] = 63639, - [SMALL_STATE(2859)] = 63694, - [SMALL_STATE(2860)] = 63749, - [SMALL_STATE(2861)] = 63828, - [SMALL_STATE(2862)] = 63883, - [SMALL_STATE(2863)] = 63938, - [SMALL_STATE(2864)] = 63993, - [SMALL_STATE(2865)] = 64094, - [SMALL_STATE(2866)] = 64177, - [SMALL_STATE(2867)] = 64264, - [SMALL_STATE(2868)] = 64353, - [SMALL_STATE(2869)] = 64454, - [SMALL_STATE(2870)] = 64555, - [SMALL_STATE(2871)] = 64638, - [SMALL_STATE(2872)] = 64739, - [SMALL_STATE(2873)] = 64794, - [SMALL_STATE(2874)] = 64895, - [SMALL_STATE(2875)] = 64996, - [SMALL_STATE(2876)] = 65051, - [SMALL_STATE(2877)] = 65152, - [SMALL_STATE(2878)] = 65207, - [SMALL_STATE(2879)] = 65308, - [SMALL_STATE(2880)] = 65409, - [SMALL_STATE(2881)] = 65464, - [SMALL_STATE(2882)] = 65519, - [SMALL_STATE(2883)] = 65574, - [SMALL_STATE(2884)] = 65629, + [SMALL_STATE(2746)] = 56433, + [SMALL_STATE(2747)] = 56492, + [SMALL_STATE(2748)] = 56547, + [SMALL_STATE(2749)] = 56602, + [SMALL_STATE(2750)] = 56659, + [SMALL_STATE(2751)] = 56760, + [SMALL_STATE(2752)] = 56815, + [SMALL_STATE(2753)] = 56870, + [SMALL_STATE(2754)] = 56971, + [SMALL_STATE(2755)] = 57030, + [SMALL_STATE(2756)] = 57131, + [SMALL_STATE(2757)] = 57232, + [SMALL_STATE(2758)] = 57287, + [SMALL_STATE(2759)] = 57388, + [SMALL_STATE(2760)] = 57489, + [SMALL_STATE(2761)] = 57544, + [SMALL_STATE(2762)] = 57599, + [SMALL_STATE(2763)] = 57654, + [SMALL_STATE(2764)] = 57709, + [SMALL_STATE(2765)] = 57764, + [SMALL_STATE(2766)] = 57865, + [SMALL_STATE(2767)] = 57966, + [SMALL_STATE(2768)] = 58021, + [SMALL_STATE(2769)] = 58122, + [SMALL_STATE(2770)] = 58177, + [SMALL_STATE(2771)] = 58232, + [SMALL_STATE(2772)] = 58287, + [SMALL_STATE(2773)] = 58342, + [SMALL_STATE(2774)] = 58397, + [SMALL_STATE(2775)] = 58498, + [SMALL_STATE(2776)] = 58553, + [SMALL_STATE(2777)] = 58608, + [SMALL_STATE(2778)] = 58709, + [SMALL_STATE(2779)] = 58764, + [SMALL_STATE(2780)] = 58865, + [SMALL_STATE(2781)] = 58966, + [SMALL_STATE(2782)] = 59021, + [SMALL_STATE(2783)] = 59076, + [SMALL_STATE(2784)] = 59131, + [SMALL_STATE(2785)] = 59188, + [SMALL_STATE(2786)] = 59243, + [SMALL_STATE(2787)] = 59298, + [SMALL_STATE(2788)] = 59353, + [SMALL_STATE(2789)] = 59408, + [SMALL_STATE(2790)] = 59463, + [SMALL_STATE(2791)] = 59518, + [SMALL_STATE(2792)] = 59573, + [SMALL_STATE(2793)] = 59628, + [SMALL_STATE(2794)] = 59683, + [SMALL_STATE(2795)] = 59784, + [SMALL_STATE(2796)] = 59839, + [SMALL_STATE(2797)] = 59940, + [SMALL_STATE(2798)] = 59995, + [SMALL_STATE(2799)] = 60050, + [SMALL_STATE(2800)] = 60105, + [SMALL_STATE(2801)] = 60206, + [SMALL_STATE(2802)] = 60289, + [SMALL_STATE(2803)] = 60344, + [SMALL_STATE(2804)] = 60399, + [SMALL_STATE(2805)] = 60454, + [SMALL_STATE(2806)] = 60509, + [SMALL_STATE(2807)] = 60598, + [SMALL_STATE(2808)] = 60685, + [SMALL_STATE(2809)] = 60740, + [SMALL_STATE(2810)] = 60795, + [SMALL_STATE(2811)] = 60850, + [SMALL_STATE(2812)] = 60905, + [SMALL_STATE(2813)] = 60960, + [SMALL_STATE(2814)] = 61015, + [SMALL_STATE(2815)] = 61116, + [SMALL_STATE(2816)] = 61171, + [SMALL_STATE(2817)] = 61226, + [SMALL_STATE(2818)] = 61281, + [SMALL_STATE(2819)] = 61336, + [SMALL_STATE(2820)] = 61391, + [SMALL_STATE(2821)] = 61446, + [SMALL_STATE(2822)] = 61501, + [SMALL_STATE(2823)] = 61556, + [SMALL_STATE(2824)] = 61611, + [SMALL_STATE(2825)] = 61666, + [SMALL_STATE(2826)] = 61721, + [SMALL_STATE(2827)] = 61776, + [SMALL_STATE(2828)] = 61831, + [SMALL_STATE(2829)] = 61886, + [SMALL_STATE(2830)] = 61943, + [SMALL_STATE(2831)] = 61998, + [SMALL_STATE(2832)] = 62055, + [SMALL_STATE(2833)] = 62156, + [SMALL_STATE(2834)] = 62213, + [SMALL_STATE(2835)] = 62268, + [SMALL_STATE(2836)] = 62369, + [SMALL_STATE(2837)] = 62424, + [SMALL_STATE(2838)] = 62479, + [SMALL_STATE(2839)] = 62536, + [SMALL_STATE(2840)] = 62637, + [SMALL_STATE(2841)] = 62692, + [SMALL_STATE(2842)] = 62749, + [SMALL_STATE(2843)] = 62804, + [SMALL_STATE(2844)] = 62905, + [SMALL_STATE(2845)] = 62960, + [SMALL_STATE(2846)] = 63015, + [SMALL_STATE(2847)] = 63070, + [SMALL_STATE(2848)] = 63125, + [SMALL_STATE(2849)] = 63180, + [SMALL_STATE(2850)] = 63235, + [SMALL_STATE(2851)] = 63290, + [SMALL_STATE(2852)] = 63347, + [SMALL_STATE(2853)] = 63406, + [SMALL_STATE(2854)] = 63463, + [SMALL_STATE(2855)] = 63518, + [SMALL_STATE(2856)] = 63573, + [SMALL_STATE(2857)] = 63652, + [SMALL_STATE(2858)] = 63707, + [SMALL_STATE(2859)] = 63762, + [SMALL_STATE(2860)] = 63817, + [SMALL_STATE(2861)] = 63872, + [SMALL_STATE(2862)] = 63955, + [SMALL_STATE(2863)] = 64010, + [SMALL_STATE(2864)] = 64097, + [SMALL_STATE(2865)] = 64152, + [SMALL_STATE(2866)] = 64253, + [SMALL_STATE(2867)] = 64342, + [SMALL_STATE(2868)] = 64443, + [SMALL_STATE(2869)] = 64544, + [SMALL_STATE(2870)] = 64645, + [SMALL_STATE(2871)] = 64728, + [SMALL_STATE(2872)] = 64829, + [SMALL_STATE(2873)] = 64930, + [SMALL_STATE(2874)] = 64985, + [SMALL_STATE(2875)] = 65086, + [SMALL_STATE(2876)] = 65187, + [SMALL_STATE(2877)] = 65242, + [SMALL_STATE(2878)] = 65297, + [SMALL_STATE(2879)] = 65352, + [SMALL_STATE(2880)] = 65453, + [SMALL_STATE(2881)] = 65508, + [SMALL_STATE(2882)] = 65563, + [SMALL_STATE(2883)] = 65618, + [SMALL_STATE(2884)] = 65673, [SMALL_STATE(2885)] = 65730, - [SMALL_STATE(2886)] = 65785, - [SMALL_STATE(2887)] = 65886, - [SMALL_STATE(2888)] = 65941, - [SMALL_STATE(2889)] = 66042, + [SMALL_STATE(2886)] = 65831, + [SMALL_STATE(2887)] = 65932, + [SMALL_STATE(2888)] = 66015, + [SMALL_STATE(2889)] = 66070, [SMALL_STATE(2890)] = 66125, [SMALL_STATE(2891)] = 66204, [SMALL_STATE(2892)] = 66259, [SMALL_STATE(2893)] = 66360, - [SMALL_STATE(2894)] = 66415, - [SMALL_STATE(2895)] = 66516, - [SMALL_STATE(2896)] = 66571, - [SMALL_STATE(2897)] = 66672, + [SMALL_STATE(2894)] = 66461, + [SMALL_STATE(2895)] = 66562, + [SMALL_STATE(2896)] = 66617, + [SMALL_STATE(2897)] = 66718, [SMALL_STATE(2898)] = 66773, [SMALL_STATE(2899)] = 66874, [SMALL_STATE(2900)] = 66975, [SMALL_STATE(2901)] = 67076, [SMALL_STATE(2902)] = 67177, [SMALL_STATE(2903)] = 67232, - [SMALL_STATE(2904)] = 67330, - [SMALL_STATE(2905)] = 67386, - [SMALL_STATE(2906)] = 67484, - [SMALL_STATE(2907)] = 67582, - [SMALL_STATE(2908)] = 67680, - [SMALL_STATE(2909)] = 67778, - [SMALL_STATE(2910)] = 67876, - [SMALL_STATE(2911)] = 67974, - [SMALL_STATE(2912)] = 68070, - [SMALL_STATE(2913)] = 68168, - [SMALL_STATE(2914)] = 68266, - [SMALL_STATE(2915)] = 68364, - [SMALL_STATE(2916)] = 68462, - [SMALL_STATE(2917)] = 68560, - [SMALL_STATE(2918)] = 68658, - [SMALL_STATE(2919)] = 68752, - [SMALL_STATE(2920)] = 68850, - [SMALL_STATE(2921)] = 68948, - [SMALL_STATE(2922)] = 69046, - [SMALL_STATE(2923)] = 69102, - [SMALL_STATE(2924)] = 69196, - [SMALL_STATE(2925)] = 69294, - [SMALL_STATE(2926)] = 69348, - [SMALL_STATE(2927)] = 69404, - [SMALL_STATE(2928)] = 69464, - [SMALL_STATE(2929)] = 69524, + [SMALL_STATE(2904)] = 67292, + [SMALL_STATE(2905)] = 67390, + [SMALL_STATE(2906)] = 67486, + [SMALL_STATE(2907)] = 67584, + [SMALL_STATE(2908)] = 67682, + [SMALL_STATE(2909)] = 67738, + [SMALL_STATE(2910)] = 67834, + [SMALL_STATE(2911)] = 67932, + [SMALL_STATE(2912)] = 68030, + [SMALL_STATE(2913)] = 68086, + [SMALL_STATE(2914)] = 68184, + [SMALL_STATE(2915)] = 68282, + [SMALL_STATE(2916)] = 68380, + [SMALL_STATE(2917)] = 68474, + [SMALL_STATE(2918)] = 68572, + [SMALL_STATE(2919)] = 68628, + [SMALL_STATE(2920)] = 68682, + [SMALL_STATE(2921)] = 68780, + [SMALL_STATE(2922)] = 68878, + [SMALL_STATE(2923)] = 68976, + [SMALL_STATE(2924)] = 69074, + [SMALL_STATE(2925)] = 69172, + [SMALL_STATE(2926)] = 69270, + [SMALL_STATE(2927)] = 69330, + [SMALL_STATE(2928)] = 69428, + [SMALL_STATE(2929)] = 69526, [SMALL_STATE(2930)] = 69620, - [SMALL_STATE(2931)] = 69673, - [SMALL_STATE(2932)] = 69726, - [SMALL_STATE(2933)] = 69781, - [SMALL_STATE(2934)] = 69836, - [SMALL_STATE(2935)] = 69891, - [SMALL_STATE(2936)] = 69980, - [SMALL_STATE(2937)] = 70033, - [SMALL_STATE(2938)] = 70088, - [SMALL_STATE(2939)] = 70143, - [SMALL_STATE(2940)] = 70196, - [SMALL_STATE(2941)] = 70285, - [SMALL_STATE(2942)] = 70340, - [SMALL_STATE(2943)] = 70395, - [SMALL_STATE(2944)] = 70450, - [SMALL_STATE(2945)] = 70503, - [SMALL_STATE(2946)] = 70558, - [SMALL_STATE(2947)] = 70611, - [SMALL_STATE(2948)] = 70700, - [SMALL_STATE(2949)] = 70789, - [SMALL_STATE(2950)] = 70844, - [SMALL_STATE(2951)] = 70897, - [SMALL_STATE(2952)] = 70952, - [SMALL_STATE(2953)] = 71005, - [SMALL_STATE(2954)] = 71064, - [SMALL_STATE(2955)] = 71119, - [SMALL_STATE(2956)] = 71172, - [SMALL_STATE(2957)] = 71225, - [SMALL_STATE(2958)] = 71278, - [SMALL_STATE(2959)] = 71331, - [SMALL_STATE(2960)] = 71420, - [SMALL_STATE(2961)] = 71473, - [SMALL_STATE(2962)] = 71526, - [SMALL_STATE(2963)] = 71579, - [SMALL_STATE(2964)] = 71632, - [SMALL_STATE(2965)] = 71685, - [SMALL_STATE(2966)] = 71740, - [SMALL_STATE(2967)] = 71829, - [SMALL_STATE(2968)] = 71882, - [SMALL_STATE(2969)] = 71935, - [SMALL_STATE(2970)] = 71988, - [SMALL_STATE(2971)] = 72041, - [SMALL_STATE(2972)] = 72094, - [SMALL_STATE(2973)] = 72147, - [SMALL_STATE(2974)] = 72202, - [SMALL_STATE(2975)] = 72255, + [SMALL_STATE(2931)] = 69675, + [SMALL_STATE(2932)] = 69770, + [SMALL_STATE(2933)] = 69823, + [SMALL_STATE(2934)] = 69878, + [SMALL_STATE(2935)] = 69933, + [SMALL_STATE(2936)] = 69986, + [SMALL_STATE(2937)] = 70041, + [SMALL_STATE(2938)] = 70094, + [SMALL_STATE(2939)] = 70183, + [SMALL_STATE(2940)] = 70236, + [SMALL_STATE(2941)] = 70325, + [SMALL_STATE(2942)] = 70414, + [SMALL_STATE(2943)] = 70467, + [SMALL_STATE(2944)] = 70522, + [SMALL_STATE(2945)] = 70577, + [SMALL_STATE(2946)] = 70632, + [SMALL_STATE(2947)] = 70687, + [SMALL_STATE(2948)] = 70740, + [SMALL_STATE(2949)] = 70799, + [SMALL_STATE(2950)] = 70852, + [SMALL_STATE(2951)] = 70907, + [SMALL_STATE(2952)] = 70962, + [SMALL_STATE(2953)] = 71015, + [SMALL_STATE(2954)] = 71104, + [SMALL_STATE(2955)] = 71157, + [SMALL_STATE(2956)] = 71210, + [SMALL_STATE(2957)] = 71263, + [SMALL_STATE(2958)] = 71316, + [SMALL_STATE(2959)] = 71371, + [SMALL_STATE(2960)] = 71460, + [SMALL_STATE(2961)] = 71515, + [SMALL_STATE(2962)] = 71568, + [SMALL_STATE(2963)] = 71621, + [SMALL_STATE(2964)] = 71710, + [SMALL_STATE(2965)] = 71763, + [SMALL_STATE(2966)] = 71816, + [SMALL_STATE(2967)] = 71869, + [SMALL_STATE(2968)] = 71924, + [SMALL_STATE(2969)] = 71977, + [SMALL_STATE(2970)] = 72030, + [SMALL_STATE(2971)] = 72083, + [SMALL_STATE(2972)] = 72136, + [SMALL_STATE(2973)] = 72189, + [SMALL_STATE(2974)] = 72242, + [SMALL_STATE(2975)] = 72297, [SMALL_STATE(2976)] = 72350, [SMALL_STATE(2977)] = 72403, [SMALL_STATE(2978)] = 72456, [SMALL_STATE(2979)] = 72509, [SMALL_STATE(2980)] = 72562, [SMALL_STATE(2981)] = 72615, - [SMALL_STATE(2982)] = 72669, - [SMALL_STATE(2983)] = 72725, - [SMALL_STATE(2984)] = 72779, + [SMALL_STATE(2982)] = 72671, + [SMALL_STATE(2983)] = 72727, + [SMALL_STATE(2984)] = 72781, [SMALL_STATE(2985)] = 72835, [SMALL_STATE(2986)] = 72889, - [SMALL_STATE(2987)] = 72945, - [SMALL_STATE(2988)] = 73001, - [SMALL_STATE(2989)] = 73055, - [SMALL_STATE(2990)] = 73109, - [SMALL_STATE(2991)] = 73165, - [SMALL_STATE(2992)] = 73219, - [SMALL_STATE(2993)] = 73273, + [SMALL_STATE(2987)] = 72943, + [SMALL_STATE(2988)] = 72997, + [SMALL_STATE(2989)] = 73051, + [SMALL_STATE(2990)] = 73105, + [SMALL_STATE(2991)] = 73161, + [SMALL_STATE(2992)] = 73217, + [SMALL_STATE(2993)] = 73271, [SMALL_STATE(2994)] = 73327, [SMALL_STATE(2995)] = 73381, [SMALL_STATE(2996)] = 73435, [SMALL_STATE(2997)] = 73491, - [SMALL_STATE(2998)] = 73547, + [SMALL_STATE(2998)] = 73545, [SMALL_STATE(2999)] = 73601, - [SMALL_STATE(3000)] = 73657, - [SMALL_STATE(3001)] = 73711, - [SMALL_STATE(3002)] = 73765, - [SMALL_STATE(3003)] = 73819, - [SMALL_STATE(3004)] = 73875, - [SMALL_STATE(3005)] = 73929, - [SMALL_STATE(3006)] = 73985, - [SMALL_STATE(3007)] = 74039, - [SMALL_STATE(3008)] = 74095, - [SMALL_STATE(3009)] = 74149, - [SMALL_STATE(3010)] = 74203, - [SMALL_STATE(3011)] = 74257, - [SMALL_STATE(3012)] = 74311, - [SMALL_STATE(3013)] = 74367, - [SMALL_STATE(3014)] = 74421, - [SMALL_STATE(3015)] = 74477, - [SMALL_STATE(3016)] = 74531, - [SMALL_STATE(3017)] = 74585, - [SMALL_STATE(3018)] = 74639, - [SMALL_STATE(3019)] = 74693, - [SMALL_STATE(3020)] = 74747, - [SMALL_STATE(3021)] = 74801, - [SMALL_STATE(3022)] = 74855, - [SMALL_STATE(3023)] = 74909, - [SMALL_STATE(3024)] = 74963, - [SMALL_STATE(3025)] = 75019, - [SMALL_STATE(3026)] = 75073, - [SMALL_STATE(3027)] = 75129, - [SMALL_STATE(3028)] = 75185, - [SMALL_STATE(3029)] = 75241, - [SMALL_STATE(3030)] = 75295, - [SMALL_STATE(3031)] = 75349, + [SMALL_STATE(3000)] = 73655, + [SMALL_STATE(3001)] = 73709, + [SMALL_STATE(3002)] = 73763, + [SMALL_STATE(3003)] = 73817, + [SMALL_STATE(3004)] = 73871, + [SMALL_STATE(3005)] = 73925, + [SMALL_STATE(3006)] = 73979, + [SMALL_STATE(3007)] = 74033, + [SMALL_STATE(3008)] = 74087, + [SMALL_STATE(3009)] = 74143, + [SMALL_STATE(3010)] = 74197, + [SMALL_STATE(3011)] = 74253, + [SMALL_STATE(3012)] = 74309, + [SMALL_STATE(3013)] = 74365, + [SMALL_STATE(3014)] = 74419, + [SMALL_STATE(3015)] = 74473, + [SMALL_STATE(3016)] = 74527, + [SMALL_STATE(3017)] = 74581, + [SMALL_STATE(3018)] = 74635, + [SMALL_STATE(3019)] = 74689, + [SMALL_STATE(3020)] = 74743, + [SMALL_STATE(3021)] = 74797, + [SMALL_STATE(3022)] = 74853, + [SMALL_STATE(3023)] = 74907, + [SMALL_STATE(3024)] = 74961, + [SMALL_STATE(3025)] = 75015, + [SMALL_STATE(3026)] = 75071, + [SMALL_STATE(3027)] = 75125, + [SMALL_STATE(3028)] = 75181, + [SMALL_STATE(3029)] = 75237, + [SMALL_STATE(3030)] = 75293, + [SMALL_STATE(3031)] = 75347, [SMALL_STATE(3032)] = 75403, - [SMALL_STATE(3033)] = 75459, - [SMALL_STATE(3034)] = 75513, + [SMALL_STATE(3033)] = 75457, + [SMALL_STATE(3034)] = 75511, [SMALL_STATE(3035)] = 75567, - [SMALL_STATE(3036)] = 75621, + [SMALL_STATE(3036)] = 75623, [SMALL_STATE(3037)] = 75677, - [SMALL_STATE(3038)] = 75733, - [SMALL_STATE(3039)] = 75787, + [SMALL_STATE(3038)] = 75731, + [SMALL_STATE(3039)] = 75785, [SMALL_STATE(3040)] = 75841, [SMALL_STATE(3041)] = 75895, - [SMALL_STATE(3042)] = 75951, - [SMALL_STATE(3043)] = 76007, - [SMALL_STATE(3044)] = 76063, - [SMALL_STATE(3045)] = 76117, - [SMALL_STATE(3046)] = 76171, - [SMALL_STATE(3047)] = 76225, - [SMALL_STATE(3048)] = 76279, - [SMALL_STATE(3049)] = 76335, - [SMALL_STATE(3050)] = 76391, - [SMALL_STATE(3051)] = 76445, - [SMALL_STATE(3052)] = 76501, - [SMALL_STATE(3053)] = 76555, - [SMALL_STATE(3054)] = 76611, - [SMALL_STATE(3055)] = 76667, - [SMALL_STATE(3056)] = 76721, - [SMALL_STATE(3057)] = 76775, + [SMALL_STATE(3042)] = 75949, + [SMALL_STATE(3043)] = 76005, + [SMALL_STATE(3044)] = 76061, + [SMALL_STATE(3045)] = 76115, + [SMALL_STATE(3046)] = 76169, + [SMALL_STATE(3047)] = 76223, + [SMALL_STATE(3048)] = 76277, + [SMALL_STATE(3049)] = 76333, + [SMALL_STATE(3050)] = 76389, + [SMALL_STATE(3051)] = 76443, + [SMALL_STATE(3052)] = 76497, + [SMALL_STATE(3053)] = 76553, + [SMALL_STATE(3054)] = 76609, + [SMALL_STATE(3055)] = 76665, + [SMALL_STATE(3056)] = 76719, + [SMALL_STATE(3057)] = 76773, [SMALL_STATE(3058)] = 76829, [SMALL_STATE(3059)] = 76883, [SMALL_STATE(3060)] = 76939, @@ -329692,10 +329954,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3065)] = 77375, [SMALL_STATE(3066)] = 77461, [SMALL_STATE(3067)] = 77547, - [SMALL_STATE(3068)] = 77607, - [SMALL_STATE(3069)] = 77693, - [SMALL_STATE(3070)] = 77779, - [SMALL_STATE(3071)] = 77865, + [SMALL_STATE(3068)] = 77633, + [SMALL_STATE(3069)] = 77719, + [SMALL_STATE(3070)] = 77805, + [SMALL_STATE(3071)] = 77891, [SMALL_STATE(3072)] = 77951, [SMALL_STATE(3073)] = 78037, [SMALL_STATE(3074)] = 78123, @@ -329972,16 +330234,16 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3345)] = 100700, [SMALL_STATE(3346)] = 100783, [SMALL_STATE(3347)] = 100851, - [SMALL_STATE(3348)] = 100919, - [SMALL_STATE(3349)] = 100987, - [SMALL_STATE(3350)] = 101055, - [SMALL_STATE(3351)] = 101123, - [SMALL_STATE(3352)] = 101191, - [SMALL_STATE(3353)] = 101259, + [SMALL_STATE(3348)] = 100925, + [SMALL_STATE(3349)] = 100993, + [SMALL_STATE(3350)] = 101061, + [SMALL_STATE(3351)] = 101129, + [SMALL_STATE(3352)] = 101197, + [SMALL_STATE(3353)] = 101265, [SMALL_STATE(3354)] = 101333, [SMALL_STATE(3355)] = 101401, - [SMALL_STATE(3356)] = 101469, - [SMALL_STATE(3357)] = 101537, + [SMALL_STATE(3356)] = 101475, + [SMALL_STATE(3357)] = 101543, [SMALL_STATE(3358)] = 101611, [SMALL_STATE(3359)] = 101679, [SMALL_STATE(3360)] = 101747, @@ -329993,3010 +330255,3012 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3366)] = 102063, [SMALL_STATE(3367)] = 102100, [SMALL_STATE(3368)] = 102137, - [SMALL_STATE(3369)] = 102184, - [SMALL_STATE(3370)] = 102217, - [SMALL_STATE(3371)] = 102268, - [SMALL_STATE(3372)] = 102315, - [SMALL_STATE(3373)] = 102348, + [SMALL_STATE(3369)] = 102170, + [SMALL_STATE(3370)] = 102203, + [SMALL_STATE(3371)] = 102236, + [SMALL_STATE(3372)] = 102283, + [SMALL_STATE(3373)] = 102330, [SMALL_STATE(3374)] = 102381, - [SMALL_STATE(3375)] = 102428, - [SMALL_STATE(3376)] = 102461, + [SMALL_STATE(3375)] = 102414, + [SMALL_STATE(3376)] = 102447, [SMALL_STATE(3377)] = 102494, - [SMALL_STATE(3378)] = 102528, - [SMALL_STATE(3379)] = 102564, - [SMALL_STATE(3380)] = 102594, - [SMALL_STATE(3381)] = 102628, - [SMALL_STATE(3382)] = 102658, + [SMALL_STATE(3378)] = 102524, + [SMALL_STATE(3379)] = 102554, + [SMALL_STATE(3380)] = 102588, + [SMALL_STATE(3381)] = 102622, + [SMALL_STATE(3382)] = 102652, [SMALL_STATE(3383)] = 102688, [SMALL_STATE(3384)] = 102721, [SMALL_STATE(3385)] = 102754, - [SMALL_STATE(3386)] = 102787, - [SMALL_STATE(3387)] = 102820, - [SMALL_STATE(3388)] = 102853, + [SMALL_STATE(3386)] = 102785, + [SMALL_STATE(3387)] = 102818, + [SMALL_STATE(3388)] = 102851, [SMALL_STATE(3389)] = 102884, - [SMALL_STATE(3390)] = 102915, - [SMALL_STATE(3391)] = 102948, + [SMALL_STATE(3390)] = 102917, + [SMALL_STATE(3391)] = 102950, [SMALL_STATE(3392)] = 102981, [SMALL_STATE(3393)] = 103013, [SMALL_STATE(3394)] = 103043, - [SMALL_STATE(3395)] = 103089, - [SMALL_STATE(3396)] = 103137, - [SMALL_STATE(3397)] = 103185, + [SMALL_STATE(3395)] = 103073, + [SMALL_STATE(3396)] = 103121, + [SMALL_STATE(3397)] = 103167, [SMALL_STATE(3398)] = 103215, [SMALL_STATE(3399)] = 103262, - [SMALL_STATE(3400)] = 103309, - [SMALL_STATE(3401)] = 103344, - [SMALL_STATE(3402)] = 103373, - [SMALL_STATE(3403)] = 103420, - [SMALL_STATE(3404)] = 103455, - [SMALL_STATE(3405)] = 103502, - [SMALL_STATE(3406)] = 103549, - [SMALL_STATE(3407)] = 103580, - [SMALL_STATE(3408)] = 103627, - [SMALL_STATE(3409)] = 103674, - [SMALL_STATE(3410)] = 103709, + [SMALL_STATE(3400)] = 103291, + [SMALL_STATE(3401)] = 103338, + [SMALL_STATE(3402)] = 103385, + [SMALL_STATE(3403)] = 103430, + [SMALL_STATE(3404)] = 103477, + [SMALL_STATE(3405)] = 103506, + [SMALL_STATE(3406)] = 103553, + [SMALL_STATE(3407)] = 103584, + [SMALL_STATE(3408)] = 103613, + [SMALL_STATE(3409)] = 103660, + [SMALL_STATE(3410)] = 103707, [SMALL_STATE(3411)] = 103754, [SMALL_STATE(3412)] = 103801, - [SMALL_STATE(3413)] = 103830, - [SMALL_STATE(3414)] = 103877, - [SMALL_STATE(3415)] = 103924, - [SMALL_STATE(3416)] = 103953, - [SMALL_STATE(3417)] = 104000, - [SMALL_STATE(3418)] = 104047, - [SMALL_STATE(3419)] = 104094, - [SMALL_STATE(3420)] = 104141, - [SMALL_STATE(3421)] = 104188, - [SMALL_STATE(3422)] = 104235, - [SMALL_STATE(3423)] = 104282, - [SMALL_STATE(3424)] = 104329, - [SMALL_STATE(3425)] = 104376, - [SMALL_STATE(3426)] = 104411, - [SMALL_STATE(3427)] = 104458, - [SMALL_STATE(3428)] = 104487, - [SMALL_STATE(3429)] = 104516, - [SMALL_STATE(3430)] = 104563, - [SMALL_STATE(3431)] = 104592, - [SMALL_STATE(3432)] = 104627, - [SMALL_STATE(3433)] = 104674, - [SMALL_STATE(3434)] = 104721, - [SMALL_STATE(3435)] = 104752, - [SMALL_STATE(3436)] = 104781, - [SMALL_STATE(3437)] = 104816, - [SMALL_STATE(3438)] = 104851, - [SMALL_STATE(3439)] = 104898, - [SMALL_STATE(3440)] = 104945, - [SMALL_STATE(3441)] = 104980, - [SMALL_STATE(3442)] = 105027, - [SMALL_STATE(3443)] = 105074, - [SMALL_STATE(3444)] = 105121, - [SMALL_STATE(3445)] = 105168, + [SMALL_STATE(3413)] = 103848, + [SMALL_STATE(3414)] = 103895, + [SMALL_STATE(3415)] = 103942, + [SMALL_STATE(3416)] = 103989, + [SMALL_STATE(3417)] = 104024, + [SMALL_STATE(3418)] = 104071, + [SMALL_STATE(3419)] = 104118, + [SMALL_STATE(3420)] = 104165, + [SMALL_STATE(3421)] = 104212, + [SMALL_STATE(3422)] = 104259, + [SMALL_STATE(3423)] = 104306, + [SMALL_STATE(3424)] = 104337, + [SMALL_STATE(3425)] = 104366, + [SMALL_STATE(3426)] = 104413, + [SMALL_STATE(3427)] = 104460, + [SMALL_STATE(3428)] = 104507, + [SMALL_STATE(3429)] = 104554, + [SMALL_STATE(3430)] = 104601, + [SMALL_STATE(3431)] = 104636, + [SMALL_STATE(3432)] = 104665, + [SMALL_STATE(3433)] = 104700, + [SMALL_STATE(3434)] = 104735, + [SMALL_STATE(3435)] = 104782, + [SMALL_STATE(3436)] = 104829, + [SMALL_STATE(3437)] = 104858, + [SMALL_STATE(3438)] = 104905, + [SMALL_STATE(3439)] = 104952, + [SMALL_STATE(3440)] = 104999, + [SMALL_STATE(3441)] = 105034, + [SMALL_STATE(3442)] = 105069, + [SMALL_STATE(3443)] = 105104, + [SMALL_STATE(3444)] = 105139, + [SMALL_STATE(3445)] = 105186, [SMALL_STATE(3446)] = 105215, - [SMALL_STATE(3447)] = 105241, - [SMALL_STATE(3448)] = 105267, - [SMALL_STATE(3449)] = 105299, + [SMALL_STATE(3447)] = 105245, + [SMALL_STATE(3448)] = 105271, + [SMALL_STATE(3449)] = 105297, [SMALL_STATE(3450)] = 105329, [SMALL_STATE(3451)] = 105355, [SMALL_STATE(3452)] = 105382, - [SMALL_STATE(3453)] = 105409, + [SMALL_STATE(3453)] = 105413, [SMALL_STATE(3454)] = 105440, - [SMALL_STATE(3455)] = 105464, - [SMALL_STATE(3456)] = 105488, - [SMALL_STATE(3457)] = 105512, - [SMALL_STATE(3458)] = 105536, - [SMALL_STATE(3459)] = 105560, - [SMALL_STATE(3460)] = 105584, - [SMALL_STATE(3461)] = 105608, - [SMALL_STATE(3462)] = 105632, - [SMALL_STATE(3463)] = 105656, - [SMALL_STATE(3464)] = 105680, - [SMALL_STATE(3465)] = 105704, - [SMALL_STATE(3466)] = 105732, - [SMALL_STATE(3467)] = 105756, - [SMALL_STATE(3468)] = 105780, - [SMALL_STATE(3469)] = 105804, - [SMALL_STATE(3470)] = 105832, - [SMALL_STATE(3471)] = 105856, - [SMALL_STATE(3472)] = 105880, - [SMALL_STATE(3473)] = 105904, - [SMALL_STATE(3474)] = 105928, - [SMALL_STATE(3475)] = 105952, - [SMALL_STATE(3476)] = 105982, - [SMALL_STATE(3477)] = 106006, + [SMALL_STATE(3455)] = 105468, + [SMALL_STATE(3456)] = 105492, + [SMALL_STATE(3457)] = 105516, + [SMALL_STATE(3458)] = 105546, + [SMALL_STATE(3459)] = 105570, + [SMALL_STATE(3460)] = 105594, + [SMALL_STATE(3461)] = 105618, + [SMALL_STATE(3462)] = 105642, + [SMALL_STATE(3463)] = 105666, + [SMALL_STATE(3464)] = 105690, + [SMALL_STATE(3465)] = 105714, + [SMALL_STATE(3466)] = 105738, + [SMALL_STATE(3467)] = 105762, + [SMALL_STATE(3468)] = 105786, + [SMALL_STATE(3469)] = 105810, + [SMALL_STATE(3470)] = 105834, + [SMALL_STATE(3471)] = 105858, + [SMALL_STATE(3472)] = 105882, + [SMALL_STATE(3473)] = 105906, + [SMALL_STATE(3474)] = 105930, + [SMALL_STATE(3475)] = 105954, + [SMALL_STATE(3476)] = 105978, + [SMALL_STATE(3477)] = 106002, [SMALL_STATE(3478)] = 106030, [SMALL_STATE(3479)] = 106054, - [SMALL_STATE(3480)] = 106093, + [SMALL_STATE(3480)] = 106083, [SMALL_STATE(3481)] = 106122, [SMALL_STATE(3482)] = 106149, [SMALL_STATE(3483)] = 106183, - [SMALL_STATE(3484)] = 106217, - [SMALL_STATE(3485)] = 106253, - [SMALL_STATE(3486)] = 106287, - [SMALL_STATE(3487)] = 106309, - [SMALL_STATE(3488)] = 106343, - [SMALL_STATE(3489)] = 106371, + [SMALL_STATE(3484)] = 106209, + [SMALL_STATE(3485)] = 106243, + [SMALL_STATE(3486)] = 106277, + [SMALL_STATE(3487)] = 106311, + [SMALL_STATE(3488)] = 106347, + [SMALL_STATE(3489)] = 106381, [SMALL_STATE(3490)] = 106405, [SMALL_STATE(3491)] = 106439, [SMALL_STATE(3492)] = 106473, [SMALL_STATE(3493)] = 106507, [SMALL_STATE(3494)] = 106541, - [SMALL_STATE(3495)] = 106575, - [SMALL_STATE(3496)] = 106601, - [SMALL_STATE(3497)] = 106635, - [SMALL_STATE(3498)] = 106663, - [SMALL_STATE(3499)] = 106697, + [SMALL_STATE(3495)] = 106563, + [SMALL_STATE(3496)] = 106591, + [SMALL_STATE(3497)] = 106625, + [SMALL_STATE(3498)] = 106653, + [SMALL_STATE(3499)] = 106687, [SMALL_STATE(3500)] = 106721, - [SMALL_STATE(3501)] = 106746, - [SMALL_STATE(3502)] = 106769, - [SMALL_STATE(3503)] = 106792, - [SMALL_STATE(3504)] = 106813, - [SMALL_STATE(3505)] = 106834, - [SMALL_STATE(3506)] = 106857, - [SMALL_STATE(3507)] = 106878, - [SMALL_STATE(3508)] = 106899, - [SMALL_STATE(3509)] = 106922, - [SMALL_STATE(3510)] = 106943, - [SMALL_STATE(3511)] = 106964, - [SMALL_STATE(3512)] = 106989, - [SMALL_STATE(3513)] = 107010, - [SMALL_STATE(3514)] = 107031, - [SMALL_STATE(3515)] = 107060, - [SMALL_STATE(3516)] = 107081, - [SMALL_STATE(3517)] = 107111, - [SMALL_STATE(3518)] = 107139, - [SMALL_STATE(3519)] = 107169, - [SMALL_STATE(3520)] = 107199, - [SMALL_STATE(3521)] = 107229, - [SMALL_STATE(3522)] = 107259, - [SMALL_STATE(3523)] = 107283, - [SMALL_STATE(3524)] = 107313, - [SMALL_STATE(3525)] = 107343, - [SMALL_STATE(3526)] = 107373, + [SMALL_STATE(3501)] = 106742, + [SMALL_STATE(3502)] = 106763, + [SMALL_STATE(3503)] = 106788, + [SMALL_STATE(3504)] = 106809, + [SMALL_STATE(3505)] = 106830, + [SMALL_STATE(3506)] = 106851, + [SMALL_STATE(3507)] = 106874, + [SMALL_STATE(3508)] = 106895, + [SMALL_STATE(3509)] = 106916, + [SMALL_STATE(3510)] = 106939, + [SMALL_STATE(3511)] = 106972, + [SMALL_STATE(3512)] = 106995, + [SMALL_STATE(3513)] = 107024, + [SMALL_STATE(3514)] = 107049, + [SMALL_STATE(3515)] = 107070, + [SMALL_STATE(3516)] = 107101, + [SMALL_STATE(3517)] = 107122, + [SMALL_STATE(3518)] = 107145, + [SMALL_STATE(3519)] = 107165, + [SMALL_STATE(3520)] = 107195, + [SMALL_STATE(3521)] = 107225, + [SMALL_STATE(3522)] = 107255, + [SMALL_STATE(3523)] = 107285, + [SMALL_STATE(3524)] = 107315, + [SMALL_STATE(3525)] = 107345, + [SMALL_STATE(3526)] = 107375, [SMALL_STATE(3527)] = 107403, [SMALL_STATE(3528)] = 107433, [SMALL_STATE(3529)] = 107463, [SMALL_STATE(3530)] = 107493, - [SMALL_STATE(3531)] = 107521, - [SMALL_STATE(3532)] = 107551, - [SMALL_STATE(3533)] = 107579, - [SMALL_STATE(3534)] = 107609, - [SMALL_STATE(3535)] = 107637, - [SMALL_STATE(3536)] = 107667, - [SMALL_STATE(3537)] = 107697, - [SMALL_STATE(3538)] = 107727, - [SMALL_STATE(3539)] = 107757, + [SMALL_STATE(3531)] = 107523, + [SMALL_STATE(3532)] = 107543, + [SMALL_STATE(3533)] = 107571, + [SMALL_STATE(3534)] = 107601, + [SMALL_STATE(3535)] = 107631, + [SMALL_STATE(3536)] = 107659, + [SMALL_STATE(3537)] = 107687, + [SMALL_STATE(3538)] = 107717, + [SMALL_STATE(3539)] = 107747, [SMALL_STATE(3540)] = 107777, [SMALL_STATE(3541)] = 107805, - [SMALL_STATE(3542)] = 107837, - [SMALL_STATE(3543)] = 107867, - [SMALL_STATE(3544)] = 107897, - [SMALL_STATE(3545)] = 107927, - [SMALL_STATE(3546)] = 107957, - [SMALL_STATE(3547)] = 107985, + [SMALL_STATE(3542)] = 107835, + [SMALL_STATE(3543)] = 107865, + [SMALL_STATE(3544)] = 107893, + [SMALL_STATE(3545)] = 107923, + [SMALL_STATE(3546)] = 107953, + [SMALL_STATE(3547)] = 107983, [SMALL_STATE(3548)] = 108015, [SMALL_STATE(3549)] = 108045, - [SMALL_STATE(3550)] = 108073, - [SMALL_STATE(3551)] = 108103, - [SMALL_STATE(3552)] = 108133, - [SMALL_STATE(3553)] = 108161, - [SMALL_STATE(3554)] = 108191, - [SMALL_STATE(3555)] = 108221, - [SMALL_STATE(3556)] = 108251, - [SMALL_STATE(3557)] = 108281, - [SMALL_STATE(3558)] = 108311, - [SMALL_STATE(3559)] = 108341, - [SMALL_STATE(3560)] = 108371, - [SMALL_STATE(3561)] = 108401, + [SMALL_STATE(3550)] = 108075, + [SMALL_STATE(3551)] = 108105, + [SMALL_STATE(3552)] = 108135, + [SMALL_STATE(3553)] = 108165, + [SMALL_STATE(3554)] = 108195, + [SMALL_STATE(3555)] = 108225, + [SMALL_STATE(3556)] = 108255, + [SMALL_STATE(3557)] = 108283, + [SMALL_STATE(3558)] = 108313, + [SMALL_STATE(3559)] = 108343, + [SMALL_STATE(3560)] = 108373, + [SMALL_STATE(3561)] = 108403, [SMALL_STATE(3562)] = 108431, - [SMALL_STATE(3563)] = 108461, - [SMALL_STATE(3564)] = 108481, - [SMALL_STATE(3565)] = 108511, - [SMALL_STATE(3566)] = 108539, - [SMALL_STATE(3567)] = 108569, - [SMALL_STATE(3568)] = 108599, - [SMALL_STATE(3569)] = 108629, - [SMALL_STATE(3570)] = 108659, - [SMALL_STATE(3571)] = 108689, - [SMALL_STATE(3572)] = 108719, - [SMALL_STATE(3573)] = 108749, - [SMALL_STATE(3574)] = 108779, + [SMALL_STATE(3563)] = 108459, + [SMALL_STATE(3564)] = 108479, + [SMALL_STATE(3565)] = 108507, + [SMALL_STATE(3566)] = 108537, + [SMALL_STATE(3567)] = 108567, + [SMALL_STATE(3568)] = 108597, + [SMALL_STATE(3569)] = 108627, + [SMALL_STATE(3570)] = 108657, + [SMALL_STATE(3571)] = 108687, + [SMALL_STATE(3572)] = 108717, + [SMALL_STATE(3573)] = 108747, + [SMALL_STATE(3574)] = 108777, [SMALL_STATE(3575)] = 108807, [SMALL_STATE(3576)] = 108837, [SMALL_STATE(3577)] = 108867, [SMALL_STATE(3578)] = 108897, [SMALL_STATE(3579)] = 108927, - [SMALL_STATE(3580)] = 108955, - [SMALL_STATE(3581)] = 108985, - [SMALL_STATE(3582)] = 109015, - [SMALL_STATE(3583)] = 109045, - [SMALL_STATE(3584)] = 109075, - [SMALL_STATE(3585)] = 109103, - [SMALL_STATE(3586)] = 109135, - [SMALL_STATE(3587)] = 109163, - [SMALL_STATE(3588)] = 109193, - [SMALL_STATE(3589)] = 109221, - [SMALL_STATE(3590)] = 109251, - [SMALL_STATE(3591)] = 109281, - [SMALL_STATE(3592)] = 109311, - [SMALL_STATE(3593)] = 109341, - [SMALL_STATE(3594)] = 109371, - [SMALL_STATE(3595)] = 109401, - [SMALL_STATE(3596)] = 109431, - [SMALL_STATE(3597)] = 109461, - [SMALL_STATE(3598)] = 109491, - [SMALL_STATE(3599)] = 109521, - [SMALL_STATE(3600)] = 109551, - [SMALL_STATE(3601)] = 109581, - [SMALL_STATE(3602)] = 109611, - [SMALL_STATE(3603)] = 109641, - [SMALL_STATE(3604)] = 109671, - [SMALL_STATE(3605)] = 109701, - [SMALL_STATE(3606)] = 109729, - [SMALL_STATE(3607)] = 109759, - [SMALL_STATE(3608)] = 109789, - [SMALL_STATE(3609)] = 109819, - [SMALL_STATE(3610)] = 109849, - [SMALL_STATE(3611)] = 109879, - [SMALL_STATE(3612)] = 109909, - [SMALL_STATE(3613)] = 109939, - [SMALL_STATE(3614)] = 109969, + [SMALL_STATE(3580)] = 108959, + [SMALL_STATE(3581)] = 108989, + [SMALL_STATE(3582)] = 109019, + [SMALL_STATE(3583)] = 109049, + [SMALL_STATE(3584)] = 109079, + [SMALL_STATE(3585)] = 109107, + [SMALL_STATE(3586)] = 109137, + [SMALL_STATE(3587)] = 109167, + [SMALL_STATE(3588)] = 109195, + [SMALL_STATE(3589)] = 109225, + [SMALL_STATE(3590)] = 109255, + [SMALL_STATE(3591)] = 109285, + [SMALL_STATE(3592)] = 109315, + [SMALL_STATE(3593)] = 109345, + [SMALL_STATE(3594)] = 109375, + [SMALL_STATE(3595)] = 109405, + [SMALL_STATE(3596)] = 109429, + [SMALL_STATE(3597)] = 109459, + [SMALL_STATE(3598)] = 109489, + [SMALL_STATE(3599)] = 109519, + [SMALL_STATE(3600)] = 109549, + [SMALL_STATE(3601)] = 109579, + [SMALL_STATE(3602)] = 109609, + [SMALL_STATE(3603)] = 109637, + [SMALL_STATE(3604)] = 109667, + [SMALL_STATE(3605)] = 109697, + [SMALL_STATE(3606)] = 109725, + [SMALL_STATE(3607)] = 109755, + [SMALL_STATE(3608)] = 109785, + [SMALL_STATE(3609)] = 109815, + [SMALL_STATE(3610)] = 109845, + [SMALL_STATE(3611)] = 109873, + [SMALL_STATE(3612)] = 109901, + [SMALL_STATE(3613)] = 109931, + [SMALL_STATE(3614)] = 109961, [SMALL_STATE(3615)] = 109989, - [SMALL_STATE(3616)] = 110019, - [SMALL_STATE(3617)] = 110049, - [SMALL_STATE(3618)] = 110079, - [SMALL_STATE(3619)] = 110109, + [SMALL_STATE(3616)] = 110017, + [SMALL_STATE(3617)] = 110047, + [SMALL_STATE(3618)] = 110077, + [SMALL_STATE(3619)] = 110107, [SMALL_STATE(3620)] = 110137, - [SMALL_STATE(3621)] = 110165, + [SMALL_STATE(3621)] = 110167, [SMALL_STATE(3622)] = 110195, [SMALL_STATE(3623)] = 110223, [SMALL_STATE(3624)] = 110251, [SMALL_STATE(3625)] = 110281, - [SMALL_STATE(3626)] = 110309, - [SMALL_STATE(3627)] = 110339, - [SMALL_STATE(3628)] = 110369, - [SMALL_STATE(3629)] = 110399, + [SMALL_STATE(3626)] = 110311, + [SMALL_STATE(3627)] = 110341, + [SMALL_STATE(3628)] = 110371, + [SMALL_STATE(3629)] = 110401, [SMALL_STATE(3630)] = 110429, [SMALL_STATE(3631)] = 110457, [SMALL_STATE(3632)] = 110485, - [SMALL_STATE(3633)] = 110513, - [SMALL_STATE(3634)] = 110541, - [SMALL_STATE(3635)] = 110571, - [SMALL_STATE(3636)] = 110601, - [SMALL_STATE(3637)] = 110631, - [SMALL_STATE(3638)] = 110661, - [SMALL_STATE(3639)] = 110691, - [SMALL_STATE(3640)] = 110719, - [SMALL_STATE(3641)] = 110747, - [SMALL_STATE(3642)] = 110775, - [SMALL_STATE(3643)] = 110805, - [SMALL_STATE(3644)] = 110835, - [SMALL_STATE(3645)] = 110865, - [SMALL_STATE(3646)] = 110895, - [SMALL_STATE(3647)] = 110925, - [SMALL_STATE(3648)] = 110948, - [SMALL_STATE(3649)] = 110971, - [SMALL_STATE(3650)] = 110994, - [SMALL_STATE(3651)] = 111021, - [SMALL_STATE(3652)] = 111042, - [SMALL_STATE(3653)] = 111071, - [SMALL_STATE(3654)] = 111094, - [SMALL_STATE(3655)] = 111115, - [SMALL_STATE(3656)] = 111144, - [SMALL_STATE(3657)] = 111173, - [SMALL_STATE(3658)] = 111193, - [SMALL_STATE(3659)] = 111213, - [SMALL_STATE(3660)] = 111233, - [SMALL_STATE(3661)] = 111259, - [SMALL_STATE(3662)] = 111283, - [SMALL_STATE(3663)] = 111303, - [SMALL_STATE(3664)] = 111323, - [SMALL_STATE(3665)] = 111345, - [SMALL_STATE(3666)] = 111363, - [SMALL_STATE(3667)] = 111383, - [SMALL_STATE(3668)] = 111405, - [SMALL_STATE(3669)] = 111425, - [SMALL_STATE(3670)] = 111445, - [SMALL_STATE(3671)] = 111471, + [SMALL_STATE(3633)] = 110515, + [SMALL_STATE(3634)] = 110545, + [SMALL_STATE(3635)] = 110575, + [SMALL_STATE(3636)] = 110605, + [SMALL_STATE(3637)] = 110635, + [SMALL_STATE(3638)] = 110665, + [SMALL_STATE(3639)] = 110693, + [SMALL_STATE(3640)] = 110723, + [SMALL_STATE(3641)] = 110753, + [SMALL_STATE(3642)] = 110783, + [SMALL_STATE(3643)] = 110813, + [SMALL_STATE(3644)] = 110843, + [SMALL_STATE(3645)] = 110873, + [SMALL_STATE(3646)] = 110903, + [SMALL_STATE(3647)] = 110931, + [SMALL_STATE(3648)] = 110960, + [SMALL_STATE(3649)] = 110983, + [SMALL_STATE(3650)] = 111006, + [SMALL_STATE(3651)] = 111035, + [SMALL_STATE(3652)] = 111056, + [SMALL_STATE(3653)] = 111083, + [SMALL_STATE(3654)] = 111104, + [SMALL_STATE(3655)] = 111133, + [SMALL_STATE(3656)] = 111156, + [SMALL_STATE(3657)] = 111179, + [SMALL_STATE(3658)] = 111199, + [SMALL_STATE(3659)] = 111219, + [SMALL_STATE(3660)] = 111243, + [SMALL_STATE(3661)] = 111269, + [SMALL_STATE(3662)] = 111293, + [SMALL_STATE(3663)] = 111313, + [SMALL_STATE(3664)] = 111333, + [SMALL_STATE(3665)] = 111353, + [SMALL_STATE(3666)] = 111377, + [SMALL_STATE(3667)] = 111395, + [SMALL_STATE(3668)] = 111421, + [SMALL_STATE(3669)] = 111439, + [SMALL_STATE(3670)] = 111457, + [SMALL_STATE(3671)] = 111477, [SMALL_STATE(3672)] = 111495, - [SMALL_STATE(3673)] = 111519, - [SMALL_STATE(3674)] = 111539, - [SMALL_STATE(3675)] = 111557, - [SMALL_STATE(3676)] = 111575, - [SMALL_STATE(3677)] = 111599, + [SMALL_STATE(3673)] = 111515, + [SMALL_STATE(3674)] = 111537, + [SMALL_STATE(3675)] = 111561, + [SMALL_STATE(3676)] = 111581, + [SMALL_STATE(3677)] = 111605, [SMALL_STATE(3678)] = 111625, [SMALL_STATE(3679)] = 111651, - [SMALL_STATE(3680)] = 111671, - [SMALL_STATE(3681)] = 111691, - [SMALL_STATE(3682)] = 111711, - [SMALL_STATE(3683)] = 111733, - [SMALL_STATE(3684)] = 111751, - [SMALL_STATE(3685)] = 111771, - [SMALL_STATE(3686)] = 111795, - [SMALL_STATE(3687)] = 111819, - [SMALL_STATE(3688)] = 111843, - [SMALL_STATE(3689)] = 111865, - [SMALL_STATE(3690)] = 111891, - [SMALL_STATE(3691)] = 111909, - [SMALL_STATE(3692)] = 111933, - [SMALL_STATE(3693)] = 111959, - [SMALL_STATE(3694)] = 111980, - [SMALL_STATE(3695)] = 112001, - [SMALL_STATE(3696)] = 112022, - [SMALL_STATE(3697)] = 112045, - [SMALL_STATE(3698)] = 112066, - [SMALL_STATE(3699)] = 112089, - [SMALL_STATE(3700)] = 112110, - [SMALL_STATE(3701)] = 112131, - [SMALL_STATE(3702)] = 112152, - [SMALL_STATE(3703)] = 112173, - [SMALL_STATE(3704)] = 112194, - [SMALL_STATE(3705)] = 112215, - [SMALL_STATE(3706)] = 112238, - [SMALL_STATE(3707)] = 112259, - [SMALL_STATE(3708)] = 112280, - [SMALL_STATE(3709)] = 112301, - [SMALL_STATE(3710)] = 112322, - [SMALL_STATE(3711)] = 112343, - [SMALL_STATE(3712)] = 112366, - [SMALL_STATE(3713)] = 112387, - [SMALL_STATE(3714)] = 112408, - [SMALL_STATE(3715)] = 112429, - [SMALL_STATE(3716)] = 112452, - [SMALL_STATE(3717)] = 112475, - [SMALL_STATE(3718)] = 112492, - [SMALL_STATE(3719)] = 112513, - [SMALL_STATE(3720)] = 112536, - [SMALL_STATE(3721)] = 112557, - [SMALL_STATE(3722)] = 112578, - [SMALL_STATE(3723)] = 112599, - [SMALL_STATE(3724)] = 112616, - [SMALL_STATE(3725)] = 112637, - [SMALL_STATE(3726)] = 112660, - [SMALL_STATE(3727)] = 112683, - [SMALL_STATE(3728)] = 112706, - [SMALL_STATE(3729)] = 112729, - [SMALL_STATE(3730)] = 112750, - [SMALL_STATE(3731)] = 112771, - [SMALL_STATE(3732)] = 112792, - [SMALL_STATE(3733)] = 112811, - [SMALL_STATE(3734)] = 112832, - [SMALL_STATE(3735)] = 112855, - [SMALL_STATE(3736)] = 112876, - [SMALL_STATE(3737)] = 112897, - [SMALL_STATE(3738)] = 112918, - [SMALL_STATE(3739)] = 112939, - [SMALL_STATE(3740)] = 112960, - [SMALL_STATE(3741)] = 112981, - [SMALL_STATE(3742)] = 113004, - [SMALL_STATE(3743)] = 113027, - [SMALL_STATE(3744)] = 113048, - [SMALL_STATE(3745)] = 113069, - [SMALL_STATE(3746)] = 113090, - [SMALL_STATE(3747)] = 113111, - [SMALL_STATE(3748)] = 113134, - [SMALL_STATE(3749)] = 113155, - [SMALL_STATE(3750)] = 113174, - [SMALL_STATE(3751)] = 113195, - [SMALL_STATE(3752)] = 113216, - [SMALL_STATE(3753)] = 113237, - [SMALL_STATE(3754)] = 113258, - [SMALL_STATE(3755)] = 113279, - [SMALL_STATE(3756)] = 113300, - [SMALL_STATE(3757)] = 113323, - [SMALL_STATE(3758)] = 113344, - [SMALL_STATE(3759)] = 113365, - [SMALL_STATE(3760)] = 113388, - [SMALL_STATE(3761)] = 113407, - [SMALL_STATE(3762)] = 113428, - [SMALL_STATE(3763)] = 113449, - [SMALL_STATE(3764)] = 113470, - [SMALL_STATE(3765)] = 113491, - [SMALL_STATE(3766)] = 113512, - [SMALL_STATE(3767)] = 113529, - [SMALL_STATE(3768)] = 113550, - [SMALL_STATE(3769)] = 113571, - [SMALL_STATE(3770)] = 113592, - [SMALL_STATE(3771)] = 113615, - [SMALL_STATE(3772)] = 113632, - [SMALL_STATE(3773)] = 113655, - [SMALL_STATE(3774)] = 113678, - [SMALL_STATE(3775)] = 113699, - [SMALL_STATE(3776)] = 113722, - [SMALL_STATE(3777)] = 113743, - [SMALL_STATE(3778)] = 113766, - [SMALL_STATE(3779)] = 113789, - [SMALL_STATE(3780)] = 113810, - [SMALL_STATE(3781)] = 113831, - [SMALL_STATE(3782)] = 113852, - [SMALL_STATE(3783)] = 113875, - [SMALL_STATE(3784)] = 113896, - [SMALL_STATE(3785)] = 113917, - [SMALL_STATE(3786)] = 113934, - [SMALL_STATE(3787)] = 113951, - [SMALL_STATE(3788)] = 113972, - [SMALL_STATE(3789)] = 113993, - [SMALL_STATE(3790)] = 114014, - [SMALL_STATE(3791)] = 114035, - [SMALL_STATE(3792)] = 114056, - [SMALL_STATE(3793)] = 114077, - [SMALL_STATE(3794)] = 114098, - [SMALL_STATE(3795)] = 114121, - [SMALL_STATE(3796)] = 114142, - [SMALL_STATE(3797)] = 114163, - [SMALL_STATE(3798)] = 114184, - [SMALL_STATE(3799)] = 114205, - [SMALL_STATE(3800)] = 114226, - [SMALL_STATE(3801)] = 114247, - [SMALL_STATE(3802)] = 114266, - [SMALL_STATE(3803)] = 114287, - [SMALL_STATE(3804)] = 114308, - [SMALL_STATE(3805)] = 114331, - [SMALL_STATE(3806)] = 114352, - [SMALL_STATE(3807)] = 114369, - [SMALL_STATE(3808)] = 114390, - [SMALL_STATE(3809)] = 114411, - [SMALL_STATE(3810)] = 114432, - [SMALL_STATE(3811)] = 114455, - [SMALL_STATE(3812)] = 114476, - [SMALL_STATE(3813)] = 114497, - [SMALL_STATE(3814)] = 114520, - [SMALL_STATE(3815)] = 114537, - [SMALL_STATE(3816)] = 114558, - [SMALL_STATE(3817)] = 114579, - [SMALL_STATE(3818)] = 114602, - [SMALL_STATE(3819)] = 114625, - [SMALL_STATE(3820)] = 114648, - [SMALL_STATE(3821)] = 114669, - [SMALL_STATE(3822)] = 114690, - [SMALL_STATE(3823)] = 114711, - [SMALL_STATE(3824)] = 114734, - [SMALL_STATE(3825)] = 114755, - [SMALL_STATE(3826)] = 114772, - [SMALL_STATE(3827)] = 114795, - [SMALL_STATE(3828)] = 114816, - [SMALL_STATE(3829)] = 114837, - [SMALL_STATE(3830)] = 114858, - [SMALL_STATE(3831)] = 114879, - [SMALL_STATE(3832)] = 114900, - [SMALL_STATE(3833)] = 114921, - [SMALL_STATE(3834)] = 114942, - [SMALL_STATE(3835)] = 114963, - [SMALL_STATE(3836)] = 114984, - [SMALL_STATE(3837)] = 115005, - [SMALL_STATE(3838)] = 115026, - [SMALL_STATE(3839)] = 115049, - [SMALL_STATE(3840)] = 115070, - [SMALL_STATE(3841)] = 115091, - [SMALL_STATE(3842)] = 115112, - [SMALL_STATE(3843)] = 115133, - [SMALL_STATE(3844)] = 115153, - [SMALL_STATE(3845)] = 115171, - [SMALL_STATE(3846)] = 115191, - [SMALL_STATE(3847)] = 115211, - [SMALL_STATE(3848)] = 115231, - [SMALL_STATE(3849)] = 115251, - [SMALL_STATE(3850)] = 115267, - [SMALL_STATE(3851)] = 115287, - [SMALL_STATE(3852)] = 115307, - [SMALL_STATE(3853)] = 115327, - [SMALL_STATE(3854)] = 115347, - [SMALL_STATE(3855)] = 115367, - [SMALL_STATE(3856)] = 115387, - [SMALL_STATE(3857)] = 115407, - [SMALL_STATE(3858)] = 115427, - [SMALL_STATE(3859)] = 115447, - [SMALL_STATE(3860)] = 115467, - [SMALL_STATE(3861)] = 115487, - [SMALL_STATE(3862)] = 115507, - [SMALL_STATE(3863)] = 115527, - [SMALL_STATE(3864)] = 115547, - [SMALL_STATE(3865)] = 115567, - [SMALL_STATE(3866)] = 115587, - [SMALL_STATE(3867)] = 115607, - [SMALL_STATE(3868)] = 115627, - [SMALL_STATE(3869)] = 115647, - [SMALL_STATE(3870)] = 115667, - [SMALL_STATE(3871)] = 115687, - [SMALL_STATE(3872)] = 115707, - [SMALL_STATE(3873)] = 115727, - [SMALL_STATE(3874)] = 115747, - [SMALL_STATE(3875)] = 115767, - [SMALL_STATE(3876)] = 115787, - [SMALL_STATE(3877)] = 115807, - [SMALL_STATE(3878)] = 115825, - [SMALL_STATE(3879)] = 115845, - [SMALL_STATE(3880)] = 115865, - [SMALL_STATE(3881)] = 115885, - [SMALL_STATE(3882)] = 115905, - [SMALL_STATE(3883)] = 115925, - [SMALL_STATE(3884)] = 115945, - [SMALL_STATE(3885)] = 115963, - [SMALL_STATE(3886)] = 115983, - [SMALL_STATE(3887)] = 116003, - [SMALL_STATE(3888)] = 116023, - [SMALL_STATE(3889)] = 116043, - [SMALL_STATE(3890)] = 116063, - [SMALL_STATE(3891)] = 116081, - [SMALL_STATE(3892)] = 116101, - [SMALL_STATE(3893)] = 116121, - [SMALL_STATE(3894)] = 116141, - [SMALL_STATE(3895)] = 116161, - [SMALL_STATE(3896)] = 116181, - [SMALL_STATE(3897)] = 116201, - [SMALL_STATE(3898)] = 116221, - [SMALL_STATE(3899)] = 116241, - [SMALL_STATE(3900)] = 116261, - [SMALL_STATE(3901)] = 116281, - [SMALL_STATE(3902)] = 116301, - [SMALL_STATE(3903)] = 116321, - [SMALL_STATE(3904)] = 116341, - [SMALL_STATE(3905)] = 116361, - [SMALL_STATE(3906)] = 116381, - [SMALL_STATE(3907)] = 116401, - [SMALL_STATE(3908)] = 116419, - [SMALL_STATE(3909)] = 116439, - [SMALL_STATE(3910)] = 116459, - [SMALL_STATE(3911)] = 116479, - [SMALL_STATE(3912)] = 116499, - [SMALL_STATE(3913)] = 116519, - [SMALL_STATE(3914)] = 116539, - [SMALL_STATE(3915)] = 116559, - [SMALL_STATE(3916)] = 116579, - [SMALL_STATE(3917)] = 116599, - [SMALL_STATE(3918)] = 116619, - [SMALL_STATE(3919)] = 116639, - [SMALL_STATE(3920)] = 116659, - [SMALL_STATE(3921)] = 116677, - [SMALL_STATE(3922)] = 116697, - [SMALL_STATE(3923)] = 116717, - [SMALL_STATE(3924)] = 116737, - [SMALL_STATE(3925)] = 116757, - [SMALL_STATE(3926)] = 116777, - [SMALL_STATE(3927)] = 116797, - [SMALL_STATE(3928)] = 116817, - [SMALL_STATE(3929)] = 116837, - [SMALL_STATE(3930)] = 116857, - [SMALL_STATE(3931)] = 116877, - [SMALL_STATE(3932)] = 116897, - [SMALL_STATE(3933)] = 116917, - [SMALL_STATE(3934)] = 116937, - [SMALL_STATE(3935)] = 116957, - [SMALL_STATE(3936)] = 116977, - [SMALL_STATE(3937)] = 116997, - [SMALL_STATE(3938)] = 117017, - [SMALL_STATE(3939)] = 117037, - [SMALL_STATE(3940)] = 117057, - [SMALL_STATE(3941)] = 117077, - [SMALL_STATE(3942)] = 117093, - [SMALL_STATE(3943)] = 117113, - [SMALL_STATE(3944)] = 117129, - [SMALL_STATE(3945)] = 117149, - [SMALL_STATE(3946)] = 117169, - [SMALL_STATE(3947)] = 117189, - [SMALL_STATE(3948)] = 117209, - [SMALL_STATE(3949)] = 117229, - [SMALL_STATE(3950)] = 117249, - [SMALL_STATE(3951)] = 117267, - [SMALL_STATE(3952)] = 117287, - [SMALL_STATE(3953)] = 117307, - [SMALL_STATE(3954)] = 117327, - [SMALL_STATE(3955)] = 117347, - [SMALL_STATE(3956)] = 117367, - [SMALL_STATE(3957)] = 117387, - [SMALL_STATE(3958)] = 117407, - [SMALL_STATE(3959)] = 117425, - [SMALL_STATE(3960)] = 117445, - [SMALL_STATE(3961)] = 117465, - [SMALL_STATE(3962)] = 117485, - [SMALL_STATE(3963)] = 117501, - [SMALL_STATE(3964)] = 117517, - [SMALL_STATE(3965)] = 117533, - [SMALL_STATE(3966)] = 117553, - [SMALL_STATE(3967)] = 117573, - [SMALL_STATE(3968)] = 117591, - [SMALL_STATE(3969)] = 117611, - [SMALL_STATE(3970)] = 117631, - [SMALL_STATE(3971)] = 117649, - [SMALL_STATE(3972)] = 117665, - [SMALL_STATE(3973)] = 117683, - [SMALL_STATE(3974)] = 117701, - [SMALL_STATE(3975)] = 117721, - [SMALL_STATE(3976)] = 117741, - [SMALL_STATE(3977)] = 117761, - [SMALL_STATE(3978)] = 117781, - [SMALL_STATE(3979)] = 117801, - [SMALL_STATE(3980)] = 117821, - [SMALL_STATE(3981)] = 117841, - [SMALL_STATE(3982)] = 117861, - [SMALL_STATE(3983)] = 117877, - [SMALL_STATE(3984)] = 117897, - [SMALL_STATE(3985)] = 117913, - [SMALL_STATE(3986)] = 117933, - [SMALL_STATE(3987)] = 117953, - [SMALL_STATE(3988)] = 117973, - [SMALL_STATE(3989)] = 117993, - [SMALL_STATE(3990)] = 118013, - [SMALL_STATE(3991)] = 118033, - [SMALL_STATE(3992)] = 118053, - [SMALL_STATE(3993)] = 118073, - [SMALL_STATE(3994)] = 118093, - [SMALL_STATE(3995)] = 118113, - [SMALL_STATE(3996)] = 118133, - [SMALL_STATE(3997)] = 118153, - [SMALL_STATE(3998)] = 118173, - [SMALL_STATE(3999)] = 118193, - [SMALL_STATE(4000)] = 118213, - [SMALL_STATE(4001)] = 118229, - [SMALL_STATE(4002)] = 118249, - [SMALL_STATE(4003)] = 118265, - [SMALL_STATE(4004)] = 118285, - [SMALL_STATE(4005)] = 118305, - [SMALL_STATE(4006)] = 118325, - [SMALL_STATE(4007)] = 118345, - [SMALL_STATE(4008)] = 118365, - [SMALL_STATE(4009)] = 118385, - [SMALL_STATE(4010)] = 118401, - [SMALL_STATE(4011)] = 118421, - [SMALL_STATE(4012)] = 118441, - [SMALL_STATE(4013)] = 118461, - [SMALL_STATE(4014)] = 118481, - [SMALL_STATE(4015)] = 118501, - [SMALL_STATE(4016)] = 118521, + [SMALL_STATE(3680)] = 111675, + [SMALL_STATE(3681)] = 111693, + [SMALL_STATE(3682)] = 111717, + [SMALL_STATE(3683)] = 111741, + [SMALL_STATE(3684)] = 111763, + [SMALL_STATE(3685)] = 111783, + [SMALL_STATE(3686)] = 111803, + [SMALL_STATE(3687)] = 111825, + [SMALL_STATE(3688)] = 111847, + [SMALL_STATE(3689)] = 111873, + [SMALL_STATE(3690)] = 111899, + [SMALL_STATE(3691)] = 111919, + [SMALL_STATE(3692)] = 111945, + [SMALL_STATE(3693)] = 111965, + [SMALL_STATE(3694)] = 111986, + [SMALL_STATE(3695)] = 112007, + [SMALL_STATE(3696)] = 112028, + [SMALL_STATE(3697)] = 112051, + [SMALL_STATE(3698)] = 112072, + [SMALL_STATE(3699)] = 112093, + [SMALL_STATE(3700)] = 112114, + [SMALL_STATE(3701)] = 112135, + [SMALL_STATE(3702)] = 112158, + [SMALL_STATE(3703)] = 112179, + [SMALL_STATE(3704)] = 112200, + [SMALL_STATE(3705)] = 112221, + [SMALL_STATE(3706)] = 112242, + [SMALL_STATE(3707)] = 112265, + [SMALL_STATE(3708)] = 112286, + [SMALL_STATE(3709)] = 112309, + [SMALL_STATE(3710)] = 112330, + [SMALL_STATE(3711)] = 112353, + [SMALL_STATE(3712)] = 112374, + [SMALL_STATE(3713)] = 112395, + [SMALL_STATE(3714)] = 112418, + [SMALL_STATE(3715)] = 112439, + [SMALL_STATE(3716)] = 112460, + [SMALL_STATE(3717)] = 112483, + [SMALL_STATE(3718)] = 112504, + [SMALL_STATE(3719)] = 112521, + [SMALL_STATE(3720)] = 112542, + [SMALL_STATE(3721)] = 112565, + [SMALL_STATE(3722)] = 112586, + [SMALL_STATE(3723)] = 112607, + [SMALL_STATE(3724)] = 112624, + [SMALL_STATE(3725)] = 112645, + [SMALL_STATE(3726)] = 112668, + [SMALL_STATE(3727)] = 112691, + [SMALL_STATE(3728)] = 112712, + [SMALL_STATE(3729)] = 112735, + [SMALL_STATE(3730)] = 112756, + [SMALL_STATE(3731)] = 112777, + [SMALL_STATE(3732)] = 112800, + [SMALL_STATE(3733)] = 112819, + [SMALL_STATE(3734)] = 112842, + [SMALL_STATE(3735)] = 112863, + [SMALL_STATE(3736)] = 112884, + [SMALL_STATE(3737)] = 112905, + [SMALL_STATE(3738)] = 112926, + [SMALL_STATE(3739)] = 112947, + [SMALL_STATE(3740)] = 112970, + [SMALL_STATE(3741)] = 112991, + [SMALL_STATE(3742)] = 113012, + [SMALL_STATE(3743)] = 113033, + [SMALL_STATE(3744)] = 113056, + [SMALL_STATE(3745)] = 113077, + [SMALL_STATE(3746)] = 113098, + [SMALL_STATE(3747)] = 113119, + [SMALL_STATE(3748)] = 113142, + [SMALL_STATE(3749)] = 113163, + [SMALL_STATE(3750)] = 113184, + [SMALL_STATE(3751)] = 113205, + [SMALL_STATE(3752)] = 113226, + [SMALL_STATE(3753)] = 113249, + [SMALL_STATE(3754)] = 113270, + [SMALL_STATE(3755)] = 113291, + [SMALL_STATE(3756)] = 113312, + [SMALL_STATE(3757)] = 113335, + [SMALL_STATE(3758)] = 113354, + [SMALL_STATE(3759)] = 113375, + [SMALL_STATE(3760)] = 113394, + [SMALL_STATE(3761)] = 113415, + [SMALL_STATE(3762)] = 113436, + [SMALL_STATE(3763)] = 113457, + [SMALL_STATE(3764)] = 113478, + [SMALL_STATE(3765)] = 113495, + [SMALL_STATE(3766)] = 113516, + [SMALL_STATE(3767)] = 113537, + [SMALL_STATE(3768)] = 113558, + [SMALL_STATE(3769)] = 113581, + [SMALL_STATE(3770)] = 113602, + [SMALL_STATE(3771)] = 113625, + [SMALL_STATE(3772)] = 113648, + [SMALL_STATE(3773)] = 113669, + [SMALL_STATE(3774)] = 113690, + [SMALL_STATE(3775)] = 113713, + [SMALL_STATE(3776)] = 113734, + [SMALL_STATE(3777)] = 113757, + [SMALL_STATE(3778)] = 113778, + [SMALL_STATE(3779)] = 113795, + [SMALL_STATE(3780)] = 113818, + [SMALL_STATE(3781)] = 113839, + [SMALL_STATE(3782)] = 113860, + [SMALL_STATE(3783)] = 113881, + [SMALL_STATE(3784)] = 113902, + [SMALL_STATE(3785)] = 113919, + [SMALL_STATE(3786)] = 113942, + [SMALL_STATE(3787)] = 113959, + [SMALL_STATE(3788)] = 113980, + [SMALL_STATE(3789)] = 114001, + [SMALL_STATE(3790)] = 114022, + [SMALL_STATE(3791)] = 114043, + [SMALL_STATE(3792)] = 114064, + [SMALL_STATE(3793)] = 114085, + [SMALL_STATE(3794)] = 114106, + [SMALL_STATE(3795)] = 114127, + [SMALL_STATE(3796)] = 114148, + [SMALL_STATE(3797)] = 114169, + [SMALL_STATE(3798)] = 114192, + [SMALL_STATE(3799)] = 114213, + [SMALL_STATE(3800)] = 114234, + [SMALL_STATE(3801)] = 114255, + [SMALL_STATE(3802)] = 114274, + [SMALL_STATE(3803)] = 114297, + [SMALL_STATE(3804)] = 114318, + [SMALL_STATE(3805)] = 114339, + [SMALL_STATE(3806)] = 114360, + [SMALL_STATE(3807)] = 114377, + [SMALL_STATE(3808)] = 114398, + [SMALL_STATE(3809)] = 114419, + [SMALL_STATE(3810)] = 114442, + [SMALL_STATE(3811)] = 114463, + [SMALL_STATE(3812)] = 114486, + [SMALL_STATE(3813)] = 114507, + [SMALL_STATE(3814)] = 114528, + [SMALL_STATE(3815)] = 114545, + [SMALL_STATE(3816)] = 114568, + [SMALL_STATE(3817)] = 114589, + [SMALL_STATE(3818)] = 114610, + [SMALL_STATE(3819)] = 114633, + [SMALL_STATE(3820)] = 114654, + [SMALL_STATE(3821)] = 114677, + [SMALL_STATE(3822)] = 114698, + [SMALL_STATE(3823)] = 114719, + [SMALL_STATE(3824)] = 114740, + [SMALL_STATE(3825)] = 114761, + [SMALL_STATE(3826)] = 114778, + [SMALL_STATE(3827)] = 114801, + [SMALL_STATE(3828)] = 114822, + [SMALL_STATE(3829)] = 114843, + [SMALL_STATE(3830)] = 114864, + [SMALL_STATE(3831)] = 114885, + [SMALL_STATE(3832)] = 114906, + [SMALL_STATE(3833)] = 114927, + [SMALL_STATE(3834)] = 114948, + [SMALL_STATE(3835)] = 114969, + [SMALL_STATE(3836)] = 114990, + [SMALL_STATE(3837)] = 115011, + [SMALL_STATE(3838)] = 115032, + [SMALL_STATE(3839)] = 115053, + [SMALL_STATE(3840)] = 115076, + [SMALL_STATE(3841)] = 115097, + [SMALL_STATE(3842)] = 115118, + [SMALL_STATE(3843)] = 115139, + [SMALL_STATE(3844)] = 115155, + [SMALL_STATE(3845)] = 115175, + [SMALL_STATE(3846)] = 115195, + [SMALL_STATE(3847)] = 115215, + [SMALL_STATE(3848)] = 115235, + [SMALL_STATE(3849)] = 115255, + [SMALL_STATE(3850)] = 115275, + [SMALL_STATE(3851)] = 115295, + [SMALL_STATE(3852)] = 115315, + [SMALL_STATE(3853)] = 115335, + [SMALL_STATE(3854)] = 115355, + [SMALL_STATE(3855)] = 115375, + [SMALL_STATE(3856)] = 115395, + [SMALL_STATE(3857)] = 115415, + [SMALL_STATE(3858)] = 115435, + [SMALL_STATE(3859)] = 115455, + [SMALL_STATE(3860)] = 115475, + [SMALL_STATE(3861)] = 115495, + [SMALL_STATE(3862)] = 115515, + [SMALL_STATE(3863)] = 115535, + [SMALL_STATE(3864)] = 115555, + [SMALL_STATE(3865)] = 115575, + [SMALL_STATE(3866)] = 115595, + [SMALL_STATE(3867)] = 115615, + [SMALL_STATE(3868)] = 115635, + [SMALL_STATE(3869)] = 115655, + [SMALL_STATE(3870)] = 115675, + [SMALL_STATE(3871)] = 115695, + [SMALL_STATE(3872)] = 115715, + [SMALL_STATE(3873)] = 115735, + [SMALL_STATE(3874)] = 115755, + [SMALL_STATE(3875)] = 115775, + [SMALL_STATE(3876)] = 115795, + [SMALL_STATE(3877)] = 115815, + [SMALL_STATE(3878)] = 115835, + [SMALL_STATE(3879)] = 115853, + [SMALL_STATE(3880)] = 115873, + [SMALL_STATE(3881)] = 115893, + [SMALL_STATE(3882)] = 115913, + [SMALL_STATE(3883)] = 115933, + [SMALL_STATE(3884)] = 115953, + [SMALL_STATE(3885)] = 115973, + [SMALL_STATE(3886)] = 115991, + [SMALL_STATE(3887)] = 116011, + [SMALL_STATE(3888)] = 116031, + [SMALL_STATE(3889)] = 116051, + [SMALL_STATE(3890)] = 116069, + [SMALL_STATE(3891)] = 116089, + [SMALL_STATE(3892)] = 116109, + [SMALL_STATE(3893)] = 116129, + [SMALL_STATE(3894)] = 116149, + [SMALL_STATE(3895)] = 116169, + [SMALL_STATE(3896)] = 116189, + [SMALL_STATE(3897)] = 116209, + [SMALL_STATE(3898)] = 116229, + [SMALL_STATE(3899)] = 116249, + [SMALL_STATE(3900)] = 116269, + [SMALL_STATE(3901)] = 116289, + [SMALL_STATE(3902)] = 116309, + [SMALL_STATE(3903)] = 116329, + [SMALL_STATE(3904)] = 116349, + [SMALL_STATE(3905)] = 116369, + [SMALL_STATE(3906)] = 116389, + [SMALL_STATE(3907)] = 116409, + [SMALL_STATE(3908)] = 116429, + [SMALL_STATE(3909)] = 116449, + [SMALL_STATE(3910)] = 116469, + [SMALL_STATE(3911)] = 116489, + [SMALL_STATE(3912)] = 116509, + [SMALL_STATE(3913)] = 116529, + [SMALL_STATE(3914)] = 116547, + [SMALL_STATE(3915)] = 116567, + [SMALL_STATE(3916)] = 116587, + [SMALL_STATE(3917)] = 116607, + [SMALL_STATE(3918)] = 116627, + [SMALL_STATE(3919)] = 116647, + [SMALL_STATE(3920)] = 116667, + [SMALL_STATE(3921)] = 116687, + [SMALL_STATE(3922)] = 116707, + [SMALL_STATE(3923)] = 116727, + [SMALL_STATE(3924)] = 116747, + [SMALL_STATE(3925)] = 116765, + [SMALL_STATE(3926)] = 116785, + [SMALL_STATE(3927)] = 116805, + [SMALL_STATE(3928)] = 116825, + [SMALL_STATE(3929)] = 116845, + [SMALL_STATE(3930)] = 116865, + [SMALL_STATE(3931)] = 116885, + [SMALL_STATE(3932)] = 116905, + [SMALL_STATE(3933)] = 116925, + [SMALL_STATE(3934)] = 116945, + [SMALL_STATE(3935)] = 116965, + [SMALL_STATE(3936)] = 116985, + [SMALL_STATE(3937)] = 117005, + [SMALL_STATE(3938)] = 117025, + [SMALL_STATE(3939)] = 117045, + [SMALL_STATE(3940)] = 117065, + [SMALL_STATE(3941)] = 117085, + [SMALL_STATE(3942)] = 117105, + [SMALL_STATE(3943)] = 117125, + [SMALL_STATE(3944)] = 117145, + [SMALL_STATE(3945)] = 117161, + [SMALL_STATE(3946)] = 117181, + [SMALL_STATE(3947)] = 117197, + [SMALL_STATE(3948)] = 117217, + [SMALL_STATE(3949)] = 117237, + [SMALL_STATE(3950)] = 117257, + [SMALL_STATE(3951)] = 117277, + [SMALL_STATE(3952)] = 117297, + [SMALL_STATE(3953)] = 117317, + [SMALL_STATE(3954)] = 117335, + [SMALL_STATE(3955)] = 117355, + [SMALL_STATE(3956)] = 117375, + [SMALL_STATE(3957)] = 117395, + [SMALL_STATE(3958)] = 117411, + [SMALL_STATE(3959)] = 117429, + [SMALL_STATE(3960)] = 117447, + [SMALL_STATE(3961)] = 117463, + [SMALL_STATE(3962)] = 117483, + [SMALL_STATE(3963)] = 117503, + [SMALL_STATE(3964)] = 117519, + [SMALL_STATE(3965)] = 117539, + [SMALL_STATE(3966)] = 117559, + [SMALL_STATE(3967)] = 117579, + [SMALL_STATE(3968)] = 117599, + [SMALL_STATE(3969)] = 117619, + [SMALL_STATE(3970)] = 117637, + [SMALL_STATE(3971)] = 117655, + [SMALL_STATE(3972)] = 117671, + [SMALL_STATE(3973)] = 117691, + [SMALL_STATE(3974)] = 117711, + [SMALL_STATE(3975)] = 117731, + [SMALL_STATE(3976)] = 117749, + [SMALL_STATE(3977)] = 117769, + [SMALL_STATE(3978)] = 117789, + [SMALL_STATE(3979)] = 117809, + [SMALL_STATE(3980)] = 117829, + [SMALL_STATE(3981)] = 117849, + [SMALL_STATE(3982)] = 117865, + [SMALL_STATE(3983)] = 117885, + [SMALL_STATE(3984)] = 117901, + [SMALL_STATE(3985)] = 117921, + [SMALL_STATE(3986)] = 117941, + [SMALL_STATE(3987)] = 117961, + [SMALL_STATE(3988)] = 117981, + [SMALL_STATE(3989)] = 118001, + [SMALL_STATE(3990)] = 118021, + [SMALL_STATE(3991)] = 118041, + [SMALL_STATE(3992)] = 118061, + [SMALL_STATE(3993)] = 118081, + [SMALL_STATE(3994)] = 118101, + [SMALL_STATE(3995)] = 118121, + [SMALL_STATE(3996)] = 118141, + [SMALL_STATE(3997)] = 118161, + [SMALL_STATE(3998)] = 118181, + [SMALL_STATE(3999)] = 118201, + [SMALL_STATE(4000)] = 118221, + [SMALL_STATE(4001)] = 118241, + [SMALL_STATE(4002)] = 118261, + [SMALL_STATE(4003)] = 118277, + [SMALL_STATE(4004)] = 118295, + [SMALL_STATE(4005)] = 118315, + [SMALL_STATE(4006)] = 118331, + [SMALL_STATE(4007)] = 118351, + [SMALL_STATE(4008)] = 118371, + [SMALL_STATE(4009)] = 118391, + [SMALL_STATE(4010)] = 118411, + [SMALL_STATE(4011)] = 118429, + [SMALL_STATE(4012)] = 118447, + [SMALL_STATE(4013)] = 118463, + [SMALL_STATE(4014)] = 118483, + [SMALL_STATE(4015)] = 118503, + [SMALL_STATE(4016)] = 118523, [SMALL_STATE(4017)] = 118539, [SMALL_STATE(4018)] = 118559, [SMALL_STATE(4019)] = 118577, - [SMALL_STATE(4020)] = 118595, - [SMALL_STATE(4021)] = 118613, - [SMALL_STATE(4022)] = 118629, - [SMALL_STATE(4023)] = 118649, - [SMALL_STATE(4024)] = 118667, - [SMALL_STATE(4025)] = 118685, - [SMALL_STATE(4026)] = 118705, - [SMALL_STATE(4027)] = 118725, - [SMALL_STATE(4028)] = 118743, - [SMALL_STATE(4029)] = 118763, - [SMALL_STATE(4030)] = 118779, - [SMALL_STATE(4031)] = 118799, - [SMALL_STATE(4032)] = 118819, - [SMALL_STATE(4033)] = 118839, - [SMALL_STATE(4034)] = 118859, - [SMALL_STATE(4035)] = 118879, - [SMALL_STATE(4036)] = 118899, - [SMALL_STATE(4037)] = 118919, - [SMALL_STATE(4038)] = 118939, - [SMALL_STATE(4039)] = 118959, - [SMALL_STATE(4040)] = 118979, - [SMALL_STATE(4041)] = 118999, - [SMALL_STATE(4042)] = 119019, - [SMALL_STATE(4043)] = 119039, - [SMALL_STATE(4044)] = 119059, - [SMALL_STATE(4045)] = 119079, - [SMALL_STATE(4046)] = 119099, - [SMALL_STATE(4047)] = 119119, - [SMALL_STATE(4048)] = 119139, - [SMALL_STATE(4049)] = 119159, - [SMALL_STATE(4050)] = 119179, - [SMALL_STATE(4051)] = 119197, - [SMALL_STATE(4052)] = 119217, - [SMALL_STATE(4053)] = 119237, - [SMALL_STATE(4054)] = 119257, - [SMALL_STATE(4055)] = 119277, - [SMALL_STATE(4056)] = 119297, - [SMALL_STATE(4057)] = 119317, - [SMALL_STATE(4058)] = 119337, - [SMALL_STATE(4059)] = 119357, - [SMALL_STATE(4060)] = 119373, - [SMALL_STATE(4061)] = 119393, - [SMALL_STATE(4062)] = 119413, - [SMALL_STATE(4063)] = 119433, - [SMALL_STATE(4064)] = 119453, - [SMALL_STATE(4065)] = 119473, - [SMALL_STATE(4066)] = 119493, - [SMALL_STATE(4067)] = 119513, - [SMALL_STATE(4068)] = 119533, - [SMALL_STATE(4069)] = 119553, - [SMALL_STATE(4070)] = 119573, - [SMALL_STATE(4071)] = 119593, - [SMALL_STATE(4072)] = 119613, - [SMALL_STATE(4073)] = 119633, - [SMALL_STATE(4074)] = 119653, - [SMALL_STATE(4075)] = 119673, - [SMALL_STATE(4076)] = 119693, - [SMALL_STATE(4077)] = 119713, - [SMALL_STATE(4078)] = 119733, - [SMALL_STATE(4079)] = 119753, - [SMALL_STATE(4080)] = 119773, - [SMALL_STATE(4081)] = 119793, - [SMALL_STATE(4082)] = 119813, - [SMALL_STATE(4083)] = 119833, - [SMALL_STATE(4084)] = 119853, - [SMALL_STATE(4085)] = 119873, - [SMALL_STATE(4086)] = 119893, - [SMALL_STATE(4087)] = 119913, - [SMALL_STATE(4088)] = 119933, - [SMALL_STATE(4089)] = 119953, - [SMALL_STATE(4090)] = 119973, - [SMALL_STATE(4091)] = 119993, - [SMALL_STATE(4092)] = 120013, - [SMALL_STATE(4093)] = 120033, - [SMALL_STATE(4094)] = 120053, - [SMALL_STATE(4095)] = 120070, - [SMALL_STATE(4096)] = 120087, - [SMALL_STATE(4097)] = 120104, - [SMALL_STATE(4098)] = 120121, - [SMALL_STATE(4099)] = 120138, - [SMALL_STATE(4100)] = 120155, - [SMALL_STATE(4101)] = 120172, - [SMALL_STATE(4102)] = 120189, - [SMALL_STATE(4103)] = 120206, - [SMALL_STATE(4104)] = 120223, - [SMALL_STATE(4105)] = 120240, - [SMALL_STATE(4106)] = 120257, - [SMALL_STATE(4107)] = 120274, - [SMALL_STATE(4108)] = 120291, - [SMALL_STATE(4109)] = 120308, - [SMALL_STATE(4110)] = 120325, - [SMALL_STATE(4111)] = 120342, - [SMALL_STATE(4112)] = 120359, - [SMALL_STATE(4113)] = 120376, - [SMALL_STATE(4114)] = 120391, - [SMALL_STATE(4115)] = 120408, - [SMALL_STATE(4116)] = 120425, - [SMALL_STATE(4117)] = 120442, - [SMALL_STATE(4118)] = 120459, - [SMALL_STATE(4119)] = 120476, - [SMALL_STATE(4120)] = 120493, - [SMALL_STATE(4121)] = 120510, - [SMALL_STATE(4122)] = 120527, - [SMALL_STATE(4123)] = 120544, - [SMALL_STATE(4124)] = 120561, - [SMALL_STATE(4125)] = 120578, - [SMALL_STATE(4126)] = 120595, - [SMALL_STATE(4127)] = 120612, - [SMALL_STATE(4128)] = 120629, - [SMALL_STATE(4129)] = 120646, - [SMALL_STATE(4130)] = 120663, - [SMALL_STATE(4131)] = 120680, - [SMALL_STATE(4132)] = 120695, - [SMALL_STATE(4133)] = 120712, - [SMALL_STATE(4134)] = 120729, - [SMALL_STATE(4135)] = 120746, - [SMALL_STATE(4136)] = 120763, - [SMALL_STATE(4137)] = 120780, - [SMALL_STATE(4138)] = 120797, - [SMALL_STATE(4139)] = 120814, - [SMALL_STATE(4140)] = 120831, - [SMALL_STATE(4141)] = 120848, - [SMALL_STATE(4142)] = 120865, - [SMALL_STATE(4143)] = 120882, - [SMALL_STATE(4144)] = 120899, - [SMALL_STATE(4145)] = 120916, - [SMALL_STATE(4146)] = 120933, - [SMALL_STATE(4147)] = 120950, - [SMALL_STATE(4148)] = 120967, - [SMALL_STATE(4149)] = 120984, - [SMALL_STATE(4150)] = 120999, - [SMALL_STATE(4151)] = 121016, - [SMALL_STATE(4152)] = 121031, - [SMALL_STATE(4153)] = 121048, - [SMALL_STATE(4154)] = 121065, - [SMALL_STATE(4155)] = 121082, - [SMALL_STATE(4156)] = 121099, - [SMALL_STATE(4157)] = 121116, - [SMALL_STATE(4158)] = 121133, - [SMALL_STATE(4159)] = 121150, - [SMALL_STATE(4160)] = 121165, - [SMALL_STATE(4161)] = 121182, - [SMALL_STATE(4162)] = 121199, - [SMALL_STATE(4163)] = 121216, - [SMALL_STATE(4164)] = 121233, - [SMALL_STATE(4165)] = 121250, - [SMALL_STATE(4166)] = 121267, - [SMALL_STATE(4167)] = 121284, - [SMALL_STATE(4168)] = 121301, - [SMALL_STATE(4169)] = 121318, - [SMALL_STATE(4170)] = 121335, - [SMALL_STATE(4171)] = 121352, - [SMALL_STATE(4172)] = 121369, - [SMALL_STATE(4173)] = 121386, - [SMALL_STATE(4174)] = 121403, - [SMALL_STATE(4175)] = 121420, - [SMALL_STATE(4176)] = 121437, - [SMALL_STATE(4177)] = 121452, - [SMALL_STATE(4178)] = 121469, - [SMALL_STATE(4179)] = 121486, - [SMALL_STATE(4180)] = 121503, - [SMALL_STATE(4181)] = 121520, - [SMALL_STATE(4182)] = 121537, - [SMALL_STATE(4183)] = 121554, - [SMALL_STATE(4184)] = 121571, - [SMALL_STATE(4185)] = 121588, - [SMALL_STATE(4186)] = 121605, - [SMALL_STATE(4187)] = 121622, - [SMALL_STATE(4188)] = 121639, - [SMALL_STATE(4189)] = 121656, - [SMALL_STATE(4190)] = 121671, - [SMALL_STATE(4191)] = 121688, - [SMALL_STATE(4192)] = 121705, - [SMALL_STATE(4193)] = 121722, - [SMALL_STATE(4194)] = 121739, - [SMALL_STATE(4195)] = 121756, - [SMALL_STATE(4196)] = 121771, - [SMALL_STATE(4197)] = 121788, - [SMALL_STATE(4198)] = 121805, - [SMALL_STATE(4199)] = 121820, - [SMALL_STATE(4200)] = 121835, - [SMALL_STATE(4201)] = 121852, - [SMALL_STATE(4202)] = 121869, - [SMALL_STATE(4203)] = 121886, - [SMALL_STATE(4204)] = 121903, - [SMALL_STATE(4205)] = 121918, - [SMALL_STATE(4206)] = 121935, - [SMALL_STATE(4207)] = 121950, - [SMALL_STATE(4208)] = 121967, - [SMALL_STATE(4209)] = 121984, - [SMALL_STATE(4210)] = 121999, - [SMALL_STATE(4211)] = 122016, - [SMALL_STATE(4212)] = 122033, - [SMALL_STATE(4213)] = 122050, - [SMALL_STATE(4214)] = 122065, - [SMALL_STATE(4215)] = 122082, - [SMALL_STATE(4216)] = 122099, - [SMALL_STATE(4217)] = 122116, - [SMALL_STATE(4218)] = 122133, - [SMALL_STATE(4219)] = 122150, - [SMALL_STATE(4220)] = 122167, - [SMALL_STATE(4221)] = 122184, - [SMALL_STATE(4222)] = 122201, - [SMALL_STATE(4223)] = 122218, - [SMALL_STATE(4224)] = 122233, - [SMALL_STATE(4225)] = 122250, - [SMALL_STATE(4226)] = 122267, - [SMALL_STATE(4227)] = 122284, - [SMALL_STATE(4228)] = 122301, - [SMALL_STATE(4229)] = 122316, - [SMALL_STATE(4230)] = 122333, - [SMALL_STATE(4231)] = 122350, - [SMALL_STATE(4232)] = 122367, - [SMALL_STATE(4233)] = 122382, - [SMALL_STATE(4234)] = 122399, - [SMALL_STATE(4235)] = 122416, - [SMALL_STATE(4236)] = 122433, - [SMALL_STATE(4237)] = 122448, - [SMALL_STATE(4238)] = 122465, - [SMALL_STATE(4239)] = 122482, - [SMALL_STATE(4240)] = 122499, - [SMALL_STATE(4241)] = 122514, - [SMALL_STATE(4242)] = 122531, - [SMALL_STATE(4243)] = 122548, - [SMALL_STATE(4244)] = 122563, - [SMALL_STATE(4245)] = 122580, - [SMALL_STATE(4246)] = 122597, - [SMALL_STATE(4247)] = 122612, - [SMALL_STATE(4248)] = 122629, - [SMALL_STATE(4249)] = 122646, - [SMALL_STATE(4250)] = 122663, - [SMALL_STATE(4251)] = 122680, - [SMALL_STATE(4252)] = 122697, - [SMALL_STATE(4253)] = 122714, - [SMALL_STATE(4254)] = 122731, - [SMALL_STATE(4255)] = 122748, - [SMALL_STATE(4256)] = 122765, - [SMALL_STATE(4257)] = 122782, - [SMALL_STATE(4258)] = 122797, - [SMALL_STATE(4259)] = 122814, - [SMALL_STATE(4260)] = 122831, - [SMALL_STATE(4261)] = 122848, - [SMALL_STATE(4262)] = 122865, - [SMALL_STATE(4263)] = 122882, - [SMALL_STATE(4264)] = 122897, - [SMALL_STATE(4265)] = 122914, - [SMALL_STATE(4266)] = 122931, - [SMALL_STATE(4267)] = 122948, - [SMALL_STATE(4268)] = 122963, - [SMALL_STATE(4269)] = 122978, - [SMALL_STATE(4270)] = 122995, - [SMALL_STATE(4271)] = 123012, - [SMALL_STATE(4272)] = 123029, - [SMALL_STATE(4273)] = 123046, - [SMALL_STATE(4274)] = 123061, - [SMALL_STATE(4275)] = 123078, - [SMALL_STATE(4276)] = 123095, - [SMALL_STATE(4277)] = 123110, - [SMALL_STATE(4278)] = 123127, - [SMALL_STATE(4279)] = 123144, - [SMALL_STATE(4280)] = 123161, - [SMALL_STATE(4281)] = 123178, - [SMALL_STATE(4282)] = 123195, - [SMALL_STATE(4283)] = 123212, - [SMALL_STATE(4284)] = 123229, - [SMALL_STATE(4285)] = 123246, - [SMALL_STATE(4286)] = 123261, - [SMALL_STATE(4287)] = 123278, - [SMALL_STATE(4288)] = 123295, - [SMALL_STATE(4289)] = 123310, - [SMALL_STATE(4290)] = 123327, - [SMALL_STATE(4291)] = 123344, - [SMALL_STATE(4292)] = 123361, - [SMALL_STATE(4293)] = 123378, - [SMALL_STATE(4294)] = 123395, - [SMALL_STATE(4295)] = 123412, - [SMALL_STATE(4296)] = 123429, - [SMALL_STATE(4297)] = 123446, - [SMALL_STATE(4298)] = 123463, - [SMALL_STATE(4299)] = 123480, - [SMALL_STATE(4300)] = 123497, - [SMALL_STATE(4301)] = 123514, - [SMALL_STATE(4302)] = 123531, - [SMALL_STATE(4303)] = 123548, - [SMALL_STATE(4304)] = 123565, - [SMALL_STATE(4305)] = 123582, - [SMALL_STATE(4306)] = 123599, - [SMALL_STATE(4307)] = 123616, - [SMALL_STATE(4308)] = 123633, - [SMALL_STATE(4309)] = 123650, - [SMALL_STATE(4310)] = 123667, - [SMALL_STATE(4311)] = 123684, - [SMALL_STATE(4312)] = 123701, - [SMALL_STATE(4313)] = 123718, - [SMALL_STATE(4314)] = 123735, - [SMALL_STATE(4315)] = 123752, - [SMALL_STATE(4316)] = 123769, - [SMALL_STATE(4317)] = 123786, - [SMALL_STATE(4318)] = 123803, - [SMALL_STATE(4319)] = 123820, - [SMALL_STATE(4320)] = 123835, - [SMALL_STATE(4321)] = 123852, - [SMALL_STATE(4322)] = 123869, - [SMALL_STATE(4323)] = 123886, - [SMALL_STATE(4324)] = 123903, - [SMALL_STATE(4325)] = 123920, - [SMALL_STATE(4326)] = 123937, - [SMALL_STATE(4327)] = 123954, - [SMALL_STATE(4328)] = 123971, - [SMALL_STATE(4329)] = 123988, - [SMALL_STATE(4330)] = 124005, - [SMALL_STATE(4331)] = 124022, - [SMALL_STATE(4332)] = 124039, - [SMALL_STATE(4333)] = 124056, - [SMALL_STATE(4334)] = 124073, - [SMALL_STATE(4335)] = 124090, - [SMALL_STATE(4336)] = 124105, - [SMALL_STATE(4337)] = 124122, - [SMALL_STATE(4338)] = 124139, - [SMALL_STATE(4339)] = 124156, - [SMALL_STATE(4340)] = 124173, - [SMALL_STATE(4341)] = 124190, - [SMALL_STATE(4342)] = 124207, - [SMALL_STATE(4343)] = 124224, - [SMALL_STATE(4344)] = 124241, - [SMALL_STATE(4345)] = 124258, - [SMALL_STATE(4346)] = 124275, - [SMALL_STATE(4347)] = 124292, - [SMALL_STATE(4348)] = 124309, - [SMALL_STATE(4349)] = 124326, - [SMALL_STATE(4350)] = 124343, - [SMALL_STATE(4351)] = 124360, - [SMALL_STATE(4352)] = 124377, - [SMALL_STATE(4353)] = 124394, - [SMALL_STATE(4354)] = 124411, - [SMALL_STATE(4355)] = 124428, - [SMALL_STATE(4356)] = 124445, - [SMALL_STATE(4357)] = 124462, - [SMALL_STATE(4358)] = 124479, - [SMALL_STATE(4359)] = 124496, - [SMALL_STATE(4360)] = 124513, - [SMALL_STATE(4361)] = 124530, - [SMALL_STATE(4362)] = 124547, - [SMALL_STATE(4363)] = 124564, - [SMALL_STATE(4364)] = 124581, - [SMALL_STATE(4365)] = 124598, - [SMALL_STATE(4366)] = 124615, - [SMALL_STATE(4367)] = 124632, - [SMALL_STATE(4368)] = 124649, - [SMALL_STATE(4369)] = 124666, - [SMALL_STATE(4370)] = 124683, - [SMALL_STATE(4371)] = 124700, - [SMALL_STATE(4372)] = 124717, - [SMALL_STATE(4373)] = 124734, - [SMALL_STATE(4374)] = 124751, - [SMALL_STATE(4375)] = 124768, - [SMALL_STATE(4376)] = 124785, - [SMALL_STATE(4377)] = 124802, - [SMALL_STATE(4378)] = 124819, - [SMALL_STATE(4379)] = 124836, - [SMALL_STATE(4380)] = 124851, - [SMALL_STATE(4381)] = 124868, - [SMALL_STATE(4382)] = 124885, - [SMALL_STATE(4383)] = 124902, - [SMALL_STATE(4384)] = 124919, - [SMALL_STATE(4385)] = 124936, - [SMALL_STATE(4386)] = 124953, - [SMALL_STATE(4387)] = 124970, - [SMALL_STATE(4388)] = 124985, - [SMALL_STATE(4389)] = 125002, - [SMALL_STATE(4390)] = 125019, - [SMALL_STATE(4391)] = 125036, - [SMALL_STATE(4392)] = 125053, - [SMALL_STATE(4393)] = 125070, - [SMALL_STATE(4394)] = 125087, - [SMALL_STATE(4395)] = 125104, - [SMALL_STATE(4396)] = 125121, - [SMALL_STATE(4397)] = 125138, - [SMALL_STATE(4398)] = 125155, - [SMALL_STATE(4399)] = 125172, - [SMALL_STATE(4400)] = 125189, - [SMALL_STATE(4401)] = 125206, - [SMALL_STATE(4402)] = 125223, - [SMALL_STATE(4403)] = 125240, - [SMALL_STATE(4404)] = 125257, - [SMALL_STATE(4405)] = 125274, - [SMALL_STATE(4406)] = 125291, - [SMALL_STATE(4407)] = 125308, - [SMALL_STATE(4408)] = 125325, - [SMALL_STATE(4409)] = 125342, - [SMALL_STATE(4410)] = 125359, - [SMALL_STATE(4411)] = 125376, - [SMALL_STATE(4412)] = 125393, - [SMALL_STATE(4413)] = 125410, - [SMALL_STATE(4414)] = 125427, - [SMALL_STATE(4415)] = 125441, - [SMALL_STATE(4416)] = 125455, - [SMALL_STATE(4417)] = 125469, - [SMALL_STATE(4418)] = 125483, - [SMALL_STATE(4419)] = 125497, - [SMALL_STATE(4420)] = 125511, - [SMALL_STATE(4421)] = 125525, - [SMALL_STATE(4422)] = 125539, - [SMALL_STATE(4423)] = 125553, - [SMALL_STATE(4424)] = 125567, - [SMALL_STATE(4425)] = 125581, - [SMALL_STATE(4426)] = 125595, - [SMALL_STATE(4427)] = 125609, - [SMALL_STATE(4428)] = 125623, - [SMALL_STATE(4429)] = 125637, - [SMALL_STATE(4430)] = 125651, - [SMALL_STATE(4431)] = 125665, - [SMALL_STATE(4432)] = 125679, - [SMALL_STATE(4433)] = 125693, - [SMALL_STATE(4434)] = 125707, - [SMALL_STATE(4435)] = 125721, - [SMALL_STATE(4436)] = 125735, - [SMALL_STATE(4437)] = 125749, - [SMALL_STATE(4438)] = 125763, - [SMALL_STATE(4439)] = 125777, - [SMALL_STATE(4440)] = 125791, - [SMALL_STATE(4441)] = 125805, - [SMALL_STATE(4442)] = 125819, - [SMALL_STATE(4443)] = 125833, - [SMALL_STATE(4444)] = 125847, - [SMALL_STATE(4445)] = 125861, - [SMALL_STATE(4446)] = 125875, - [SMALL_STATE(4447)] = 125889, - [SMALL_STATE(4448)] = 125903, - [SMALL_STATE(4449)] = 125917, - [SMALL_STATE(4450)] = 125931, - [SMALL_STATE(4451)] = 125945, - [SMALL_STATE(4452)] = 125959, - [SMALL_STATE(4453)] = 125973, - [SMALL_STATE(4454)] = 125987, - [SMALL_STATE(4455)] = 126001, - [SMALL_STATE(4456)] = 126015, - [SMALL_STATE(4457)] = 126029, - [SMALL_STATE(4458)] = 126043, - [SMALL_STATE(4459)] = 126057, - [SMALL_STATE(4460)] = 126071, - [SMALL_STATE(4461)] = 126085, - [SMALL_STATE(4462)] = 126099, - [SMALL_STATE(4463)] = 126113, - [SMALL_STATE(4464)] = 126127, - [SMALL_STATE(4465)] = 126141, - [SMALL_STATE(4466)] = 126155, - [SMALL_STATE(4467)] = 126169, - [SMALL_STATE(4468)] = 126183, - [SMALL_STATE(4469)] = 126197, - [SMALL_STATE(4470)] = 126211, - [SMALL_STATE(4471)] = 126225, - [SMALL_STATE(4472)] = 126239, - [SMALL_STATE(4473)] = 126253, - [SMALL_STATE(4474)] = 126267, - [SMALL_STATE(4475)] = 126281, - [SMALL_STATE(4476)] = 126295, - [SMALL_STATE(4477)] = 126309, - [SMALL_STATE(4478)] = 126323, - [SMALL_STATE(4479)] = 126337, - [SMALL_STATE(4480)] = 126351, - [SMALL_STATE(4481)] = 126365, - [SMALL_STATE(4482)] = 126379, - [SMALL_STATE(4483)] = 126393, - [SMALL_STATE(4484)] = 126407, - [SMALL_STATE(4485)] = 126421, - [SMALL_STATE(4486)] = 126435, - [SMALL_STATE(4487)] = 126449, - [SMALL_STATE(4488)] = 126463, - [SMALL_STATE(4489)] = 126477, - [SMALL_STATE(4490)] = 126491, - [SMALL_STATE(4491)] = 126505, - [SMALL_STATE(4492)] = 126519, - [SMALL_STATE(4493)] = 126533, - [SMALL_STATE(4494)] = 126547, - [SMALL_STATE(4495)] = 126561, - [SMALL_STATE(4496)] = 126575, - [SMALL_STATE(4497)] = 126589, - [SMALL_STATE(4498)] = 126603, - [SMALL_STATE(4499)] = 126617, - [SMALL_STATE(4500)] = 126631, - [SMALL_STATE(4501)] = 126645, - [SMALL_STATE(4502)] = 126659, - [SMALL_STATE(4503)] = 126673, - [SMALL_STATE(4504)] = 126687, - [SMALL_STATE(4505)] = 126701, - [SMALL_STATE(4506)] = 126715, - [SMALL_STATE(4507)] = 126729, - [SMALL_STATE(4508)] = 126743, - [SMALL_STATE(4509)] = 126757, - [SMALL_STATE(4510)] = 126771, - [SMALL_STATE(4511)] = 126785, - [SMALL_STATE(4512)] = 126799, - [SMALL_STATE(4513)] = 126813, - [SMALL_STATE(4514)] = 126827, - [SMALL_STATE(4515)] = 126841, - [SMALL_STATE(4516)] = 126855, - [SMALL_STATE(4517)] = 126869, - [SMALL_STATE(4518)] = 126883, - [SMALL_STATE(4519)] = 126897, - [SMALL_STATE(4520)] = 126911, - [SMALL_STATE(4521)] = 126925, - [SMALL_STATE(4522)] = 126939, - [SMALL_STATE(4523)] = 126953, - [SMALL_STATE(4524)] = 126967, - [SMALL_STATE(4525)] = 126981, - [SMALL_STATE(4526)] = 126995, - [SMALL_STATE(4527)] = 127009, - [SMALL_STATE(4528)] = 127023, - [SMALL_STATE(4529)] = 127037, - [SMALL_STATE(4530)] = 127051, - [SMALL_STATE(4531)] = 127065, - [SMALL_STATE(4532)] = 127079, - [SMALL_STATE(4533)] = 127093, - [SMALL_STATE(4534)] = 127107, - [SMALL_STATE(4535)] = 127121, - [SMALL_STATE(4536)] = 127135, - [SMALL_STATE(4537)] = 127149, - [SMALL_STATE(4538)] = 127163, - [SMALL_STATE(4539)] = 127177, - [SMALL_STATE(4540)] = 127191, - [SMALL_STATE(4541)] = 127205, - [SMALL_STATE(4542)] = 127219, - [SMALL_STATE(4543)] = 127233, - [SMALL_STATE(4544)] = 127247, - [SMALL_STATE(4545)] = 127261, - [SMALL_STATE(4546)] = 127275, - [SMALL_STATE(4547)] = 127289, - [SMALL_STATE(4548)] = 127303, - [SMALL_STATE(4549)] = 127317, - [SMALL_STATE(4550)] = 127331, - [SMALL_STATE(4551)] = 127345, - [SMALL_STATE(4552)] = 127359, - [SMALL_STATE(4553)] = 127373, - [SMALL_STATE(4554)] = 127387, - [SMALL_STATE(4555)] = 127401, - [SMALL_STATE(4556)] = 127415, - [SMALL_STATE(4557)] = 127429, - [SMALL_STATE(4558)] = 127443, - [SMALL_STATE(4559)] = 127457, - [SMALL_STATE(4560)] = 127471, - [SMALL_STATE(4561)] = 127485, - [SMALL_STATE(4562)] = 127499, - [SMALL_STATE(4563)] = 127513, - [SMALL_STATE(4564)] = 127527, - [SMALL_STATE(4565)] = 127541, - [SMALL_STATE(4566)] = 127555, - [SMALL_STATE(4567)] = 127569, - [SMALL_STATE(4568)] = 127583, - [SMALL_STATE(4569)] = 127597, - [SMALL_STATE(4570)] = 127611, - [SMALL_STATE(4571)] = 127625, - [SMALL_STATE(4572)] = 127639, - [SMALL_STATE(4573)] = 127653, - [SMALL_STATE(4574)] = 127667, - [SMALL_STATE(4575)] = 127681, - [SMALL_STATE(4576)] = 127695, - [SMALL_STATE(4577)] = 127709, - [SMALL_STATE(4578)] = 127723, - [SMALL_STATE(4579)] = 127737, - [SMALL_STATE(4580)] = 127751, - [SMALL_STATE(4581)] = 127765, - [SMALL_STATE(4582)] = 127779, - [SMALL_STATE(4583)] = 127793, - [SMALL_STATE(4584)] = 127807, - [SMALL_STATE(4585)] = 127821, - [SMALL_STATE(4586)] = 127835, - [SMALL_STATE(4587)] = 127849, - [SMALL_STATE(4588)] = 127863, - [SMALL_STATE(4589)] = 127877, - [SMALL_STATE(4590)] = 127891, - [SMALL_STATE(4591)] = 127905, - [SMALL_STATE(4592)] = 127919, - [SMALL_STATE(4593)] = 127933, - [SMALL_STATE(4594)] = 127947, - [SMALL_STATE(4595)] = 127961, - [SMALL_STATE(4596)] = 127975, - [SMALL_STATE(4597)] = 127989, - [SMALL_STATE(4598)] = 128003, - [SMALL_STATE(4599)] = 128017, - [SMALL_STATE(4600)] = 128031, - [SMALL_STATE(4601)] = 128045, - [SMALL_STATE(4602)] = 128059, - [SMALL_STATE(4603)] = 128073, - [SMALL_STATE(4604)] = 128087, - [SMALL_STATE(4605)] = 128101, - [SMALL_STATE(4606)] = 128115, - [SMALL_STATE(4607)] = 128129, - [SMALL_STATE(4608)] = 128143, - [SMALL_STATE(4609)] = 128157, - [SMALL_STATE(4610)] = 128171, - [SMALL_STATE(4611)] = 128185, - [SMALL_STATE(4612)] = 128199, - [SMALL_STATE(4613)] = 128213, - [SMALL_STATE(4614)] = 128227, - [SMALL_STATE(4615)] = 128241, - [SMALL_STATE(4616)] = 128255, - [SMALL_STATE(4617)] = 128269, - [SMALL_STATE(4618)] = 128283, - [SMALL_STATE(4619)] = 128297, - [SMALL_STATE(4620)] = 128311, - [SMALL_STATE(4621)] = 128325, - [SMALL_STATE(4622)] = 128339, - [SMALL_STATE(4623)] = 128353, - [SMALL_STATE(4624)] = 128367, - [SMALL_STATE(4625)] = 128381, - [SMALL_STATE(4626)] = 128395, - [SMALL_STATE(4627)] = 128409, - [SMALL_STATE(4628)] = 128423, - [SMALL_STATE(4629)] = 128437, - [SMALL_STATE(4630)] = 128451, - [SMALL_STATE(4631)] = 128465, - [SMALL_STATE(4632)] = 128479, - [SMALL_STATE(4633)] = 128493, - [SMALL_STATE(4634)] = 128507, - [SMALL_STATE(4635)] = 128521, - [SMALL_STATE(4636)] = 128535, - [SMALL_STATE(4637)] = 128549, - [SMALL_STATE(4638)] = 128563, - [SMALL_STATE(4639)] = 128577, - [SMALL_STATE(4640)] = 128591, - [SMALL_STATE(4641)] = 128605, - [SMALL_STATE(4642)] = 128619, - [SMALL_STATE(4643)] = 128633, - [SMALL_STATE(4644)] = 128647, - [SMALL_STATE(4645)] = 128661, - [SMALL_STATE(4646)] = 128675, - [SMALL_STATE(4647)] = 128689, - [SMALL_STATE(4648)] = 128703, - [SMALL_STATE(4649)] = 128717, - [SMALL_STATE(4650)] = 128731, - [SMALL_STATE(4651)] = 128745, - [SMALL_STATE(4652)] = 128759, - [SMALL_STATE(4653)] = 128773, - [SMALL_STATE(4654)] = 128787, - [SMALL_STATE(4655)] = 128801, - [SMALL_STATE(4656)] = 128815, - [SMALL_STATE(4657)] = 128829, - [SMALL_STATE(4658)] = 128843, - [SMALL_STATE(4659)] = 128857, - [SMALL_STATE(4660)] = 128871, - [SMALL_STATE(4661)] = 128885, - [SMALL_STATE(4662)] = 128899, - [SMALL_STATE(4663)] = 128913, - [SMALL_STATE(4664)] = 128927, - [SMALL_STATE(4665)] = 128941, - [SMALL_STATE(4666)] = 128955, - [SMALL_STATE(4667)] = 128969, - [SMALL_STATE(4668)] = 128983, - [SMALL_STATE(4669)] = 128997, - [SMALL_STATE(4670)] = 129011, - [SMALL_STATE(4671)] = 129025, - [SMALL_STATE(4672)] = 129039, - [SMALL_STATE(4673)] = 129053, - [SMALL_STATE(4674)] = 129067, - [SMALL_STATE(4675)] = 129081, - [SMALL_STATE(4676)] = 129095, - [SMALL_STATE(4677)] = 129109, - [SMALL_STATE(4678)] = 129123, - [SMALL_STATE(4679)] = 129137, - [SMALL_STATE(4680)] = 129151, - [SMALL_STATE(4681)] = 129165, - [SMALL_STATE(4682)] = 129179, - [SMALL_STATE(4683)] = 129193, - [SMALL_STATE(4684)] = 129207, - [SMALL_STATE(4685)] = 129221, - [SMALL_STATE(4686)] = 129235, - [SMALL_STATE(4687)] = 129249, - [SMALL_STATE(4688)] = 129263, - [SMALL_STATE(4689)] = 129277, - [SMALL_STATE(4690)] = 129291, - [SMALL_STATE(4691)] = 129305, - [SMALL_STATE(4692)] = 129319, - [SMALL_STATE(4693)] = 129333, - [SMALL_STATE(4694)] = 129347, - [SMALL_STATE(4695)] = 129361, - [SMALL_STATE(4696)] = 129375, - [SMALL_STATE(4697)] = 129389, - [SMALL_STATE(4698)] = 129403, - [SMALL_STATE(4699)] = 129417, - [SMALL_STATE(4700)] = 129431, - [SMALL_STATE(4701)] = 129445, - [SMALL_STATE(4702)] = 129459, - [SMALL_STATE(4703)] = 129473, - [SMALL_STATE(4704)] = 129487, - [SMALL_STATE(4705)] = 129501, - [SMALL_STATE(4706)] = 129515, - [SMALL_STATE(4707)] = 129529, - [SMALL_STATE(4708)] = 129543, - [SMALL_STATE(4709)] = 129557, - [SMALL_STATE(4710)] = 129571, - [SMALL_STATE(4711)] = 129585, - [SMALL_STATE(4712)] = 129599, - [SMALL_STATE(4713)] = 129603, - [SMALL_STATE(4714)] = 129607, + [SMALL_STATE(4020)] = 118597, + [SMALL_STATE(4021)] = 118617, + [SMALL_STATE(4022)] = 118635, + [SMALL_STATE(4023)] = 118651, + [SMALL_STATE(4024)] = 118669, + [SMALL_STATE(4025)] = 118689, + [SMALL_STATE(4026)] = 118707, + [SMALL_STATE(4027)] = 118727, + [SMALL_STATE(4028)] = 118747, + [SMALL_STATE(4029)] = 118767, + [SMALL_STATE(4030)] = 118787, + [SMALL_STATE(4031)] = 118807, + [SMALL_STATE(4032)] = 118827, + [SMALL_STATE(4033)] = 118847, + [SMALL_STATE(4034)] = 118867, + [SMALL_STATE(4035)] = 118887, + [SMALL_STATE(4036)] = 118907, + [SMALL_STATE(4037)] = 118927, + [SMALL_STATE(4038)] = 118947, + [SMALL_STATE(4039)] = 118967, + [SMALL_STATE(4040)] = 118987, + [SMALL_STATE(4041)] = 119007, + [SMALL_STATE(4042)] = 119027, + [SMALL_STATE(4043)] = 119047, + [SMALL_STATE(4044)] = 119067, + [SMALL_STATE(4045)] = 119087, + [SMALL_STATE(4046)] = 119107, + [SMALL_STATE(4047)] = 119127, + [SMALL_STATE(4048)] = 119147, + [SMALL_STATE(4049)] = 119167, + [SMALL_STATE(4050)] = 119187, + [SMALL_STATE(4051)] = 119205, + [SMALL_STATE(4052)] = 119225, + [SMALL_STATE(4053)] = 119245, + [SMALL_STATE(4054)] = 119265, + [SMALL_STATE(4055)] = 119281, + [SMALL_STATE(4056)] = 119301, + [SMALL_STATE(4057)] = 119321, + [SMALL_STATE(4058)] = 119341, + [SMALL_STATE(4059)] = 119361, + [SMALL_STATE(4060)] = 119381, + [SMALL_STATE(4061)] = 119401, + [SMALL_STATE(4062)] = 119421, + [SMALL_STATE(4063)] = 119441, + [SMALL_STATE(4064)] = 119461, + [SMALL_STATE(4065)] = 119481, + [SMALL_STATE(4066)] = 119501, + [SMALL_STATE(4067)] = 119521, + [SMALL_STATE(4068)] = 119541, + [SMALL_STATE(4069)] = 119561, + [SMALL_STATE(4070)] = 119581, + [SMALL_STATE(4071)] = 119601, + [SMALL_STATE(4072)] = 119621, + [SMALL_STATE(4073)] = 119641, + [SMALL_STATE(4074)] = 119661, + [SMALL_STATE(4075)] = 119681, + [SMALL_STATE(4076)] = 119701, + [SMALL_STATE(4077)] = 119721, + [SMALL_STATE(4078)] = 119739, + [SMALL_STATE(4079)] = 119759, + [SMALL_STATE(4080)] = 119779, + [SMALL_STATE(4081)] = 119799, + [SMALL_STATE(4082)] = 119819, + [SMALL_STATE(4083)] = 119839, + [SMALL_STATE(4084)] = 119859, + [SMALL_STATE(4085)] = 119879, + [SMALL_STATE(4086)] = 119899, + [SMALL_STATE(4087)] = 119919, + [SMALL_STATE(4088)] = 119939, + [SMALL_STATE(4089)] = 119959, + [SMALL_STATE(4090)] = 119979, + [SMALL_STATE(4091)] = 119999, + [SMALL_STATE(4092)] = 120019, + [SMALL_STATE(4093)] = 120039, + [SMALL_STATE(4094)] = 120059, + [SMALL_STATE(4095)] = 120076, + [SMALL_STATE(4096)] = 120093, + [SMALL_STATE(4097)] = 120108, + [SMALL_STATE(4098)] = 120125, + [SMALL_STATE(4099)] = 120142, + [SMALL_STATE(4100)] = 120159, + [SMALL_STATE(4101)] = 120176, + [SMALL_STATE(4102)] = 120193, + [SMALL_STATE(4103)] = 120210, + [SMALL_STATE(4104)] = 120227, + [SMALL_STATE(4105)] = 120244, + [SMALL_STATE(4106)] = 120261, + [SMALL_STATE(4107)] = 120278, + [SMALL_STATE(4108)] = 120295, + [SMALL_STATE(4109)] = 120312, + [SMALL_STATE(4110)] = 120329, + [SMALL_STATE(4111)] = 120346, + [SMALL_STATE(4112)] = 120363, + [SMALL_STATE(4113)] = 120380, + [SMALL_STATE(4114)] = 120397, + [SMALL_STATE(4115)] = 120414, + [SMALL_STATE(4116)] = 120431, + [SMALL_STATE(4117)] = 120446, + [SMALL_STATE(4118)] = 120463, + [SMALL_STATE(4119)] = 120480, + [SMALL_STATE(4120)] = 120497, + [SMALL_STATE(4121)] = 120514, + [SMALL_STATE(4122)] = 120531, + [SMALL_STATE(4123)] = 120548, + [SMALL_STATE(4124)] = 120565, + [SMALL_STATE(4125)] = 120582, + [SMALL_STATE(4126)] = 120599, + [SMALL_STATE(4127)] = 120616, + [SMALL_STATE(4128)] = 120633, + [SMALL_STATE(4129)] = 120650, + [SMALL_STATE(4130)] = 120667, + [SMALL_STATE(4131)] = 120684, + [SMALL_STATE(4132)] = 120701, + [SMALL_STATE(4133)] = 120718, + [SMALL_STATE(4134)] = 120735, + [SMALL_STATE(4135)] = 120752, + [SMALL_STATE(4136)] = 120769, + [SMALL_STATE(4137)] = 120786, + [SMALL_STATE(4138)] = 120803, + [SMALL_STATE(4139)] = 120820, + [SMALL_STATE(4140)] = 120837, + [SMALL_STATE(4141)] = 120854, + [SMALL_STATE(4142)] = 120871, + [SMALL_STATE(4143)] = 120888, + [SMALL_STATE(4144)] = 120905, + [SMALL_STATE(4145)] = 120922, + [SMALL_STATE(4146)] = 120939, + [SMALL_STATE(4147)] = 120956, + [SMALL_STATE(4148)] = 120973, + [SMALL_STATE(4149)] = 120988, + [SMALL_STATE(4150)] = 121005, + [SMALL_STATE(4151)] = 121020, + [SMALL_STATE(4152)] = 121037, + [SMALL_STATE(4153)] = 121054, + [SMALL_STATE(4154)] = 121071, + [SMALL_STATE(4155)] = 121088, + [SMALL_STATE(4156)] = 121105, + [SMALL_STATE(4157)] = 121122, + [SMALL_STATE(4158)] = 121139, + [SMALL_STATE(4159)] = 121156, + [SMALL_STATE(4160)] = 121173, + [SMALL_STATE(4161)] = 121188, + [SMALL_STATE(4162)] = 121205, + [SMALL_STATE(4163)] = 121222, + [SMALL_STATE(4164)] = 121239, + [SMALL_STATE(4165)] = 121254, + [SMALL_STATE(4166)] = 121271, + [SMALL_STATE(4167)] = 121288, + [SMALL_STATE(4168)] = 121305, + [SMALL_STATE(4169)] = 121322, + [SMALL_STATE(4170)] = 121339, + [SMALL_STATE(4171)] = 121356, + [SMALL_STATE(4172)] = 121373, + [SMALL_STATE(4173)] = 121390, + [SMALL_STATE(4174)] = 121407, + [SMALL_STATE(4175)] = 121424, + [SMALL_STATE(4176)] = 121441, + [SMALL_STATE(4177)] = 121458, + [SMALL_STATE(4178)] = 121475, + [SMALL_STATE(4179)] = 121492, + [SMALL_STATE(4180)] = 121509, + [SMALL_STATE(4181)] = 121526, + [SMALL_STATE(4182)] = 121543, + [SMALL_STATE(4183)] = 121560, + [SMALL_STATE(4184)] = 121577, + [SMALL_STATE(4185)] = 121594, + [SMALL_STATE(4186)] = 121611, + [SMALL_STATE(4187)] = 121628, + [SMALL_STATE(4188)] = 121645, + [SMALL_STATE(4189)] = 121662, + [SMALL_STATE(4190)] = 121679, + [SMALL_STATE(4191)] = 121696, + [SMALL_STATE(4192)] = 121713, + [SMALL_STATE(4193)] = 121730, + [SMALL_STATE(4194)] = 121745, + [SMALL_STATE(4195)] = 121762, + [SMALL_STATE(4196)] = 121777, + [SMALL_STATE(4197)] = 121794, + [SMALL_STATE(4198)] = 121811, + [SMALL_STATE(4199)] = 121826, + [SMALL_STATE(4200)] = 121841, + [SMALL_STATE(4201)] = 121858, + [SMALL_STATE(4202)] = 121875, + [SMALL_STATE(4203)] = 121892, + [SMALL_STATE(4204)] = 121909, + [SMALL_STATE(4205)] = 121926, + [SMALL_STATE(4206)] = 121941, + [SMALL_STATE(4207)] = 121958, + [SMALL_STATE(4208)] = 121973, + [SMALL_STATE(4209)] = 121988, + [SMALL_STATE(4210)] = 122005, + [SMALL_STATE(4211)] = 122022, + [SMALL_STATE(4212)] = 122039, + [SMALL_STATE(4213)] = 122056, + [SMALL_STATE(4214)] = 122073, + [SMALL_STATE(4215)] = 122090, + [SMALL_STATE(4216)] = 122107, + [SMALL_STATE(4217)] = 122124, + [SMALL_STATE(4218)] = 122139, + [SMALL_STATE(4219)] = 122156, + [SMALL_STATE(4220)] = 122173, + [SMALL_STATE(4221)] = 122190, + [SMALL_STATE(4222)] = 122207, + [SMALL_STATE(4223)] = 122224, + [SMALL_STATE(4224)] = 122239, + [SMALL_STATE(4225)] = 122256, + [SMALL_STATE(4226)] = 122273, + [SMALL_STATE(4227)] = 122290, + [SMALL_STATE(4228)] = 122307, + [SMALL_STATE(4229)] = 122324, + [SMALL_STATE(4230)] = 122341, + [SMALL_STATE(4231)] = 122358, + [SMALL_STATE(4232)] = 122375, + [SMALL_STATE(4233)] = 122390, + [SMALL_STATE(4234)] = 122407, + [SMALL_STATE(4235)] = 122422, + [SMALL_STATE(4236)] = 122439, + [SMALL_STATE(4237)] = 122456, + [SMALL_STATE(4238)] = 122471, + [SMALL_STATE(4239)] = 122488, + [SMALL_STATE(4240)] = 122505, + [SMALL_STATE(4241)] = 122522, + [SMALL_STATE(4242)] = 122539, + [SMALL_STATE(4243)] = 122554, + [SMALL_STATE(4244)] = 122571, + [SMALL_STATE(4245)] = 122586, + [SMALL_STATE(4246)] = 122603, + [SMALL_STATE(4247)] = 122620, + [SMALL_STATE(4248)] = 122635, + [SMALL_STATE(4249)] = 122652, + [SMALL_STATE(4250)] = 122669, + [SMALL_STATE(4251)] = 122686, + [SMALL_STATE(4252)] = 122703, + [SMALL_STATE(4253)] = 122720, + [SMALL_STATE(4254)] = 122737, + [SMALL_STATE(4255)] = 122754, + [SMALL_STATE(4256)] = 122771, + [SMALL_STATE(4257)] = 122788, + [SMALL_STATE(4258)] = 122803, + [SMALL_STATE(4259)] = 122820, + [SMALL_STATE(4260)] = 122837, + [SMALL_STATE(4261)] = 122854, + [SMALL_STATE(4262)] = 122869, + [SMALL_STATE(4263)] = 122886, + [SMALL_STATE(4264)] = 122903, + [SMALL_STATE(4265)] = 122920, + [SMALL_STATE(4266)] = 122937, + [SMALL_STATE(4267)] = 122954, + [SMALL_STATE(4268)] = 122971, + [SMALL_STATE(4269)] = 122986, + [SMALL_STATE(4270)] = 123001, + [SMALL_STATE(4271)] = 123018, + [SMALL_STATE(4272)] = 123035, + [SMALL_STATE(4273)] = 123052, + [SMALL_STATE(4274)] = 123069, + [SMALL_STATE(4275)] = 123084, + [SMALL_STATE(4276)] = 123101, + [SMALL_STATE(4277)] = 123116, + [SMALL_STATE(4278)] = 123133, + [SMALL_STATE(4279)] = 123150, + [SMALL_STATE(4280)] = 123167, + [SMALL_STATE(4281)] = 123184, + [SMALL_STATE(4282)] = 123201, + [SMALL_STATE(4283)] = 123218, + [SMALL_STATE(4284)] = 123235, + [SMALL_STATE(4285)] = 123252, + [SMALL_STATE(4286)] = 123267, + [SMALL_STATE(4287)] = 123282, + [SMALL_STATE(4288)] = 123299, + [SMALL_STATE(4289)] = 123316, + [SMALL_STATE(4290)] = 123333, + [SMALL_STATE(4291)] = 123350, + [SMALL_STATE(4292)] = 123367, + [SMALL_STATE(4293)] = 123384, + [SMALL_STATE(4294)] = 123401, + [SMALL_STATE(4295)] = 123418, + [SMALL_STATE(4296)] = 123435, + [SMALL_STATE(4297)] = 123452, + [SMALL_STATE(4298)] = 123469, + [SMALL_STATE(4299)] = 123486, + [SMALL_STATE(4300)] = 123503, + [SMALL_STATE(4301)] = 123520, + [SMALL_STATE(4302)] = 123537, + [SMALL_STATE(4303)] = 123554, + [SMALL_STATE(4304)] = 123571, + [SMALL_STATE(4305)] = 123588, + [SMALL_STATE(4306)] = 123605, + [SMALL_STATE(4307)] = 123622, + [SMALL_STATE(4308)] = 123639, + [SMALL_STATE(4309)] = 123656, + [SMALL_STATE(4310)] = 123673, + [SMALL_STATE(4311)] = 123690, + [SMALL_STATE(4312)] = 123707, + [SMALL_STATE(4313)] = 123724, + [SMALL_STATE(4314)] = 123741, + [SMALL_STATE(4315)] = 123758, + [SMALL_STATE(4316)] = 123775, + [SMALL_STATE(4317)] = 123792, + [SMALL_STATE(4318)] = 123809, + [SMALL_STATE(4319)] = 123826, + [SMALL_STATE(4320)] = 123843, + [SMALL_STATE(4321)] = 123858, + [SMALL_STATE(4322)] = 123875, + [SMALL_STATE(4323)] = 123892, + [SMALL_STATE(4324)] = 123909, + [SMALL_STATE(4325)] = 123926, + [SMALL_STATE(4326)] = 123943, + [SMALL_STATE(4327)] = 123960, + [SMALL_STATE(4328)] = 123977, + [SMALL_STATE(4329)] = 123994, + [SMALL_STATE(4330)] = 124011, + [SMALL_STATE(4331)] = 124028, + [SMALL_STATE(4332)] = 124045, + [SMALL_STATE(4333)] = 124062, + [SMALL_STATE(4334)] = 124079, + [SMALL_STATE(4335)] = 124096, + [SMALL_STATE(4336)] = 124113, + [SMALL_STATE(4337)] = 124130, + [SMALL_STATE(4338)] = 124147, + [SMALL_STATE(4339)] = 124164, + [SMALL_STATE(4340)] = 124181, + [SMALL_STATE(4341)] = 124198, + [SMALL_STATE(4342)] = 124215, + [SMALL_STATE(4343)] = 124232, + [SMALL_STATE(4344)] = 124249, + [SMALL_STATE(4345)] = 124266, + [SMALL_STATE(4346)] = 124281, + [SMALL_STATE(4347)] = 124298, + [SMALL_STATE(4348)] = 124315, + [SMALL_STATE(4349)] = 124332, + [SMALL_STATE(4350)] = 124349, + [SMALL_STATE(4351)] = 124366, + [SMALL_STATE(4352)] = 124383, + [SMALL_STATE(4353)] = 124400, + [SMALL_STATE(4354)] = 124417, + [SMALL_STATE(4355)] = 124434, + [SMALL_STATE(4356)] = 124451, + [SMALL_STATE(4357)] = 124468, + [SMALL_STATE(4358)] = 124485, + [SMALL_STATE(4359)] = 124502, + [SMALL_STATE(4360)] = 124519, + [SMALL_STATE(4361)] = 124536, + [SMALL_STATE(4362)] = 124553, + [SMALL_STATE(4363)] = 124570, + [SMALL_STATE(4364)] = 124587, + [SMALL_STATE(4365)] = 124604, + [SMALL_STATE(4366)] = 124621, + [SMALL_STATE(4367)] = 124638, + [SMALL_STATE(4368)] = 124655, + [SMALL_STATE(4369)] = 124672, + [SMALL_STATE(4370)] = 124689, + [SMALL_STATE(4371)] = 124706, + [SMALL_STATE(4372)] = 124723, + [SMALL_STATE(4373)] = 124740, + [SMALL_STATE(4374)] = 124757, + [SMALL_STATE(4375)] = 124774, + [SMALL_STATE(4376)] = 124791, + [SMALL_STATE(4377)] = 124808, + [SMALL_STATE(4378)] = 124825, + [SMALL_STATE(4379)] = 124842, + [SMALL_STATE(4380)] = 124857, + [SMALL_STATE(4381)] = 124874, + [SMALL_STATE(4382)] = 124891, + [SMALL_STATE(4383)] = 124908, + [SMALL_STATE(4384)] = 124925, + [SMALL_STATE(4385)] = 124942, + [SMALL_STATE(4386)] = 124959, + [SMALL_STATE(4387)] = 124974, + [SMALL_STATE(4388)] = 124991, + [SMALL_STATE(4389)] = 125008, + [SMALL_STATE(4390)] = 125025, + [SMALL_STATE(4391)] = 125042, + [SMALL_STATE(4392)] = 125059, + [SMALL_STATE(4393)] = 125076, + [SMALL_STATE(4394)] = 125093, + [SMALL_STATE(4395)] = 125110, + [SMALL_STATE(4396)] = 125127, + [SMALL_STATE(4397)] = 125144, + [SMALL_STATE(4398)] = 125161, + [SMALL_STATE(4399)] = 125178, + [SMALL_STATE(4400)] = 125195, + [SMALL_STATE(4401)] = 125212, + [SMALL_STATE(4402)] = 125229, + [SMALL_STATE(4403)] = 125246, + [SMALL_STATE(4404)] = 125263, + [SMALL_STATE(4405)] = 125280, + [SMALL_STATE(4406)] = 125297, + [SMALL_STATE(4407)] = 125314, + [SMALL_STATE(4408)] = 125331, + [SMALL_STATE(4409)] = 125348, + [SMALL_STATE(4410)] = 125365, + [SMALL_STATE(4411)] = 125382, + [SMALL_STATE(4412)] = 125399, + [SMALL_STATE(4413)] = 125416, + [SMALL_STATE(4414)] = 125433, + [SMALL_STATE(4415)] = 125447, + [SMALL_STATE(4416)] = 125461, + [SMALL_STATE(4417)] = 125475, + [SMALL_STATE(4418)] = 125489, + [SMALL_STATE(4419)] = 125503, + [SMALL_STATE(4420)] = 125517, + [SMALL_STATE(4421)] = 125531, + [SMALL_STATE(4422)] = 125545, + [SMALL_STATE(4423)] = 125559, + [SMALL_STATE(4424)] = 125573, + [SMALL_STATE(4425)] = 125587, + [SMALL_STATE(4426)] = 125601, + [SMALL_STATE(4427)] = 125615, + [SMALL_STATE(4428)] = 125629, + [SMALL_STATE(4429)] = 125643, + [SMALL_STATE(4430)] = 125657, + [SMALL_STATE(4431)] = 125671, + [SMALL_STATE(4432)] = 125685, + [SMALL_STATE(4433)] = 125699, + [SMALL_STATE(4434)] = 125713, + [SMALL_STATE(4435)] = 125727, + [SMALL_STATE(4436)] = 125741, + [SMALL_STATE(4437)] = 125755, + [SMALL_STATE(4438)] = 125769, + [SMALL_STATE(4439)] = 125783, + [SMALL_STATE(4440)] = 125797, + [SMALL_STATE(4441)] = 125811, + [SMALL_STATE(4442)] = 125825, + [SMALL_STATE(4443)] = 125839, + [SMALL_STATE(4444)] = 125853, + [SMALL_STATE(4445)] = 125867, + [SMALL_STATE(4446)] = 125881, + [SMALL_STATE(4447)] = 125895, + [SMALL_STATE(4448)] = 125909, + [SMALL_STATE(4449)] = 125923, + [SMALL_STATE(4450)] = 125937, + [SMALL_STATE(4451)] = 125951, + [SMALL_STATE(4452)] = 125965, + [SMALL_STATE(4453)] = 125979, + [SMALL_STATE(4454)] = 125993, + [SMALL_STATE(4455)] = 126007, + [SMALL_STATE(4456)] = 126021, + [SMALL_STATE(4457)] = 126035, + [SMALL_STATE(4458)] = 126049, + [SMALL_STATE(4459)] = 126063, + [SMALL_STATE(4460)] = 126077, + [SMALL_STATE(4461)] = 126091, + [SMALL_STATE(4462)] = 126105, + [SMALL_STATE(4463)] = 126119, + [SMALL_STATE(4464)] = 126133, + [SMALL_STATE(4465)] = 126147, + [SMALL_STATE(4466)] = 126161, + [SMALL_STATE(4467)] = 126175, + [SMALL_STATE(4468)] = 126189, + [SMALL_STATE(4469)] = 126203, + [SMALL_STATE(4470)] = 126217, + [SMALL_STATE(4471)] = 126231, + [SMALL_STATE(4472)] = 126245, + [SMALL_STATE(4473)] = 126259, + [SMALL_STATE(4474)] = 126273, + [SMALL_STATE(4475)] = 126287, + [SMALL_STATE(4476)] = 126301, + [SMALL_STATE(4477)] = 126315, + [SMALL_STATE(4478)] = 126329, + [SMALL_STATE(4479)] = 126343, + [SMALL_STATE(4480)] = 126357, + [SMALL_STATE(4481)] = 126371, + [SMALL_STATE(4482)] = 126385, + [SMALL_STATE(4483)] = 126399, + [SMALL_STATE(4484)] = 126413, + [SMALL_STATE(4485)] = 126427, + [SMALL_STATE(4486)] = 126441, + [SMALL_STATE(4487)] = 126455, + [SMALL_STATE(4488)] = 126469, + [SMALL_STATE(4489)] = 126483, + [SMALL_STATE(4490)] = 126497, + [SMALL_STATE(4491)] = 126511, + [SMALL_STATE(4492)] = 126525, + [SMALL_STATE(4493)] = 126539, + [SMALL_STATE(4494)] = 126553, + [SMALL_STATE(4495)] = 126567, + [SMALL_STATE(4496)] = 126581, + [SMALL_STATE(4497)] = 126595, + [SMALL_STATE(4498)] = 126609, + [SMALL_STATE(4499)] = 126623, + [SMALL_STATE(4500)] = 126637, + [SMALL_STATE(4501)] = 126651, + [SMALL_STATE(4502)] = 126665, + [SMALL_STATE(4503)] = 126679, + [SMALL_STATE(4504)] = 126693, + [SMALL_STATE(4505)] = 126707, + [SMALL_STATE(4506)] = 126721, + [SMALL_STATE(4507)] = 126735, + [SMALL_STATE(4508)] = 126749, + [SMALL_STATE(4509)] = 126763, + [SMALL_STATE(4510)] = 126777, + [SMALL_STATE(4511)] = 126791, + [SMALL_STATE(4512)] = 126805, + [SMALL_STATE(4513)] = 126819, + [SMALL_STATE(4514)] = 126833, + [SMALL_STATE(4515)] = 126847, + [SMALL_STATE(4516)] = 126861, + [SMALL_STATE(4517)] = 126875, + [SMALL_STATE(4518)] = 126889, + [SMALL_STATE(4519)] = 126903, + [SMALL_STATE(4520)] = 126917, + [SMALL_STATE(4521)] = 126931, + [SMALL_STATE(4522)] = 126945, + [SMALL_STATE(4523)] = 126959, + [SMALL_STATE(4524)] = 126973, + [SMALL_STATE(4525)] = 126987, + [SMALL_STATE(4526)] = 127001, + [SMALL_STATE(4527)] = 127015, + [SMALL_STATE(4528)] = 127029, + [SMALL_STATE(4529)] = 127043, + [SMALL_STATE(4530)] = 127057, + [SMALL_STATE(4531)] = 127071, + [SMALL_STATE(4532)] = 127085, + [SMALL_STATE(4533)] = 127099, + [SMALL_STATE(4534)] = 127113, + [SMALL_STATE(4535)] = 127127, + [SMALL_STATE(4536)] = 127141, + [SMALL_STATE(4537)] = 127155, + [SMALL_STATE(4538)] = 127169, + [SMALL_STATE(4539)] = 127183, + [SMALL_STATE(4540)] = 127197, + [SMALL_STATE(4541)] = 127211, + [SMALL_STATE(4542)] = 127225, + [SMALL_STATE(4543)] = 127239, + [SMALL_STATE(4544)] = 127253, + [SMALL_STATE(4545)] = 127267, + [SMALL_STATE(4546)] = 127281, + [SMALL_STATE(4547)] = 127295, + [SMALL_STATE(4548)] = 127309, + [SMALL_STATE(4549)] = 127323, + [SMALL_STATE(4550)] = 127337, + [SMALL_STATE(4551)] = 127351, + [SMALL_STATE(4552)] = 127365, + [SMALL_STATE(4553)] = 127379, + [SMALL_STATE(4554)] = 127393, + [SMALL_STATE(4555)] = 127407, + [SMALL_STATE(4556)] = 127421, + [SMALL_STATE(4557)] = 127435, + [SMALL_STATE(4558)] = 127449, + [SMALL_STATE(4559)] = 127463, + [SMALL_STATE(4560)] = 127477, + [SMALL_STATE(4561)] = 127491, + [SMALL_STATE(4562)] = 127505, + [SMALL_STATE(4563)] = 127519, + [SMALL_STATE(4564)] = 127533, + [SMALL_STATE(4565)] = 127547, + [SMALL_STATE(4566)] = 127561, + [SMALL_STATE(4567)] = 127575, + [SMALL_STATE(4568)] = 127589, + [SMALL_STATE(4569)] = 127603, + [SMALL_STATE(4570)] = 127617, + [SMALL_STATE(4571)] = 127631, + [SMALL_STATE(4572)] = 127645, + [SMALL_STATE(4573)] = 127659, + [SMALL_STATE(4574)] = 127673, + [SMALL_STATE(4575)] = 127687, + [SMALL_STATE(4576)] = 127701, + [SMALL_STATE(4577)] = 127715, + [SMALL_STATE(4578)] = 127729, + [SMALL_STATE(4579)] = 127743, + [SMALL_STATE(4580)] = 127757, + [SMALL_STATE(4581)] = 127771, + [SMALL_STATE(4582)] = 127785, + [SMALL_STATE(4583)] = 127799, + [SMALL_STATE(4584)] = 127813, + [SMALL_STATE(4585)] = 127827, + [SMALL_STATE(4586)] = 127841, + [SMALL_STATE(4587)] = 127855, + [SMALL_STATE(4588)] = 127869, + [SMALL_STATE(4589)] = 127883, + [SMALL_STATE(4590)] = 127897, + [SMALL_STATE(4591)] = 127911, + [SMALL_STATE(4592)] = 127925, + [SMALL_STATE(4593)] = 127939, + [SMALL_STATE(4594)] = 127953, + [SMALL_STATE(4595)] = 127967, + [SMALL_STATE(4596)] = 127981, + [SMALL_STATE(4597)] = 127995, + [SMALL_STATE(4598)] = 128009, + [SMALL_STATE(4599)] = 128023, + [SMALL_STATE(4600)] = 128037, + [SMALL_STATE(4601)] = 128051, + [SMALL_STATE(4602)] = 128065, + [SMALL_STATE(4603)] = 128079, + [SMALL_STATE(4604)] = 128093, + [SMALL_STATE(4605)] = 128107, + [SMALL_STATE(4606)] = 128121, + [SMALL_STATE(4607)] = 128135, + [SMALL_STATE(4608)] = 128149, + [SMALL_STATE(4609)] = 128163, + [SMALL_STATE(4610)] = 128177, + [SMALL_STATE(4611)] = 128191, + [SMALL_STATE(4612)] = 128205, + [SMALL_STATE(4613)] = 128219, + [SMALL_STATE(4614)] = 128233, + [SMALL_STATE(4615)] = 128247, + [SMALL_STATE(4616)] = 128261, + [SMALL_STATE(4617)] = 128275, + [SMALL_STATE(4618)] = 128289, + [SMALL_STATE(4619)] = 128303, + [SMALL_STATE(4620)] = 128317, + [SMALL_STATE(4621)] = 128331, + [SMALL_STATE(4622)] = 128345, + [SMALL_STATE(4623)] = 128359, + [SMALL_STATE(4624)] = 128373, + [SMALL_STATE(4625)] = 128387, + [SMALL_STATE(4626)] = 128401, + [SMALL_STATE(4627)] = 128415, + [SMALL_STATE(4628)] = 128429, + [SMALL_STATE(4629)] = 128443, + [SMALL_STATE(4630)] = 128457, + [SMALL_STATE(4631)] = 128471, + [SMALL_STATE(4632)] = 128485, + [SMALL_STATE(4633)] = 128499, + [SMALL_STATE(4634)] = 128513, + [SMALL_STATE(4635)] = 128527, + [SMALL_STATE(4636)] = 128541, + [SMALL_STATE(4637)] = 128555, + [SMALL_STATE(4638)] = 128569, + [SMALL_STATE(4639)] = 128583, + [SMALL_STATE(4640)] = 128597, + [SMALL_STATE(4641)] = 128611, + [SMALL_STATE(4642)] = 128625, + [SMALL_STATE(4643)] = 128639, + [SMALL_STATE(4644)] = 128653, + [SMALL_STATE(4645)] = 128667, + [SMALL_STATE(4646)] = 128681, + [SMALL_STATE(4647)] = 128695, + [SMALL_STATE(4648)] = 128709, + [SMALL_STATE(4649)] = 128723, + [SMALL_STATE(4650)] = 128737, + [SMALL_STATE(4651)] = 128751, + [SMALL_STATE(4652)] = 128765, + [SMALL_STATE(4653)] = 128779, + [SMALL_STATE(4654)] = 128793, + [SMALL_STATE(4655)] = 128807, + [SMALL_STATE(4656)] = 128821, + [SMALL_STATE(4657)] = 128835, + [SMALL_STATE(4658)] = 128849, + [SMALL_STATE(4659)] = 128863, + [SMALL_STATE(4660)] = 128877, + [SMALL_STATE(4661)] = 128891, + [SMALL_STATE(4662)] = 128905, + [SMALL_STATE(4663)] = 128919, + [SMALL_STATE(4664)] = 128933, + [SMALL_STATE(4665)] = 128947, + [SMALL_STATE(4666)] = 128961, + [SMALL_STATE(4667)] = 128975, + [SMALL_STATE(4668)] = 128989, + [SMALL_STATE(4669)] = 129003, + [SMALL_STATE(4670)] = 129017, + [SMALL_STATE(4671)] = 129031, + [SMALL_STATE(4672)] = 129045, + [SMALL_STATE(4673)] = 129059, + [SMALL_STATE(4674)] = 129073, + [SMALL_STATE(4675)] = 129087, + [SMALL_STATE(4676)] = 129101, + [SMALL_STATE(4677)] = 129115, + [SMALL_STATE(4678)] = 129129, + [SMALL_STATE(4679)] = 129143, + [SMALL_STATE(4680)] = 129157, + [SMALL_STATE(4681)] = 129171, + [SMALL_STATE(4682)] = 129185, + [SMALL_STATE(4683)] = 129199, + [SMALL_STATE(4684)] = 129213, + [SMALL_STATE(4685)] = 129227, + [SMALL_STATE(4686)] = 129241, + [SMALL_STATE(4687)] = 129255, + [SMALL_STATE(4688)] = 129269, + [SMALL_STATE(4689)] = 129283, + [SMALL_STATE(4690)] = 129297, + [SMALL_STATE(4691)] = 129311, + [SMALL_STATE(4692)] = 129325, + [SMALL_STATE(4693)] = 129339, + [SMALL_STATE(4694)] = 129353, + [SMALL_STATE(4695)] = 129367, + [SMALL_STATE(4696)] = 129381, + [SMALL_STATE(4697)] = 129395, + [SMALL_STATE(4698)] = 129409, + [SMALL_STATE(4699)] = 129423, + [SMALL_STATE(4700)] = 129437, + [SMALL_STATE(4701)] = 129451, + [SMALL_STATE(4702)] = 129465, + [SMALL_STATE(4703)] = 129479, + [SMALL_STATE(4704)] = 129493, + [SMALL_STATE(4705)] = 129507, + [SMALL_STATE(4706)] = 129521, + [SMALL_STATE(4707)] = 129535, + [SMALL_STATE(4708)] = 129549, + [SMALL_STATE(4709)] = 129563, + [SMALL_STATE(4710)] = 129577, + [SMALL_STATE(4711)] = 129591, + [SMALL_STATE(4712)] = 129605, + [SMALL_STATE(4713)] = 129619, + [SMALL_STATE(4714)] = 129633, + [SMALL_STATE(4715)] = 129637, + [SMALL_STATE(4716)] = 129641, }; 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(4624), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [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(290), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4100), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4093), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(977), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3480), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4707), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3362), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(973), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4091), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4702), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3563), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2251), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4699), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4697), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2940), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(958), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(957), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(956), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4126), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(219), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(954), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(953), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(412), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(303), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(571), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(425), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(294), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4129), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4080), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(412), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3553), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3548), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3547), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4076), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4074), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(446), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3166), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3107), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3118), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3102), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(942), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4161), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4164), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1778), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1761), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3692), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(129), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4671), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4669), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3353), - [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 = true}}, REDUCE(sym_labeled_statement, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 1), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4709), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4704), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4701), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4699), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(951), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4161), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4673), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4671), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 1, 0, 0), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 1, 0, 0), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1031), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4261), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(29), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(607), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3482), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(936), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(935), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4191), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2251), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2940), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(928), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(904), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(903), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4102), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(519), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(893), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(891), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1007), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(268), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(608), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(572), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(486), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(261), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4103), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4089), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1007), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3562), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3560), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3556), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3555), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4087), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4081), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1018), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1921), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3166), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3107), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3118), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3102), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(870), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4134), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4140), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1928), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1929), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(95), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(3678), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(126), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4687), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4602), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4264), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3557), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4140), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1, 0, 0), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1, 0, 0), [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3, 0, 0), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3, 0, 0), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1, 0, 0), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1, 0, 0), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, 0, 2), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, 0, 2), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2, 0, 0), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2006), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4291), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(330), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(729), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3487), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(725), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(687), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4138), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2251), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2940), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(685), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(719), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(718), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4272), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(351), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(681), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(715), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2062), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(331), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(730), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(568), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(384), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(278), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4237), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3974), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2062), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3583), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3578), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3577), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3576), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3975), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3949), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2063), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1921), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3166), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3107), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3118), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3102), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2830), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4382), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(279), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(749), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3498), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(669), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(619), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4122), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2251), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2940), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(533), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(660), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(659), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4410), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(416), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(614), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(654), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2802), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(298), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4188), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(750), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(575), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(395), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(300), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4409), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3863), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2802), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3613), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3609), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3608), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3606), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3868), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3869), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2801), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1921), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3166), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3107), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3118), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3102), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1426), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4286), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(325), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(721), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3489), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(808), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(760), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(846), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4141), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2251), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2940), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(758), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(800), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(799), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4293), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(489), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(752), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(795), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1449), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(315), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(722), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(564), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(361), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(329), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4380), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3932), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1449), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3568), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3569), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3570), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3571), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3929), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3926), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1450), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1921), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3166), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3107), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3118), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3102), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 58), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 65), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 97), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 33), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 33), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 33), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 33), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(730), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(4394), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(4188), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(4412), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4295), + [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4308), + [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3571), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3926), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3923), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 96), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 65), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 58), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, 0, 33), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, 0, 33), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, 0, 3), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, 0, 3), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2, 0, 0), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, 0, 33), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, 0, 33), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 22), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 22), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 21), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 21), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, 0, 57), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, 0, 57), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, 0, 21), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, 0, 21), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1, 0, 0), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1, 0, 0), REDUCE(sym_type_reference_expression, 1, 0, 0), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1, 0, 0), REDUCE(sym_type_reference_expression, 1, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2527), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4295), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(269), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(672), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3485), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(860), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(859), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4283), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2251), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2940), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(858), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(852), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(851), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4095), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(509), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(850), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(849), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2415), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(291), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(674), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(554), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(437), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(308), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4297), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3936), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2415), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3604), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3642), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3624), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3621), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3931), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3930), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2434), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1921), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3166), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3107), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3118), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3102), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 86), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 86), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 58), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 58), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 36), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 36), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1426), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4286), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(325), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(721), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3489), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(808), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(760), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4141), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2251), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2940), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(758), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(800), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(799), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4293), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(489), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(752), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(795), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1449), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(315), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(722), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(564), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(361), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(329), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4380), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3932), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1449), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3568), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3569), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3570), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3571), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3929), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3926), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1450), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1921), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3166), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3107), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3118), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3102), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 91), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 91), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 34), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 34), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1564), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4377), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(289), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(680), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3494), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(641), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(640), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4162), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2251), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2940), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(633), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(632), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(629), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4378), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(516), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(623), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(622), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1563), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(282), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(684), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(556), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(409), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(327), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4238), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3848), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1563), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3564), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3572), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3573), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3575), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3845), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3847), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1633), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1921), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3166), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3107), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3118), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3102), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 50), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 50), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 60), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 60), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 69), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 69), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4291), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4283), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2448), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(675), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3933), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2448), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3634), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3635), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, 0, 118), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, 0, 118), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 58), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 58), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 2, 0), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 2, 0), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, 0, 15), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, 0, 15), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, 2, 72), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, 2, 72), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, 2, 33), REDUCE(sym_is_expression, 4, 2, 72), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, 2, 33), REDUCE(sym_is_expression, 4, 2, 72), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 2, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 2, 0), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 36), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, 0, 36), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 86), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 86), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, 0, 10), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, 0, 10), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1, 0, 0), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4295), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4308), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3571), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3926), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3923), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, 0, 90), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, 0, 90), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, 0, 34), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, 0, 34), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, 0, 91), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, 0, 91), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, 0, 74), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, 0, 74), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, 0, 73), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, 0, 73), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(4163), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(4375), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(622), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(4200), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3848), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2, 0, 0), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, 0, 52), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, 0, 52), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, 0, 51), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, 0, 51), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, 0, 23), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, 0, 23), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 50), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 50), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, 0, 0), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3, 0, 0), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 49), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 49), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1, 0, 0), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, 0, 60), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, 0, 60), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 69), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 69), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, 0, 54), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, 0, 54), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 3, 0, 97), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 3, 0, 97), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, -1, 67), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, -1, 67), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2, 0, 0), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2, 0, 0), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, 0, 0), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2, 0, 0), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, -1, 29), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, -1, 29), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5, 0, 0), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2, 0, 0), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 62), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 62), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4302), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 34), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 34), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1564), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4377), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(289), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(680), - [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3494), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(889), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(890), - [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4162), - [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2251), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2940), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(896), - [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(897), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(898), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4378), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(516), - [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(899), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(900), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1563), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(282), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(684), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(556), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(389), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(281), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4238), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3848), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1563), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3564), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3572), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3573), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3575), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3845), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3847), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1633), - [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1921), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3166), - [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3107), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3118), - [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3102), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 60), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 60), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 60), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 60), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 20), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 20), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 58), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 58), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2, 0, 0), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2, 0, 0), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2, 0, 0), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, 0, 7), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, 0, 7), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, 0, 62), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, 0, 62), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, 0, 55), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, 0, 55), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3, 0, 0), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3, 0, 0), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, 0, 34), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, 0, 34), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, 2, 33), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, 2, 33), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 35), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 35), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), SHIFT(4300), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(4163), + [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(4375), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(4200), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3848), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 4), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 4), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3, 0, 0), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3, 0, 0), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, 0, 60), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, 0, 60), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2, 0, 0), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2, 0, 0), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, 0, 0), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, 0, 0), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, 0, 54), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, 0, 54), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, 0, 60), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, 0, 60), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 20), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 20), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2, 0, 0), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 1), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 1), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2, 0, 0), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2, 0, 0), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, -1, 0), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, -1, 0), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 58), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 58), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 22), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 22), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 21), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 21), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, 0, 16), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, 0, 16), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 31), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 68), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, 0, 31), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 68), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), @@ -333004,2211 +333268,2212 @@ static const TSParseActionEntry ts_parse_actions[] = { [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 32), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 32), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 41), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 41), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 40), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 40), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, 0, 32), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, 0, 32), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, 0, 41), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, 0, 41), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, 0, 40), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, 0, 40), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 88), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 39), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4009), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4331), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, 0, 39), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, 0, 39), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, 0, 18), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), REDUCE(aux_sym_element_list_repeat1, 1, 0, 0), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), SHIFT(4012), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), SHIFT(4332), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, 0, 25), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, 0, 25), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3241), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3241), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 122), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 122), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2), - [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2), SHIFT_REPEAT(4683), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2), SHIFT_REPEAT(3134), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 100), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 100), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sum_type, 2), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sum_type, 2), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 42), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 42), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 77), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 77), - [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(574), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 3), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 3), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 85), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 85), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 133), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 133), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 132), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 132), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 70), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 70), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 75), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 75), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 148), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 148), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), - [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 107), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 107), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 48), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 48), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3698), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 38), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 38), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 27), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 27), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 37), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 37), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 38), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 38), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 38), - [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 38), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 115), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 115), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 146), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 146), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 147), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 147), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), - [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), - [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), - [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 153), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 153), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 38), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 38), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(577), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, 0, 6), + [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), SHIFT(3241), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1, 0, 0), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), SHIFT(3241), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sum_type, 2, 0, 0), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sum_type, 2, 0, 0), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 121), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 121), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 42), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 42), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2, 0, 0), + [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4685), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 99), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 99), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 77), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 77), + [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 3, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 3, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 139), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 139), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 108), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 108), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 102), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 102), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 129), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 129), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, 0, 122), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, 0, 122), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 105), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 105), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 14), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 14), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 70), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 70), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 131), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 131), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 142), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 142), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, 0, 113), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, 0, 113), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 132), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 132), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, 0, 82), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, 0, 82), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 125), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 125), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, 0, 126), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, 0, 126), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 101), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 101), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 144), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 144), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 147), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 147), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 75), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 75), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, 0, 151), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, 0, 151), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 106), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 106), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 85), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 85), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 48), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 48), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 47), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 47), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 109), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 109), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 76), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 76), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2, 0, 0), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2, 0, 0), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), + [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), + [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 107), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 107), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 76), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 76), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 76), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 76), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 71), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 71), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 76), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 76), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 27), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 27), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 0), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 38), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 38), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 38), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, 0, 38), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2, 0, 0), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2, 0, 0), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 19), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 19), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, 0, 27), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, 0, 27), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 19), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 19), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 134), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 134), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1, 0, 0), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, 0, 133), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, 0, 133), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 0), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 30), + [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 30), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 37), + [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 37), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 71), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 71), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 152), + [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 152), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, 0, 153), + [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, 0, 153), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, 0, 0), + [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, 0, 0), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 83), + [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 83), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 71), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 71), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 84), + [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 84), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 38), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 38), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, 0, 38), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, 0, 38), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 133), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 133), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 0), + [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 0), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, 0, 0), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 109), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 109), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, 0, 12), + [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, 0, 12), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 130), + [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 130), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, 0, 6), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, 0, 6), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 38), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 38), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 128), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 128), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 127), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 127), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 124), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 124), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 123), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 123), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3, 0, 0), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 53), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 53), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 107), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 107), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3, 0, 0), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 46), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 46), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 0), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 104), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 104), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 114), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 114), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 53), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 53), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, 0, 112), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, 0, 112), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 138), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 138), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 140), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 140), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 109), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 109), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, 0, 141), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, 0, 141), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2, 0, 0), + [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2, 0, 0), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, 0, 7), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, 0, 7), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 143), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 143), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 145), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 145), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 146), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 146), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 19), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 19), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 109), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 109), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 100), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 100), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 19), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 19), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, 0, 148), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, 0, 148), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 8), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 8), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 103), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 103), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 71), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 71), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 103), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 103), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 38), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 38), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, 0, 149), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, 0, 149), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, 0, 150), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, 0, 150), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, 0, 38), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, 0, 38), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, 0, 0), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1, 0, 0), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3, 0, 0), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4302), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 116), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 93), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 93), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), - [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 40), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1, 0, 0), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1, 0, 0), SHIFT(4300), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, 0, 6), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, 0, 92), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, 0, 92), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2, 0, 0), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2, 0, 0), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, 0, 34), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, 0, 34), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, 0, 115), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2, 0, 0), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 18), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, 0, 18), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, 0, 40), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 33), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 99), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 99), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, 0, 33), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, 0, 0), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2, 0, 0), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, 0, 98), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 98), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 66), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 26), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2, 0, 0), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, 0, 26), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 28), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(627), - [6188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(537), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2307), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4565), - [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4413), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2524), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4565), - [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4413), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3353), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 79), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 79), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 112), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 112), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 44), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 90), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 118), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4358), - [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 136), - [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 117), - [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 87), - [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 138), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3, 0, 0), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, 0, 28), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5, 0, 0), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4, 0, 0), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 0), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(537), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2, 0, 0), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1, 0, 0), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2, 0, 0), + [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), + [6209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4408), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2, 0, 0), + [6227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), + [6230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4408), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, 0, 111), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, 0, 111), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, 0, 44), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, 0, 79), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, 0, 79), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, 0, 89), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1, 0, 0), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, 0, 117), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1, 0, 0), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, 0, 6), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, 0, 87), + [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2, 0, 0), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, 0, 135), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, 0, 137), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, 0, 116), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, 0, 17), + [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), SHIFT_REPEAT(4359), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1, 0, 0), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1, 0, 0), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2, 0, 0), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2, 0, 0), + [6410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3, 0, 0), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1, 0, 0), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1, 0, 0), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3486), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(712), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3659), - [6550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), - [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3659), - [6555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(494), - [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3663), - [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), - [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3663), - [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(463), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3522), - [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), - [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 137), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 89), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1, 0, 0), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1, 0, 0), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(3664), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2, 0, 0), + [6546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(3664), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(492), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2, 0, 0), + [6557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), + [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1, 0, 0), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2, 0, 0), + [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, 0, 0), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, 0, 93), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, 0, 93), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2, 0, 0), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, 0, 61), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, 0, 61), + [6634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1, 0, 0), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1, 0, 0), + [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, 0, 136), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2, 0, 24), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2, 0, 24), + [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2, 0, 0), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, 0, 5), + [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1, 0, 0), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1, 0, 0), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, 0, 88), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4370), - [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3, 0, 0), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1, 0, 0), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3060), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2, 0, 0), [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3061), - [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4256), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2, 0, 0), [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3196), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4601), - [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4603), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), + [6808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3, 0, 0), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3497), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [6847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(4059), - [6866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2, 0, 0), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4, 0, 0), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [6862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2, 0, 0), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2, 0, 0), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3656), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [7013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3670), - [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4271), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 59), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [7139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4274), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [7158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(819), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1, 0, 0), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, 0, 59), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2, 0, 0), + [7055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(4273), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2, 0, 0), + [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, 0, 0), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1, 0, 0), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, 0, 0), + [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5, 0, 0), + [7153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [7156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 0), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4404), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(550), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2975), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3357), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(576), - [7282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(387), - [7285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3660), - [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 59), - [7296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(566), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3915), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 56), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 13), + [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1, 0, 0), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4, 0, 0), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3, 0, 0), + [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), + [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1, 0, 0), + [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1, 0, 0), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, 0, 59), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2, 0, 0), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [7347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1, 0, 0), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2, 0, 0), SHIFT_REPEAT(4392), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2, 0, 0), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 78), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, 0, 56), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3, 0, 0), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 120), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 80), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 45), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 81), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 44), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 111), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 96), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 95), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 37), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, 0, 119), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2, 0, 0), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 45), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, 0, 80), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 81), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 44), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 43), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1, 0, 0), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4, 0, 0), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, 0, 110), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5, 0, 0), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1, 0, 0), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 94), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, 0, 95), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2, 0, 0), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, 0, 37), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6, 0, 0), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1, 0, 0), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2, 0, 0), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [8076] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 121), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 63), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 64), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, 0, 63), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, 0, 120), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, 0, 64), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), }; #ifdef __cplusplus @@ -335222,7 +335487,7 @@ extern "C" { #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_v() { +TS_PUBLIC const TSLanguage *tree_sitter_v(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/tree_sitter_v/src/tree_sitter/alloc.h b/tree_sitter_v/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/tree_sitter_v/src/tree_sitter/alloc.h +++ b/tree_sitter_v/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/tree_sitter_v/src/tree_sitter/parser.h b/tree_sitter_v/src/tree_sitter/parser.h index 17b4fde9..799f599b 100644 --- a/tree_sitter_v/src/tree_sitter/parser.h +++ b/tree_sitter_v/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -86,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +131,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree_sitter_v/test/corpus/anon_struct.txt b/tree_sitter_v/test/corpus/anon_struct.txt index 9dcef57c..3c527590 100644 --- a/tree_sitter_v/test/corpus/anon_struct.txt +++ b/tree_sitter_v/test/corpus/anon_struct.txt @@ -115,11 +115,13 @@ a := struct { (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))))))))) diff --git a/tree_sitter_v/test/corpus/call_expression.txt b/tree_sitter_v/test/corpus/call_expression.txt index 53372e05..84c96679 100644 --- a/tree_sitter_v/test/corpus/call_expression.txt +++ b/tree_sitter_v/test/corpus/call_expression.txt @@ -240,7 +240,8 @@ foo(name: value) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) @@ -259,19 +260,22 @@ foo(name: value, name2: value2, name3: value3) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) @@ -296,19 +300,22 @@ foo(plain, plain2, name: value, name2: value2, name3: value3) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) @@ -331,19 +338,22 @@ foo( (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) @@ -366,19 +376,22 @@ foo( (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) @@ -405,19 +418,22 @@ foo( (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))) (argument (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (reference_expression (identifier)))))))) diff --git a/tree_sitter_v/test/corpus/function_literal.txt b/tree_sitter_v/test/corpus/function_literal.txt index 951bcdcf..d68edbfd 100644 --- a/tree_sitter_v/test/corpus/function_literal.txt +++ b/tree_sitter_v/test/corpus/function_literal.txt @@ -579,7 +579,8 @@ fn test_with_value() { (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))))))))) (simple_statement diff --git a/tree_sitter_v/test/corpus/type_initializer.txt b/tree_sitter_v/test/corpus/type_initializer.txt index f2097d23..d6b67ba6 100644 --- a/tree_sitter_v/test/corpus/type_initializer.txt +++ b/tree_sitter_v/test/corpus/type_initializer.txt @@ -46,7 +46,8 @@ Array type initializer with field (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))) @@ -68,12 +69,14 @@ Array type initializer with fields (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))) @@ -95,17 +98,20 @@ Array type initializer with all fields (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (binary_expression (reference_expression (identifier)) @@ -130,7 +136,8 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))) @@ -154,17 +161,20 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (float_literal)))))))) @@ -211,12 +221,14 @@ Foo{ (identifier))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal)))))))) @@ -282,7 +294,8 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (type_initializer (plain_type (type_reference_expression @@ -291,12 +304,14 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))))))) @@ -323,17 +338,20 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (type_initializer (plain_type (type_reference_expression @@ -342,12 +360,14 @@ Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))))))) @@ -378,12 +398,14 @@ Foo[int, string]{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))) @@ -406,12 +428,14 @@ C.Foo{ (element_list (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (interpreted_string_literal))) (keyed_element (field_name - (identifier)) + (reference_expression + (identifier))) (literal (int_literal)))))))) diff --git a/tree_sitter_v/tree-sitter.json b/tree_sitter_v/tree-sitter.json new file mode 100644 index 00000000..050bdd73 --- /dev/null +++ b/tree_sitter_v/tree-sitter.json @@ -0,0 +1,31 @@ +{ + "grammars": [ + { + "name": "v", + "camelcase": "V", + "scope": "source.v", + "path": ".", + "file-types": [ + "v", + "vsh", + "v.mod" + ] + } + ], + "metadata": { + "version": "0.0.4-beta.1", + "license": "MIT", + "description": "v grammar for tree-sitter", + "links": { + "repository": "https://github.com/vlang/v-analyzer.git" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} \ No newline at end of file